Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add sd_locs_vcf_index input to SDtoBAF #644

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions wdl/BatchEvidenceMerging.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,13 @@ workflow BatchEvidenceMerging {
}
}
if (!defined(BAF_files)) {
File sd_locs_vcf_index = select_first([sd_locs_vcf]) + ".tbi"

call SDtoBAF {
input:
SD_files = select_first([SD_files]),
sd_locs_vcf = select_first([sd_locs_vcf]),
sd_locs_vcf_index = sd_locs_vcf_index,
batch = batch,
samples = samples,
rename_samples=rename_samples,
Expand Down Expand Up @@ -179,6 +182,7 @@ task SDtoBAF {
input {
Array[File] SD_files
File sd_locs_vcf
File sd_locs_vcf_index
String batch
Array[String] samples
Boolean rename_samples
Expand Down
Loading