Skip to content

Commit

Permalink
Fixed bug in assigning wf name in batch_extract_gvcf_variants
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaddis committed Oct 30, 2024
1 parent 399b4ae commit 22c691b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion t1dgrs2_pipeline/v2.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,3 @@ WORKDIR /data
RUN chown -R docker:staff /data

ENTRYPOINT [ "/opt/entrypoint.sh" ]

Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def get_running_workflows():
json.dump(wf_arguments, f)

# Submit the workflow for the current file
generate_name = sample_id.replace('_', '') + "-"
generate_name = sample_id.lower().replace('_', '') + "-"
workflow = {
"namespace": "early-check-rs-1",
"serverDryRun": False,
Expand Down

0 comments on commit 22c691b

Please sign in to comment.