2019-01-04 10:28:41 -05:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
2019-01-07 08:25:06 -05:00
|
|
|
config_profile_description = 'CCGA cluster profile provided by nf-core/configs.'
|
2019-01-04 10:28:41 -05:00
|
|
|
config_profile_contact = 'Marc Hoeppner (@marchoeppner)'
|
|
|
|
config_profile_url = 'https://www.ikmb.uni-kiel.de/'
|
|
|
|
}
|
|
|
|
|
2018-11-23 10:56:34 -05:00
|
|
|
/*
|
|
|
|
* -------------------------------------------------
|
|
|
|
* Nextflow config file with environment modules for RZCluster in Kiel
|
|
|
|
* -------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
executor {
|
|
|
|
queueSize=100
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
|
|
|
|
// Global process config
|
|
|
|
executor = 'slurm'
|
|
|
|
queue = 'ikmb_a'
|
|
|
|
|
|
|
|
clusterOptions = { "--qos=ikmb_a" }
|
|
|
|
|
|
|
|
}
|
2019-03-13 12:15:16 -04:00
|
|
|
|
2018-11-23 10:56:34 -05:00
|
|
|
params {
|
|
|
|
// illumina iGenomes reference file paths on RZCluster
|
|
|
|
igenomes_base = '/ifs/data/nfs_share/ikmb_repository/references/iGenomes/references/'
|
|
|
|
saveReference = true
|
|
|
|
}
|