Mercurial > repos > bgruening > openbabel
diff modify/ob_genProp.py @ 7:12822efbd4a4
Uploaded
| author | bgruening |
|---|---|
| date | Sat, 11 May 2013 17:11:45 -0400 |
| parents | 6493d130f018 |
| children |
line wrap: on
line diff
--- a/modify/ob_genProp.py Fri Apr 26 11:05:19 2013 -0400 +++ b/modify/ob_genProp.py Sat May 11 17:11:45 2013 -0400 @@ -14,9 +14,9 @@ def parse_command_line(argv): parser = argparse.ArgumentParser() - parser.add_argument('-iformat', default='sdf' , help='input file format') + parser.add_argument('--iformat', default='sdf' , help='input file format') parser.add_argument('-i', '--input', required=True, help='input file name') - parser.add_argument('-oformat', default='sdf', choices = ['sdf', 'table'] , help='output file format') + parser.add_argument('--oformat', default='sdf', choices = ['sdf', 'table'] , help='output file format') parser.add_argument('--header', type=bool, help='Include the header as the first line of the output table') parser.add_argument('-o', '--output', required=True, help='output file name') return parser.parse_args()
