Conditions | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 12 |
Ratio | 100 % |
Changes | 0 |
1 | #!/usr/bin/env python |
||
11 | View Code Duplication | def get_parser(): |
|
|
|||
12 | parser = argparse.ArgumentParser( |
||
13 | description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) |
||
14 | |||
15 | #parser.add_argument('-', "--", help="", default="") |
||
16 | |||
17 | parser.add_argument("-v", "--verbose", |
||
18 | action="store_true", help="be verbose") |
||
19 | parser.add_argument('--dir', action="store_false") |
||
20 | parser.add_argument("rna", help="", default="evox.py -c ade") |
||
21 | parser.add_argument("simrnawebid", help="", default="") |
||
22 | return parser |
||
23 | |||
39 |