Skip to content

Commit

Permalink
Support original sample ids in snp vcfs (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalker174 authored Jun 15, 2021
1 parent 3ff61a7 commit f64d5c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wdl/Module00c.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ workflow Module00c {
# BAF Option #2, position-sharded VCFs
Array[File]? snp_vcfs
File? snp_vcf_header # Only use if snp vcfs are unheadered
# Sample ids in vcf, where vcf_samples[i] corresponds to samples[i]. Only use if sample ids are different in vcf
Array[String]? vcf_samples

# Condense read counts
Int? condense_num_bins
Expand Down Expand Up @@ -270,7 +272,7 @@ workflow Module00c {
input:
vcfs = select_first([snp_vcfs]),
vcf_header = snp_vcf_header,
samples = samples,
samples = select_first([vcf_samples, samples]),
batch = batch,
sv_base_mini_docker = sv_base_mini_docker,
sv_pipeline_docker = sv_pipeline_docker,
Expand Down

0 comments on commit f64d5c8

Please sign in to comment.