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

Add targets file input to samtools view

parent 7f1f45a9
Branches BIOWDL-602
No related tags found
No related merge requests found
......@@ -571,6 +571,7 @@ task View {
Int? excludeFilter
Int? excludeSpecificFilter
Int? MAPQthreshold
File? targetFile
Int threads = 1
String memory = "1GiB"
......@@ -593,6 +594,7 @@ task View {
~{"-G " + excludeSpecificFilter} \
~{"-q " + MAPQthreshold} \
~{"--threads " + (threads - 1)} \
~{"--target-file " + targetFile} \
~{inFile}
samtools index ~{outputFileName} ~{outputIndexPath}
}
......
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