Differences between revisions 8 and 9
Revision 8 as of 2016-02-03 16:17:53
Size: 1497
Editor: tcampb
Comment:
Revision 9 as of 2016-02-15 10:52:11
Size: 1759
Editor: BMittan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Compiled by KD  (./) This is missing a bit of info but I've set up the framework for it.
Line 7: 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 9: 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 | cut -c -6 > balzyWalzy.txt}}} in the working directory that contains .OOT and .INN files. All the .OOT file names that are listed are then put into the text file balzyWalzy.txt in the form of a column without the .OOT extension. 'END' should then be added as the last row. === 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 11: 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 an .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.
Line 13: Line 15:
= 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.
Line 18: Line 18:
== Input stdin == == 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.

 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.


 1.#3

 (./) This is labelled as the standard input. Does it get run here ? I need some more info.
Line 28: Line 48:
== Output ==
 * None, just stops the process.
 (./) Maybe need something here about what happens at the end?


-----------

''(Compiled by KD)''

CategoryPrograms

rem_done

  • (./) This is missing a bit of info but I've set up the framework for it.

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 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.

  3. (./) This is labelled as the standard input. Does it get run here ? I need some more info.

 INPUT INFILE
make_script.in
 INPUT DONEFILE
done.txt
 INPUT OUTFILE
FlyingMonkies.txt
  • (./) Maybe need something here about what happens at the end?


(Compiled by KD)

CategoryPrograms

rem_done (last edited 2016-07-24 16:37:02 by BMittan)