Skip to content
Snippets Groups Projects
Commit 267d4e02 authored by Moustakas's avatar Moustakas
Browse files

Add argument for filtering on MAPQ (alignment quality) for View task

parent c76870e2
No related branches found
No related tags found
1 merge request!80Add argument for filtering on MAPQ (alignment quality) for View task
......@@ -180,6 +180,7 @@ task View {
Int? includeFilter
Int? excludeFilter
Int? excludeSpecificFilter
Int? MAPQthreshold
Int threads = 1
Int memory = 1
}
......@@ -195,6 +196,7 @@ task View {
~{"-f " + includeFilter} \
~{"-F " + excludeFilter} \
~{"-G " + excludeSpecificFilter} \
~{"-q " + MAPQthreshold} \
~{"--threads " + (threads - 1)} \
~{inFile}
}
......
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