Select Git revision
htseq.config
Forked from
LBMC / nextflow
940 commits behind the upstream repository.
Laurent Modolo authored
htseq.config 875 B
profiles {
docker {
docker.temp = 'auto'
docker.enabled = true
process {
withName: sort_bam {
container = "samtools:1.7"
}
withName: counting {
container = "htseq:0.8.0"
}
}
}
psmn {
process{
withName: sort_bam {
beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module = "SAMtools/1.7"
executor = "sge"
clusterOptions = "-m e -cwd -V"
memory = "20GB"
time = "12h"
queue = 'monointeldeb128'
}
withName: trimming {
beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module = "HTSeq/0.8.0"
executor = "sge"
clusterOptions = "-m e -cwd -V"
memory = "20GB"
time = "12h"
queue = 'monointeldeb128'
}
}
}
}