Skip to content
Snippets Groups Projects
Commit f377d14e authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

add pedigree file

parent f25df1ae
No related branches found
No related tags found
No related merge requests found
...@@ -903,6 +903,7 @@ task HaplotypeCaller { ...@@ -903,6 +903,7 @@ task HaplotypeCaller {
Float? contamination Float? contamination
File? dbsnpVCF File? dbsnpVCF
File? dbsnpVCFIndex File? dbsnpVCFIndex
File? pedigree
Int? ploidy Int? ploidy
Boolean gvcf = false Boolean gvcf = false
...@@ -922,7 +923,8 @@ task HaplotypeCaller { ...@@ -922,7 +923,8 @@ task HaplotypeCaller {
~{"--sample-ploidy " + ploidy} \ ~{"--sample-ploidy " + ploidy} \
~{true="-L" false="" defined(intervalList)} ~{sep=' -L ' intervalList} \ ~{true="-L" false="" defined(intervalList)} ~{sep=' -L ' intervalList} \
~{true="-XL" false="" defined(excludeIntervalList)} ~{sep=' -XL ' excludeIntervalList} \ ~{true="-XL" false="" defined(excludeIntervalList)} ~{sep=' -XL ' excludeIntervalList} \
~{"-D" + dbsnpVCF} \ ~{"-D " + dbsnpVCF} \
~{"--pedigree " + pedigree} \
~{"--contamination-fraction-per-sample-file " + contamination} \ ~{"--contamination-fraction-per-sample-file " + contamination} \
~{true="-ERC GVCF" false="" gvcf} ~{true="-ERC GVCF" false="" gvcf}
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment