Skip to content
Snippets Groups Projects
Commit d9265c31 authored by JasperBoom's avatar JasperBoom
Browse files

Fix quotations in samtools sort.

parent fd60df60
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ that users understand how the changes affect the new version.
-->
version 3.1.0
---------------------------
+ Samtools: Fix quotations in sort command.
+ Samtools SortByName is now called Sort.
+ Generalize sort task to now also sort by position, instead of just read name.
+ Add CreateSequenceDictionary task to picard.
......
......@@ -191,10 +191,10 @@ task Sort {
set -e
mkdir -p "$(dirname ~{outputPath})"
samtools sort \
"-l " ~{compressionLevel} \
-l ~{compressionLevel} \
~{true="-n" false="" sortByName} \
~{"--threads " + threads} \
"-o " ~{outputPath} \
-o ~{outputPath} \
~{inputBam}
}
......
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