Skip to content
Snippets Groups Projects
Commit fcc09ede authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Add dbsnp to baserecalibraction

parent cdd00894
No related branches found
No related tags found
1 merge request!24Changes after testing
...@@ -56,12 +56,17 @@ task BaseRecalibrator { ...@@ -56,12 +56,17 @@ task BaseRecalibrator {
File inputBamIndex File inputBamIndex
String recalibrationReportPath String recalibrationReportPath
Array[File]+ sequenceGroupInterval Array[File]+ sequenceGroupInterval
Array[File]+ knownIndelsSitesVCFs Array[File]? knownIndelsSitesVCFs
Array[File]+ knownIndelsSitesIndices Array[File]? knownIndelsSitesIndices
File? dbsnpVCF
File? dbsnpVCFindex
File refDict File refDict
File refFasta File refFasta
File refFastaIndex File refFastaIndex
Array[File]+ knownIndelsSitesVCFsArg = select_all(flatten([knownIndelsSitesVCFs, [dbsnpVCF]]))
Array[File]+ knownIndelsSitesIndicesArg = select_all(flatten([knownIndelsSitesIndices, [dbsnpVCFindex]]))
Float? memory Float? memory
Float? memoryMultiplier Float? memoryMultiplier
...@@ -80,7 +85,7 @@ task BaseRecalibrator { ...@@ -80,7 +85,7 @@ task BaseRecalibrator {
-I ${inputBam} \ -I ${inputBam} \
--use-original-qualities \ --use-original-qualities \
-O ${recalibrationReportPath} \ -O ${recalibrationReportPath} \
--known-sites ${sep=" --known-sites " knownIndelsSitesVCFs} \ --known-sites ${sep=" --known-sites " knownIndelsSitesVCFsArg} \
-L ${sep=" -L " sequenceGroupInterval} -L ${sep=" -L " sequenceGroupInterval}
} }
......
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