Skip to content
Snippets Groups Projects
Commit 5596c3da authored by JB's avatar JB
Browse files

Removed "pipefail" from command sections and altered "secondaryAlignment" Boolean

parent 102bff10
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,6 @@ task Indexing {
}
command {
set -e pipefail
mkdir -p $(dirname ~{outputPrefix})
minimap2 \
~{true="-H" false="" useHomopolymerCompressedKmer} \
......@@ -93,7 +92,6 @@ task Mapping {
}
command {
set -e pipefail
mkdir -p $(dirname ~{outputPrefix})
minimap2 \
~{"-x " + presetOption} \
......@@ -105,7 +103,7 @@ task Mapping {
~{"-A " + matchingScore} \
~{"-B " + mismatchPenalty} \
~{"-u " + howToFindGTAG} \
~{true="--secondary=yes" false="--secondary=no" secondaryAlignment} \
--secondary=~{true="yes" false="no" secondaryAlignment} \
~{"-o " + outputPrefix} \
~{"-t " + cores} \
~{referenceFile} \
......
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