Skip to content

Commit

Permalink
Updated when pipeline looks for precomputed backsub intermediate
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSokolov authored Sep 2, 2024
1 parent f25fcbf commit e67733e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mcmicro/Flow.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static def precomputed(wfp) {
raw: idxStart <= 3 && idxStart > 0,
illumination: idxStart == 3,
registration: idxStart == 4 || (idxStart == 5 && !wfp.background) || (idxStart > 5 && !wfp.tma && !wfp.background), // needed for background (3), tma if no background (4), everything else if both tma and background aren't specified
background: idxStart > 3 && wfp.background, // if background specified, required
background: idxStart > 4 && wfp.background, // if background specified, required
dearray: idxStart > 5 && wfp.tma, // if tma specified, required
'probability-maps': idxStart == 7,
segmentation: idxStart == 8,
Expand Down Expand Up @@ -109,4 +109,4 @@ static def doirun(step, wfp) {
default:
throw new Exception("Unknown step name ${step}")
}
}
}

0 comments on commit e67733e

Please sign in to comment.