Skip to content

Instantly share code, notes, and snippets.

@jmuhlich
Created November 1, 2023 16:08
Show Gist options
  • Save jmuhlich/0d3f00600de3c65cbe42cbe4d7a3676c to your computer and use it in GitHub Desktop.
Save jmuhlich/0d3f00600de3c65cbe42cbe4d7a3676c to your computer and use it in GitHub Desktop.
Nextflow config for O2 (WIP for nf-core shared config)
params {
config_profile_description = 'HMS O2 profile.'
config_profile_contact = 'Jeremy Muhlich'
config_profile_url = 'https://...'
singularity_cache_dir = '/n/groups/lsp/mcmicro/singularity'
}
process {
executor = "slurm"
queue = { task.time < 12.h ? 'short' : task.time < 5.d ? 'medium' : 'long' }
}
singularity{
enabled = true
autoMounts = true
cacheDir = params.singularity_cache_dir
}
params {
max_memory = 230.GB
max_cpus = 32
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment