mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
0830203b70
Updating README and fixing linting errors in CCGA_MED profile Fixing order in profile queue and removed leading slash from readme for ccga profile docs Fixing order in profile queue and removed leading slash from readme for ccga profile docs
39 lines
891 B
Text
39 lines
891 B
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'CCGA Med cluster profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Marc Hoeppner (@marchoeppner)'
|
|
config_profile_url = 'https://www.ccga.uni-kiel.de/'
|
|
}
|
|
|
|
/*
|
|
* -------------------------------------------------
|
|
* Nextflow config file for CCGA cluster in Kiel
|
|
* -------------------------------------------------
|
|
*/
|
|
|
|
singularity {
|
|
enabled = true
|
|
runOptions = "-B /work_ifs -B /scratch"
|
|
cacheDir = "/work_ifs/ikmb_repository/singularity_cache/"
|
|
}
|
|
|
|
executor {
|
|
queueSize=100
|
|
}
|
|
|
|
process {
|
|
|
|
// Global process config
|
|
executor = 'slurm'
|
|
queue = 'all'
|
|
|
|
}
|
|
|
|
params {
|
|
// illumina iGenomes reference file paths on RZCluster
|
|
igenomes_base = '/work_ifs/ikmb_repository/references/iGenomes/references/'
|
|
saveReference = true
|
|
max_memory = 250.GB
|
|
max_cpus = 24
|
|
max_time = 120.h
|
|
}
|