소스 검색

fix short arg names

JonStargaryen 2 년 전
부모
커밋
e8a09e81f3
3개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      src/cli/chem-comp-dict/create-ions.ts
  2. 1 1
      src/cli/chem-comp-dict/create-saccharides.ts
  3. 2 2
      src/cli/chem-comp-dict/create-table.ts

+ 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
 });