Skip to content

Commit

Permalink
🛠️ add hpc_slurm profile
Browse files Browse the repository at this point in the history
  • Loading branch information
ddomenico committed Jul 19, 2024
1 parent 5037488 commit 801eaad
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,33 @@ profiles {
standard {
process.executor = 'local'
}
hpc {

hpc_lsf {
singularity.enabled = true
singularity.autoMounts = true
process {
executor = 'lsf'
}
}

hpc_slurm {
singularity.enabled = true
singularity.autoMounts = true
process {
executor = 'slurm'
queue = 'componc_cpu'
withname:runPurple {
container = '/usersoftware/papaemme/isabl/local/purple/v0.1.0/purple_v0.1.0.sif'
}
withname:runAmber {
container = '/usersoftware/papaemme/isabl/local/purple/v0.1.0/purple_v0.1.0.sif'
}
withname:runCobalt {
container = '/usersoftware/papaemme/isabl/local/purple/v0.1.0/purple_v0.1.0.sif'
}
}
}

cloud {
docker {
enabled = true
Expand Down

0 comments on commit 801eaad

Please sign in to comment.