Skip to content
Snippets Groups Projects
Unverified Commit 6caf6872 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #80 from biowdl/samtoolsMAPQ

Add argument for filtering on MAPQ (alignment quality) for View task
parents 46f495de a9dbe4ef
No related branches found
No related tags found
No related merge requests found
......@@ -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