Skip to content

Commit

Permalink
Also allow hypenated
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon committed Sep 27, 2024
1 parent 3abfa07 commit 30ea3d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions utils/python/nexus_nei2019_linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def link_file(src_file, tgt_file):
parser.add_argument(
"-s",
"--src_dir",
"--src-dir",
help=(
"Source Directory to Emission files "
"e.g., /scratch1/RDARCH/rda-arl-gpu/Barry.Baker/emissions/nexus on Hera."
Expand All @@ -86,6 +87,7 @@ def link_file(src_file, tgt_file):
parser.add_argument(
"-w",
"--work_dir",
"--work-dir",
help="work directory in the workflow",
required=True,
)
Expand All @@ -98,26 +100,30 @@ def link_file(src_file, tgt_file):
parser.add_argument(
"-t",
"--read_hemco_time",
"--read-hemco-time",
help="Read HEMCO time file",
action="store_true",
default=True,
required=False,
)
parser.add_argument(
"--no_read_hemco_time",
"--no-read-hemco-time",
action="store_false",
dest="read_hemco_time",
)
parser.add_argument(
"-tf",
"--time_file_path",
"--time-file-path",
help="Location of the HEMCO Time File",
default=None,
required=False,
)
parser.add_argument(
"-v",
"--nei_version",
"--nei-version",
help="NEI VERSION",
default="v2023-03",
required=False,
Expand Down

0 comments on commit 30ea3d7

Please sign in to comment.