| | 1 | == Mussa Prototype Commandline == |
| | 2 | |
| | 3 | {{{ |
| | 4 | Mussa is a command line run python script. The first argument determines the |
| | 5 | run mode the user wants. |
| | 6 | |
| | 7 | prompt> mussa [run mode] [species number] [other args] |
| | 8 | |
| | 9 | The 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 | |
| | 14 | prompt> mussa f [species number] [config file] [window size] [hard threshold] |
| | 15 | |
| | 16 | * 's' - seqcomp batch mode only - runs all the seqcomp analyses |
| | 17 | |
| | 18 | prompt> 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 | |
| | 22 | prompt> mussa n [species number] [datadir] |
| | 23 | |
| | 24 | * 'v' - loads n-way comparison, displays results graphically |
| | 25 | (must have used option 'n' previously) |
| | 26 | |
| | 27 | prompt> 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 | |
| | 32 | prompt> mussa nv [species number] [datadir] |
| | 33 | |
| | 34 | Future version will have GUI to manage what mode user wants (ie selection screen, |
| | 35 | the subselections for specifics in terms of files to analyze, load/save, etc - |
| | 36 | all the things specified by the command line args) |
| | 37 | }}} |