1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 16:16:04 +00:00

Remove ceh profile for now

This commit is contained in:
James A. Fellows Yates 2021-01-21 13:15:08 +01:00 committed by GitHub
parent c4604450d8
commit 26d164ca74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,15 +3,17 @@
config_profile_description = 'Section for Evolutionary Genomics @ GLOBE, University of Copenhagen - seg_globe profile provided by nf-core/configs.' config_profile_description = 'Section for Evolutionary Genomics @ GLOBE, University of Copenhagen - seg_globe profile provided by nf-core/configs.'
config_profile_contact = 'Aashild Vaagene (@ashildv)' config_profile_contact = 'Aashild Vaagene (@ashildv)'
config_profile_url = 'https://globe.ku.dk/research/evogenomics/' config_profile_url = 'https://globe.ku.dk/research/evogenomics/'
max_memory = 250.GB
max_cpus = 35
max_time = 720.h
} }
profiles {
ceh {
singularity { singularity {
enabled = true enabled = true
autoMounts = true autoMounts = true
cacheDir = '/shared/volume/hologenomics/data/cache/nf-eager/singularity' cacheDir = '/shared/volume/hologenomics/data/cache/nf-eager/singularity'
} }
process { process {
executor = 'slurm' executor = 'slurm'
queue = { task.time < 24.h ? 'hologenomics-short' : task.time < 168.h ? 'hologenomics' : 'hologenomics-long' } queue = { task.time < 24.h ? 'hologenomics-short' : task.time < 168.h ? 'hologenomics' : 'hologenomics-long' }
@ -22,11 +24,4 @@ ceh {
executor { executor {
queueSize = 8 queueSize = 8
} }
params {
max_memory = 250.GB
max_cpus = 35
max_time = 720.h
}
}
}