File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,9 +91,15 @@ process {
9191 errorStrategy = { task.exitStatus in [1] ? 'retry' : 'finish' }
9292 }
9393
94+ // other process specific exit statuses
95+ withName: nuclear_contamination {
96+ errorStrategy = { task.exitStatus in [134] ? 'ignore' : 'retry' }
97+ }
98+
9499 withName: multiqc {
95100 errorStrategy = { task.exitStatus in [143,137] ? 'retry' : 'ignore' }
96101 }
102+
97103}
98104
99105params {
Original file line number Diff line number Diff line change @@ -2479,9 +2479,6 @@ process sex_deterrmine {
24792479 tag " ${ samplename} "
24802480 publishDir " ${ params.outdir} /nuclear_contamination" , mode:" copy"
24812481
2482- // ANGSD Xcontamination will exit with status 134 when the number of SNPs is too low
2483- validExitStatus 0 ,134
2484-
24852482 when:
24862483 params. run_nuclear_contamination
24872484
You can’t perform that action at this time.
0 commit comments