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 {
File inputBamIndex
String recalibrationReportPath
Array[File]+ sequenceGroupInterval
Array[File]+ knownIndelsSitesVCFs
Array[File]+ knownIndelsSitesIndices
Array[File]? knownIndelsSitesVCFs
Array[File]? knownIndelsSitesIndices
File? dbsnpVCF
File? dbsnpVCFindex
File refDict
File refFasta
File refFastaIndex
Array[File]+ knownIndelsSitesVCFsArg = select_all(flatten([knownIndelsSitesVCFs, [dbsnpVCF]]))
Array[File]+ knownIndelsSitesIndicesArg = select_all(flatten([knownIndelsSitesIndices, [dbsnpVCFindex]]))
Float? memory
Float? memoryMultiplier
......@@ -80,7 +85,7 @@ task BaseRecalibrator {
-I ${inputBam} \
--use-original-qualities \
-O ${recalibrationReportPath} \
--known-sites ${sep=" --known-sites " knownIndelsSitesVCFs} \
--known-sites ${sep=" --known-sites " knownIndelsSitesVCFsArg} \
-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