Skip to content

Commit bc7597c

Browse files
committed
Update command option help messages
1 parent 273a249 commit bc7597c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ggd/list_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def add_list_files(p):
5757
)
5858
c.add_argument(
5959
"name",
60-
help="pattern to match recipe name(s)."
60+
help="recipe name"
6161
)
6262
c.set_defaults(func=list_files)
6363

ggd/list_installed_pkgs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def add_list_installed_packages(p):
3131
c.add_argument(
3232
"--prefix",
3333
default=None,
34-
help="(Optional) The name or the full directory path to a conda environment where a ggd recipe is stored. (Only needed if not getting file paths for files in the current conda enviroment)",
34+
help="(Optional) The name or the full directory path to a conda environment where a ggd recipe is stored. (Only needed if listing data files not in the current environment)",
3535
)
3636
c.add_argument(
3737
"--reset",

ggd/make_bash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def add_make_bash(p):
120120
"-n",
121121
"--name",
122122
help="The sub-name of the recipe being created. (e.g. cpg-islands, pfam-domains, gaps, etc.)"
123-
+ " This will not be the final name of the recipe, but will describe what data the recipe gets",
123+
+ " This will not be the final name of the recipe, but will specific to the data gathered and processed by the recipe",
124124
required=True,
125125
)
126126
c2.add_argument(

0 commit comments

Comments
 (0)