2019-01-04 15:28:41 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
2019-01-07 13:25:06 +00:00
|
|
|
config_profile_description = 'CCGA cluster profile provided by nf-core/configs.'
|
2019-01-04 15:28:41 +00:00
|
|
|
config_profile_contact = 'Marc Hoeppner (@marchoeppner)'
|
2019-07-05 06:03:37 +00:00
|
|
|
config_profile_url = 'https://www.ccga.uni-kiel.de/'
|
2019-01-04 15:28:41 +00:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:56:34 +00:00
|
|
|
/*
|
|
|
|
* -------------------------------------------------
|
2019-07-05 06:03:37 +00:00
|
|
|
* Nextflow config file for CCGA cluster in Kiel
|
2018-11-23 15:56:34 +00:00
|
|
|
* -------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2019-07-05 06:03:37 +00:00
|
|
|
singularity {
|
|
|
|
enabled = true
|
|
|
|
runOptions = "-B /ifs -B /scratch -B /work_beegfs"
|
2019-08-07 11:19:16 +00:00
|
|
|
cacheDir = "/ifs/data/nfs_share/ikmb_repository/singularity_cache/"
|
2019-07-05 06:03:37 +00:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:56:34 +00:00
|
|
|
executor {
|
|
|
|
queueSize=100
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
|
|
|
|
// Global process config
|
|
|
|
executor = 'slurm'
|
|
|
|
queue = 'ikmb_a'
|
|
|
|
|
|
|
|
clusterOptions = { "--qos=ikmb_a" }
|
|
|
|
|
|
|
|
}
|
2019-03-13 16:15:16 +00:00
|
|
|
|
2018-11-23 15:56:34 +00:00
|
|
|
params {
|
|
|
|
// illumina iGenomes reference file paths on RZCluster
|
|
|
|
igenomes_base = '/ifs/data/nfs_share/ikmb_repository/references/iGenomes/references/'
|
|
|
|
saveReference = true
|
2019-07-05 06:03:37 +00:00
|
|
|
max_memory = 128.GB
|
|
|
|
max_cpus = 16
|
|
|
|
max_time = 120.h
|
2018-11-23 15:56:34 +00:00
|
|
|
}
|