Size: 1759
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 3: | Line 3: |
(./) This is missing a bit of info but I've set up the framework for it. | ||Category B||Version 3.0|| |
Line 14: | Line 14: |
Line 20: | Line 19: |
1. Determine which landmarks have been processed. | === 1. Determine which landmarks have been processed. === |
Line 22: | Line 21: |
{{{ | {{{ |
Line 25: | Line 24: |
This puts all the .OOT filenames into the text file '''balzyWalzy.txt''' in the form of a column without the .OOT extension. | This puts all the .OOT filenames into the text file '''balzyWalzy.txt''' in the form of a column without the .OOT extension. |
Line 28: | Line 28: |
1.#2 Create a text file listing landmarks that have not been processed yet. (./) I think we need a command line here to do this? Not sure, but it seems like it ?? 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. |
=== 2. Create a text file listing landmarks that have been processed and call it 'done.txt'. === |
Line 34: | Line 30: |
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. | |
Line 35: | Line 32: |
1.#3 (./) This is labelled as the standard input. Does it get run here ? I need some more info. |
/!\ You must add 'END' as the last row of this text file. |
Line 48: | Line 43: |
(./) Maybe need something here about what happens at the end? |
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)