Skip to content

Commit

Permalink
Merge pull request #100 from eastgenomics/DI-143_cnvreports_path
Browse files Browse the repository at this point in the history
correct cnvrpt_workflow_out_dir (#100)
  • Loading branch information
mattgarner authored May 12, 2023
2 parents 19deb23 + 69a74e5 commit e6345c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cnvreports.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def run_cnvreports(
"panels": panels
}
# Upload manifest file
cmd = "dx upload {} --path {}".format(sample_ID_TestCode, rpt_workflow_out_dir)
cmd = "dx upload {} --path {}".format(sample_ID_TestCode, cnvrpt_workflow_out_dir)
subprocess.check_output(cmd, shell=True)

elif sample_X_CI is not None:
Expand Down Expand Up @@ -235,7 +235,7 @@ def run_cnvreports(
"panels": panels
}
# Upload manifest file
cmd = "dx upload {} --path {}".format(sample_X_CI, rpt_workflow_out_dir)
cmd = "dx upload {} --path {}".format(sample_X_CI, cnvrpt_workflow_out_dir)
subprocess.check_output(cmd, shell=True)

else:
Expand Down

0 comments on commit e6345c4

Please sign in to comment.