Skip to content
Snippets Groups Projects
Commit 07bac37b authored by JB's avatar JB
Browse files

Fixed travis failure.

parent b6755add
No related branches found
No related tags found
No related merge requests found
......@@ -94,6 +94,7 @@ task Mapping {
input {
String presetOption
Int kmerSize = 15
Boolean skipSelfAndDualMappings = false
Boolean outputSAM = false
String outputPrefix
Boolean addMDtagToSAM = false
......@@ -119,6 +120,7 @@ task Mapping {
minimap2 \
~{"-x " + presetOption} \
~{"-k " + kmerSize} \
~{true="-X" false="" skipSelfAndDualMappings} \
~{true="-a" false="" outputSAM} \
~{"-o " + outputPrefix} \
~{true="--MD" false="" addMDtagToSAM} \
......@@ -126,7 +128,6 @@ task Mapping {
~{"-t " + cores} \
~{"-G " + maxIntronLength} \
~{"-F " + maxFragmentLength} \
~{true="-X" false="" skipSelfAndDualMappings} \
~{"-N " + retainMaxSecondaryAlignments} \
~{"-A " + matchingScore} \
~{"-B " + mismatchPenalty} \
......
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