From e8a09e81f30e1ab8e1a18c2d100b9e87e5e37e54 Mon Sep 17 00:00:00 2001 From: JonStargaryen <sebastian.bittrich@rcsb.org> Date: Thu, 21 Jul 2022 14:02:57 -0700 Subject: [PATCH] fix short arg names --- src/cli/chem-comp-dict/create-ions.ts | 2 +- src/cli/chem-comp-dict/create-saccharides.ts | 2 +- src/cli/chem-comp-dict/create-table.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cli/chem-comp-dict/create-ions.ts b/src/cli/chem-comp-dict/create-ions.ts index 9d3beb3cc..5ad5c784d 100644 --- a/src/cli/chem-comp-dict/create-ions.ts +++ b/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 }); diff --git a/src/cli/chem-comp-dict/create-saccharides.ts b/src/cli/chem-comp-dict/create-saccharides.ts index 87be4ddaa..dd629b659 100644 --- a/src/cli/chem-comp-dict/create-saccharides.ts +++ b/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 }); diff --git a/src/cli/chem-comp-dict/create-table.ts b/src/cli/chem-comp-dict/create-table.ts index ea57bebcd..f26b884e3 100644 --- a/src/cli/chem-comp-dict/create-table.ts +++ b/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 }); -- GitLab