Skip to content

Commit

Permalink
Snake case argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
bebatut committed May 24, 2024
1 parent 7945f26 commit 88fb450
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/extract_all_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mkdir -p 'results/'
python bin/extract_galaxy_tools.py \
extractools \
--api $GITHUB_API_KEY \
--all_tools 'results/all_tools.tsv'
--all-tools 'results/all_tools.tsv'

python bin/create_interactive_table.py \
--table "results/all_tools.tsv" \
Expand Down
4 changes: 2 additions & 2 deletions bin/extract_all_tools_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ output="results/${1}_tools.tsv"
python bin/extract_galaxy_tools.py \
extractools \
--api $GITHUB_API_KEY \
--all_tools $output \
--planemorepository $1 \
--all-tools $output \
--planemo-repository-list $1 \
--test

2 changes: 1 addition & 1 deletion bin/extract_galaxy_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def filter_tools(
help="Filepath to TSV with all extracted tools, generated by extractools command",
)
filtertools.add_argument(
"--filtered_tools",
"--filtered-tools",
"-f",
required=True,
help="Filepath to TSV with filtered tools",
Expand Down
2 changes: 1 addition & 1 deletion bin/get_community_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ for com_data_fp in data/communities/* ; do
python bin/extract_galaxy_tools.py \
filtertools \
--tools "results/all_tools.tsv" \
--filtered_tools "results/$community/tools.tsv" \
--filtered-tools "results/$community/tools.tsv" \
--categories "data/communities/$community/categories" \
--exclude "data/communities/$community/tools_to_exclude" \
--keep "data/communities/$community/tools_to_keep"
Expand Down

0 comments on commit 88fb450

Please sign in to comment.