Skip to content
Snippets Groups Projects
Commit d95abc5f authored by Moustakas's avatar Moustakas
Browse files

Set nomodel false

parent b03b1a5d
No related branches found
No related tags found
2 merge requests!39Macs2,!38Macs2
...@@ -5,7 +5,7 @@ task PeakCalling { ...@@ -5,7 +5,7 @@ task PeakCalling {
String sampleName String sampleName
Int? threads Int? threads
Int? memory Int? memory
Boolean? nomodel Boolean? nomodel = false
command { command {
set -e -o pipefail set -e -o pipefail
...@@ -14,7 +14,7 @@ task PeakCalling { ...@@ -14,7 +14,7 @@ task PeakCalling {
--treatment ${sep = ' ' bamFiles} \ --treatment ${sep = ' ' bamFiles} \
--outdir ${outDir} \ --outdir ${outDir} \
--name ${sampleName} \ --name ${sampleName} \
${true='--nomodel' false='' default='false' nomodel} ${true='--nomodel' false='' nomodel}
} }
output { 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