Skip to content

Commit

Permalink
🔧 do not rename reheadered vcfs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmiller15 committed Nov 7, 2024
1 parent c7c0fd5 commit dc7c16e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sub_workflows/kfdrc_lancet_sub_wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ steps:
input_vcf: sort_merge_lancet_vcf/merged_vcf
output_filename:
valueFrom: |
$(inputs.input_vcf.basename.replace(".vcf", ".reheadered.vcf"))
$(inputs.input_vcf.basename)
new_normal_name: input_normal_name
new_tumor_name: input_tumor_name
old_normal_name: old_normal_name
Expand Down
2 changes: 1 addition & 1 deletion sub_workflows/kfdrc_manta_sub_wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ steps:
input_vcf: manta/output_sv
output_filename:
valueFrom: |
$(inputs.input_vcf.basename.replace(".vcf", ".reheadered.vcf"))
$(inputs.input_vcf.basename)
new_normal_name: input_normal_name
new_tumor_name: input_tumor_name
old_normal_name: old_normal_name
Expand Down
2 changes: 1 addition & 1 deletion sub_workflows/kfdrc_mutect2_sub_wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ steps:
input_vcf: filter_mutect2_vcf/filtered_vcf
output_filename:
valueFrom: |
$(inputs.input_vcf.basename.replace(".vcf", ".reheadered.vcf"))
$(inputs.input_vcf.basename)
new_normal_name: input_normal_name
new_tumor_name: input_tumor_name
old_normal_name: old_normal_name
Expand Down
2 changes: 1 addition & 1 deletion sub_workflows/kfdrc_strelka2_sub_wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ steps:
input_vcf: merge_strelka2_vcf/merged_vcf
output_filename:
valueFrom: |
$(inputs.input_vcf.basename.replace(".vcf", ".reheadered.vcf"))
$(inputs.input_vcf.basename)
new_normal_name: input_normal_name
new_tumor_name: input_tumor_name
old_normal_name:
Expand Down
2 changes: 1 addition & 1 deletion sub_workflows/kfdrc_vardict_sub_wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ steps:
input_vcf: sort_merge_vardict_vcf/merged_vcf
output_filename:
valueFrom: |
$(inputs.input_vcf.basename.replace(".vcf", ".reheadered.vcf"))
$(inputs.input_vcf.basename)
new_normal_name: input_normal_name
new_tumor_name: input_tumor_name
old_normal_name: old_normal_name
Expand Down

0 comments on commit dc7c16e

Please sign in to comment.