Skip to content

Commit

Permalink
Added ref_name as a sawfish_call input to parse filenames.
Browse files Browse the repository at this point in the history
  • Loading branch information
williamrowell committed Dec 13, 2024
1 parent 30c8298 commit 17b2ef6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions wdl-ci.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2396,6 +2396,7 @@
],
"ref_fasta": "${ref_fasta}",
"ref_index": "${ref_index}",
"ref_name": "${ref_name}",
"out_prefix": "HG002.GRCh38.structural_variants",
"runtime_attributes": "${default_runtime_attributes}"
},
Expand Down Expand Up @@ -2436,6 +2437,7 @@
],
"ref_fasta": "${ref_fasta}",
"ref_index": "${ref_index}",
"ref_name": "${ref_name}",
"out_prefix": "HG002-trio.joint.GRCh38.structural_variants",
"runtime_attributes": "${default_runtime_attributes}"
},
Expand Down
1 change: 1 addition & 0 deletions workflows/joint/joint.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ workflow joint {
aligned_bam_indices = aligned_bam_indices,
ref_fasta = ref_map["fasta"], # !FileCoercion
ref_index = ref_map["fasta_index"], # !FileCoercion
ref_name = ref_map["name"],
out_prefix = "~{family_id}.joint.~{ref_map['name']}.structural_variants",
runtime_attributes = default_runtime_attributes
}
Expand Down
1 change: 1 addition & 0 deletions workflows/upstream/upstream.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ workflow upstream {
aligned_bam_indices = [aligned_bam_index],
ref_fasta = ref_map["fasta"], # !FileCoercion
ref_index = ref_map["fasta_index"], # !FileCoercion
ref_name = ref_map["name"],
out_prefix = "~{sample_id}.~{ref_map['name']}.structural_variants",
runtime_attributes = default_runtime_attributes
}
Expand Down
2 changes: 1 addition & 1 deletion workflows/wdl-common

0 comments on commit 17b2ef6

Please sign in to comment.