Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update confs - dev and pride ebi #443

Merged
merged 4 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/dev.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ params {
process {
withLabel: openms {
conda = "bioconda::openms-thirdparty=3.2.0" // The conda package is not the nightly version
container = {"${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? 'ghcr.io/openms/openms-executables-sif:latest' : 'ghcr.io/openms/openms-executables:latest' }"}
container = {"${ ( workflow.containerEngine == 'singularity' || workflow.containerEngine == 'apptainer' ) && !task.ext.singularity_pull_docker_container ? 'oras://ghcr.io/openms/openms-tools-thirdparty-sif:latest' : 'ghcr.io/openms/openms-tools-thirdparty:latest' }"}
}
}
2 changes: 1 addition & 1 deletion conf/pride_codon_slurm.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ singularity {
process {
// this is to avoid errors for missing files due to shared filesystem latency
maxRetries = 30
errorStrategy = { task.exitStatus == 0 ? "retry" : "terminate" }
errorStrategy = { task.exitStatus in ((130..145) + 104 + 1 + 9 + 134 + 97 + 137 + 0) ? "retry" : "terminate" }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That looks quite redundant 134 and 137 are between (130..145) 😄 and retry for status 0? Doesn't status 0 mean successful?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it.

cache = "lenient"
afterScript = "sleep 60"

Expand Down
Loading