Hi,
I am trying to write a pipeline that runs on a SLURM cluster, consisting of traditional nodes as well as one Illumina Dragen,
I would like the software to be provisioned through singularity - with the exception of the Dragen jobs, since Dragen has its own, local software.
I was trying to define singularity within a label as in
withLabel: 'default' {
singularity.enabled = true
}
withLabel: 'dragen' {
// blabla
}
That however does not work. Is there any way to do this in Nextflow, or do I have to use some other way to provision software (process-specific conda environments or whatever).
Cheers,
Marc