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

MACS2 takes array of files as input

parent 5b0ee1b7
No related branches found
No related tags found
1 merge request!26Macs2
task peakCalling {
String? preCommand
File bamFile
Array[File] bamFiles
String outDir
String sampleName
Int? threads
......@@ -10,7 +10,10 @@ task peakCalling {
command {
set -e -o pipefail
${preCommand}
macs2 callpeaks --treatment ${bamFile} --outdir ${outDir} --name ${sampleName}
macs2 callpeaks \
--treatment ${sep = ' ' bamFiles} \
--outdir ${outDir} \
--name ${sampleName}
}
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