forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into remove_aws_tower
- Loading branch information
Showing
61 changed files
with
1,597 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
params { | ||
config_profile_name = 'apollo' | ||
config_profile_description = 'COH Apollo cluster profile provided by nf-core/configs.' | ||
config_profile_contact = 'Denis O\'Meally (@drejom) or HPRCC Helpdesk ([email protected])' | ||
config_profile_url = 'https://www.cityofhope.org/ Intranet http://hprcc.coh.org/' | ||
max_memory = 1500.GB | ||
max_cpus = 72 | ||
max_time = 500.h | ||
igenomes_base = '/ref_genome/igenomes' | ||
} | ||
|
||
process { | ||
executor = 'slurm' | ||
queue = 'all' | ||
beforeScript = 'module load singularity' | ||
} | ||
|
||
singularity { | ||
enabled = true | ||
libraryDir = '/opt/singularity-images/nextflow' | ||
} | ||
|
||
executor { | ||
name = 'slurm' | ||
queueSize = 1000 | ||
} | ||
|
||
cleanup = true | ||
|
||
profiles { | ||
debug { | ||
cleanup = false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
|
||
params { | ||
config_profile_description = 'Biowulf nf-core config' | ||
config_profile_contact = '[email protected]' | ||
config_profile_url = 'https://hpc.nih.gov/apps/nextflow.html' | ||
max_memory = '224 GB' | ||
max_cpus = 32 | ||
max_time = '72 h' | ||
|
||
igenomes_base = '/fdb/igenomes/' | ||
} | ||
|
||
executor { | ||
|
||
$slurm { | ||
queue = 'norm' | ||
queueSize = 200 | ||
pollInterval = '2 min' | ||
queueStatInterval = '5 min' | ||
submitRateLimit = '6/1min' | ||
retry.maxAttempts = 1 | ||
} | ||
} | ||
|
||
singularity { | ||
enabled = true | ||
autoMounts = true | ||
cacheDir = "/data/$USER/singularity" | ||
envWhitelist='https_proxy,http_proxy,ftp_proxy,DISPLAY,SLURM_JOBID,SINGULARITY_BINDPATH' | ||
} | ||
|
||
env { | ||
SINGULARITY_CACHEDIR="/data/$USER/singularity" | ||
PYTHONNOUSERSITE = 1 | ||
} | ||
|
||
|
||
process { | ||
executor = 'slurm' | ||
maxRetries = 1 | ||
|
||
clusterOptions = ' --gres=lscratch:200 ' | ||
|
||
scratch = '/lscratch/$SLURM_JOBID' | ||
|
||
stageInMode = 'symlink' | ||
stageOutMode = 'rsync' | ||
|
||
// for running pipeline on group sharing data directory, this can avoid inconsistent files timestamps | ||
cache = 'lenient' | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,55 @@ | ||
//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' | ||
config_profile_contact = 'Stephen Kitcatt, Simon Pearce (@skitcattCRUKMI, @sppearce)' | ||
config_profile_url = 'http://scicom.picr.man.ac.uk/projects/user-support/wiki' | ||
} | ||
|
||
singularity { | ||
cacheDir = '/lmod/nextflow_software' | ||
enabled = true | ||
cacheDir = '/lmod/nextflow_software' | ||
enabled = true | ||
autoMounts = true | ||
} | ||
|
||
process { | ||
beforeScript = 'module load apps/singularity/3.8.0' | ||
executor = 'pbs' | ||
beforeScript = 'module load apps/apptainer/1.2.0' | ||
executor = 'slurm' | ||
queue = { task.memory <= 240.GB ? 'compute' : 'hmem' } | ||
|
||
errorStrategy = {task.exitStatus in [143,137,104,134,139,140] ? 'retry' : 'finish'} | ||
maxErrors = '-1' | ||
maxRetries = 3 | ||
maxErrors = '-1' | ||
maxRetries = 3 | ||
|
||
withLabel:process_single { | ||
cpus = { check_max( 1 * task.attempt, 'cpus' ) } | ||
cpus = { check_max( 1 * task.attempt, 'cpus' ) } | ||
memory = { check_max( 5.GB * task.attempt, 'memory' ) } | ||
} | ||
|
||
withLabel:process_low { | ||
cpus = { check_max( 1 * task.attempt, 'cpus' ) } | ||
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' ) } | ||
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' ) } | ||
cpus = { check_max( 48 * task.attempt, 'cpus' ) } | ||
memory = { check_max( 240.GB * task.attempt, 'memory' ) } | ||
} | ||
|
||
} | ||
|
||
executor { | ||
name = 'pbs' | ||
queueSize = 1000 | ||
name = 'slurm' | ||
queueSize = 1000 | ||
pollInterval = '10 sec' | ||
} | ||
|
||
params { | ||
max_memory = 2000.GB | ||
max_cpus = 32 | ||
max_time = 72.h | ||
max_memory = 4000.GB | ||
max_cpus = 96 | ||
max_time = 72.h | ||
} |
Oops, something went wrong.