Skip to content
Snippets Groups Projects
Commit 745a362b authored by Cats's avatar Cats
Browse files

add notSplitContigs option to ScatterRegions

parent 6ef62774
No related branches found
No related tags found
1 merge request!70Some new tasks and memory setting changes
......@@ -236,6 +236,7 @@ task ScatterRegions {
File? toolJar
Int? scatterSize
File? regions
Boolean notSplitContigs = false
Int memory = 4
Float memoryMultiplier = 3.0
......@@ -253,7 +254,8 @@ task ScatterRegions {
-R ~{reference.fasta} \
-o ~{outputDirPath} \
~{"-s " + scatterSize} \
~{"-L " + regions}
~{"-L " + regions} \
~{true="--notSplitContigs" false="" notSplitContigs}
}
output {
......
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