forked from nf-core/rnaseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgis.config
More file actions
23 lines (21 loc) · 847 Bytes
/
gis.config
File metadata and controls
23 lines (21 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* -------------------------------------------------
* Nextflow config file for GIS (Aquila)
* -------------------------------------------------
* Defines reference genomes, using iGenome paths
* Imported under the default 'standard' Nextflow
* profile in nextflow.config
*/
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/'
}