Size: 1457
Comment:
|
← Revision 13 as of 2016-07-24 16:37:02 ⇥
Size: 1469
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
||Category B||Version 3.0|| |
|
Line 5: | Line 7: |
The main purpose of rem_done is to allow the user to stop a parallel lithosP process and find out which landmarks in [[make_script.in]] have yet to be worked on. This is a good program to run is SPC crashes during a parallel process. | This program's main purpose is to allow you to stop a parallel [[lithosP]] process and find out which landmarks in [[make_script.in]] have yet to be worked on. You should run '''rem_done''' if SPC crashes during a parallel process. |
Line 7: | Line 9: |
To use rem_done the user first needs to determine which landmarks have been processed. This is done by typing in the unix command {{{ ls -1 *.OOT }}} in the working directory that contains .OOT and .INN files. All the .OOT files that are listed are then put into the text file done.txt in the form of a column. END should then be added as the last row and .OOT suffix needs to be removed from every landmark. | === Input Files === * [[make_script.in]] - Script for processing * balzyWalzy.txt - List of landmarks processed (can be called anything) * flyingMonkies.txt - List of landmarks not processed (can be called anything) |
Line 9: | Line 14: |
The user then needs to make another text file called FlyingMonkies.txt that lists the landmarks that have yet to be processed. These are simply the landmarks without a .OOT file (those not listed when the unix command above is run). The landmarks yet to processed are listed in the text file as a column without their suffix at the end and END is added as the last row in the file. | === Output === * None, just stops the process. |
Line 11: | Line 17: |
= Input Files = * [[make_script.in]] - script for processing * done.txt - list of landmarks processed (can be called anything) * FlyingMonkies.txt - list of landmarks not processed (can be called anything) |
== Using rem_done == |
Line 16: | Line 19: |
== Input stdin == | === 1. Determine which landmarks have been processed. === In the working directory that contains .OOT and .INN files, enter this command line: {{{ ls -1 *.OOT | cut -c -6 > balzyWalzy.txt }}} This puts all the .OOT filenames into the text file '''balzyWalzy.txt''' in the form of a column without the .OOT extension. /!\ You must add 'END' as the last row of this text file. === 2. Create a text file listing landmarks that have been processed and call it 'done.txt'. === Put the landmarks without an .OOT file (those not listed in Step 1) into the text file '''flyingMonkies.txt''' in the form of a column. /!\ You must add 'END' as the last row of this text file. |
Line 18: | Line 35: |
INPUT INFILE | INPUT INFILE |
Line 26: | Line 43: |
== Output == * None, just stops the process. |
----------- ''(Compiled by KD)'' CategoryPrograms |
rem_done
Category B |
Version 3.0 |
Description
This program's main purpose is to allow you to stop a parallel lithosP process and find out which landmarks in make_script.in have yet to be worked on. You should run rem_done if SPC crashes during a parallel process.
Input Files
make_script.in - Script for processing
- balzyWalzy.txt - List of landmarks processed (can be called anything)
- flyingMonkies.txt - List of landmarks not processed (can be called anything)
Output
- None, just stops the process.
Using rem_done
1. Determine which landmarks have been processed.
- In the working directory that contains .OOT and .INN files, enter this command line:
ls -1 *.OOT | cut -c -6 > balzyWalzy.txt
This puts all the .OOT filenames into the text file balzyWalzy.txt in the form of a column without the .OOT extension.
You must add 'END' as the last row of this text file.
2. Create a text file listing landmarks that have been processed and call it 'done.txt'.
Put the landmarks without an .OOT file (those not listed in Step 1) into the text file flyingMonkies.txt in the form of a column.
You must add 'END' as the last row of this text file.
INPUT INFILE make_script.in INPUT DONEFILE done.txt INPUT OUTFILE FlyingMonkies.txt
(Compiled by KD)