-
Laurent Modolo authoredLaurent Modolo authored
indexing.config 816 B
profiles {
docker {
docker.temp = 'auto'
docker.enabled = true
process {
withName: index_fasta {
cpus = 4
container = "bowtie:1.2.2"
}
}
}
singularity {
singularity.enabled = true
process {
withName: index_fasta {
cpus = 4
container = "file://bin/bowtie:1.2.2.sif"
}
}
}
psmn {
process{
withName: index_fasta {
beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module = "bowtie/1.2.2"
executor = "sge"
clusterOptions = "-cwd -V"
memory = "20GB"
cpus = 16
time = "12h"
queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv = 'openmp16'
}
}
}
}