-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We should make a docker image specific to cellprofiler-nf. At the moment we are using the NemaScan docker file which is bloated with software not required for this workflow. See, nextflow.config for call to NemaScan docker:
process {
container = 'andersenlab/nemascan:20220407173056db3227' // still need to make cp docker img
withLabel: cellpro {
container = 'cellprofiler/cellprofiler:4.2.1'
memory = { 8.GB * task.attempt } // 8.GB working for all dauerProtocol3
time = { 30.min * task.attempt }
errorStrategy = { task.exitStatus in 137..140 ? 'retry' : 'terminate' }
maxRetries = 3
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request