2019-03-13 16:15:16 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
|
|
|
config_profile_description = 'Genome Institute of Singapore (Aquila) cluster profile provided by nf-core/configs.'
|
|
|
|
config_profile_contact = 'Andreas Wilm (@andreas-wilm)'
|
|
|
|
config_profile_url = 'https://www.a-star.edu.sg/gis/'
|
|
|
|
}
|
2018-11-23 15:56:34 +00:00
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'sge'
|
|
|
|
clusterOptions = { "-l mem_free=" + task.memory.toString().replaceAll(/[\sB]/,'') }
|
|
|
|
penv = 'OpenMP'
|
|
|
|
errorStrategy = { task.attempt < 2 ? 'retry' : 'finish' }
|
|
|
|
// auto translate container name into conda environment name
|
|
|
|
beforeScript = { 'source /mnt/projects/rpd/rc/init.2017-04; module load miniconda3; set +u; source activate nfcore-rnaseq-1.0dev; set -u;' }
|
|
|
|
}
|
|
|
|
params {
|
|
|
|
saveReference = true
|
|
|
|
// illumina iGenomes reference file paths on GIS Aquila
|
|
|
|
igenomes_base = '/mnt/projects/rpd/genomes.testing/S3_igenomes/'
|
|
|
|
}
|