Skip to content

Commit

Permalink
Update isWorkflowTypeJoined to support Pinery's HISEQ_ONBOARD (OnBoar…
Browse files Browse the repository at this point in the history
…dClustering)
  • Loading branch information
mlaszloffy committed Feb 12, 2024
1 parent c0f11d8 commit 79373f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/change_flowcell_is_workflow_joined_type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for Pinery's HISEQ_ONBOARD workflow type
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ public static Set<Set<Long>> getFlowcellLayout(
"Check if a sequencing workflow type has a flow cell where all the lanes are joined or not.")
public static boolean isWorkflowTypeJoined(
@ShesmuParameter(description = "The type of the workflow") String workflowType) {
return workflowType.equals("NovaSeqStandard") || workflowType.equals("OnBoardClustering");
return workflowType.equals("NovaSeqStandard")
|| workflowType.equals("OnBoardClustering")
// Note: HISEQ_ONBOARD == OnBoardClustering
// Pinery exports OnBoardClustering as HISEQ_ONBOARD
// See: https://jira.oicr.on.ca/browse/GP-3456 and https://jira.oicr.on.ca/browse/GLT-3661
|| workflowType.equals("HISEQ_ONBOARD");
}

public RunScannerPluginType() {
Expand Down

0 comments on commit 79373f6

Please sign in to comment.