Skip to content
Snippets Groups Projects
Unverified Commit d81eed41 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge branch 'develop' into BIOWDL-51

parents c5832982 9081f0d7
No related branches found
No related tags found
1 merge request!30add picard metrics tools
......@@ -5,6 +5,7 @@ task PeakCalling {
String sampleName
Int? threads
Int? memory
Boolean? nomodel
command {
set -e -o pipefail
......@@ -12,7 +13,8 @@ task PeakCalling {
macs2 callpeak \
--treatment ${sep = ' ' bamFiles} \
--outdir ${outDir} \
--name ${sampleName}
--name ${sampleName} \
${default=false true='--nomodel' false='' nomodel}
}
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