Skip to content
Snippets Groups Projects
Commit 5df62f54 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

Add format parameter to macs2

parent a56d2f18
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ task PeakCalling {
Array[File] controlBamsIndex
String outDir = "macs2"
String sampleName
String format = "AUTO"
Boolean nomodel = false
Int timeMinutes = 600 # Default to 10 hours
String memory = "8G"
......@@ -41,6 +42,7 @@ task PeakCalling {
~{true="--control" false="" length(controlBams) > 0} ~{sep = ' ' controlBams} \
--outdir ~{outDir} \
--name ~{sampleName} \
-f ~{format} \
~{true='--nomodel' false='' nomodel}
}
......
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