We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ff61a7 commit f64d5c8Copy full SHA for f64d5c8
wdl/Module00c.wdl
@@ -66,6 +66,8 @@ workflow Module00c {
66
# BAF Option #2, position-sharded VCFs
67
Array[File]? snp_vcfs
68
File? snp_vcf_header # Only use if snp vcfs are unheadered
69
+ # Sample ids in vcf, where vcf_samples[i] corresponds to samples[i]. Only use if sample ids are different in vcf
70
+ Array[String]? vcf_samples
71
72
# Condense read counts
73
Int? condense_num_bins
@@ -270,7 +272,7 @@ workflow Module00c {
270
272
input:
271
273
vcfs = select_first([snp_vcfs]),
274
vcf_header = snp_vcf_header,
- samples = samples,
275
+ samples = select_first([vcf_samples, samples]),
276
batch = batch,
277
sv_base_mini_docker = sv_base_mini_docker,
278
sv_pipeline_docker = sv_pipeline_docker,
0 commit comments