Skip to content

Commit

Permalink
fix method call
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Stuckey committed Sep 9, 2024
1 parent 8a8a223 commit b18438e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion query_metamist.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ def main(project: str, sgids: list[str], last_name: str):

if fails:
raise ValueError(f"Failed to parse arguments: {fails}")
main(project=args.project, sgids=args.sgids.split(","), last_name=args.last_name)
main(project=args.project, sgids=args.sgids, last_name=args.last_name)
2 changes: 1 addition & 1 deletion run_analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ analysis-runner \
--output-dir "sandbox_fastqe" \
--access-level test \
--image australia-southeast1-docker.pkg.dev/cpg-common/images/cpg_workflows:latest \
python3 query_metamist.py --project sandbox-test --sgids CPG348722,CPG348730 --last-name stuckey
python3 query_metamist.py --project sandbox-test --sgids CPG348722 --last-name stuckey

0 comments on commit b18438e

Please sign in to comment.