Changes between Initial Version and Version 1 of MussaPrototypeCommandline


Ignore:
Timestamp:
03/17/2006 02:26:28 PM (19 years ago)
Author:
king
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MussaPrototypeCommandline

    v1 v1  
     1== Mussa Prototype Commandline ==
     2
     3{{{
     4Mussa is a command line run python script. The first argument determines the
     5 run mode the user wants.
     6
     7prompt> mussa [run mode] [species number] [other args]
     8
     9The remaining arguments depend on the run mode:
     10
     11    * 'f' - full analysis, seqcomp, n-way comparisons, and displays
     12      (does not save nway results, seqcomp analyses kept in datadir)
     13
     14prompt> mussa f [species number] [config file] [window size] [hard threshold]
     15
     16    * 's' - seqcomp batch mode only - runs all the seqcomp analyses
     17
     18prompt> mussa s [species number] [config file] [window size] [hard threshold]
     19
     20    * 'n' - n-way comparison only, saves results to file and does not display
     21
     22prompt> mussa n [species number] [datadir]
     23
     24    * 'v' - loads n-way comparison, displays results graphically
     25      (must have used option 'n' previously)
     26
     27prompt> mussa v [species number] [datadir]
     28
     29    * 'nv' - does n-way comparison and displays
     30      (does not save n-way comparisons, 'nv' must be used to view again)
     31
     32prompt> mussa nv [species number] [datadir]
     33
     34Future version will have GUI to manage what mode user wants (ie selection screen,
     35the subselections for specifics in terms of files to analyze, load/save, etc -
     36all the things specified by the command line args)
     37}}}