Browse Source

fix short arg names

JonStargaryen 2 years ago
parent
commit
e8a09e81f3

+ 1 - 1
src/cli/chem-comp-dict/create-ions.ts

@@ -65,7 +65,7 @@ parser.add_argument('--forceDownload', '-f', {
     action: 'store_true',
     help: 'Force download of CCD and PVCD.'
 });
-parser.add_argument('--ccdUrl', '-a', {
+parser.add_argument('--ccdUrl', '-c', {
     help: 'Fetch the CCD from a custom URL. This forces download of the CCD.',
     required: false
 });

+ 1 - 1
src/cli/chem-comp-dict/create-saccharides.ts

@@ -68,7 +68,7 @@ parser.add_argument('--forceDownload', '-f', {
     action: 'store_true',
     help: 'Force download of CCD and PVCD.'
 });
-parser.add_argument('--ccdUrl', '-a', {
+parser.add_argument('--ccdUrl', '-c', {
     help: 'Fetch the CCD from a custom URL. This forces download of the CCD.',
     required: false
 });

+ 2 - 2
src/cli/chem-comp-dict/create-table.ts

@@ -283,11 +283,11 @@ parser.add_argument('--ccaOut', '-a', {
     help: 'Optional generated file output path for chem_comp_atom data.',
     required: false
 });
-parser.add_argument('--ccdUrl', '-a', {
+parser.add_argument('--ccdUrl', '-c', {
     help: 'Fetch the CCD from a custom URL. This forces download of the CCD.',
     required: false
 });
-parser.add_argument('--pvcdUrl', '-a', {
+parser.add_argument('--pvcdUrl', '-p', {
     help: 'Fetch the PVCD from a custom URL. This forces download of the PVCD.',
     required: false
 });