mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
57 lines
1.3 KiB
Text
57 lines
1.3 KiB
Text
//Profile config names for nf-core/configs
|
|
params {
|
|
config_profile_description = 'Cancer Research UK Manchester Institute HPC cluster profile provided by nf-core/configs'
|
|
config_profile_contact = 'Stephen Kitcatt, Simon Pearce (@skitcattCRUKMI, @sppearce)'
|
|
config_profile_url = 'http://scicom.picr.man.ac.uk/projects/user-support/wiki'
|
|
}
|
|
|
|
env {
|
|
SINGULARITY_CACHEDIR = '/lmod/nextflow_software'
|
|
}
|
|
|
|
singularity {
|
|
enabled = true
|
|
autoMounts = true
|
|
}
|
|
|
|
process {
|
|
beforeScript = 'module load apps/singularity/3.8.0'
|
|
executor = 'pbs'
|
|
|
|
errorStrategy = {task.exitStatus in [143,137,104,134,139,140] ? 'retry' : 'finish'}
|
|
maxErrors = '-1'
|
|
maxRetries = 3
|
|
|
|
withLabel:process_low {
|
|
cpus = { check_max( 1 * task.attempt, 'cpus' ) }
|
|
memory = { check_max( 5.GB * task.attempt, 'memory' ) }
|
|
}
|
|
|
|
withLabel:process_medium {
|
|
cpus = { check_max( 4 * task.attempt, 'cpus' ) }
|
|
memory = { check_max( 20.GB * task.attempt, 'memory' ) }
|
|
}
|
|
|
|
withLabel:process_high {
|
|
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
|
|
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
|
}
|
|
|
|
withName: 'SAMTOOLS_MPILEUP' {
|
|
cpus = 1
|
|
memory = { 5.GB * task.attempt }
|
|
}
|
|
|
|
}
|
|
|
|
executor {
|
|
name = 'pbs'
|
|
queueSize = 1000
|
|
pollInterval = '10 sec'
|
|
}
|
|
|
|
params {
|
|
max_memory = 2000.GB
|
|
max_cpus = 32
|
|
max_time = 72.h
|
|
}
|