Skip to content

Commit

Permalink
Merge pull request #450 from umccr/fix-stacky-glue-minor-issues
Browse files Browse the repository at this point in the history
Fixed minor stacky glues issues
  • Loading branch information
victorskl authored Aug 6, 2024
2 parents 83a3414 + b94d44d commit 9768b14
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class BclconvertInteropQcDraftMakerConstruct extends Construct {
outputDetailType: 'WorkflowDraftRunStateChange',
outputStatus: 'draft',
payloadVersion: '2024.05.24',
workflowName: 'bclconvertInteropQc',
workflowName: 'bclconvert-interop-qc', // FIXME should be same as `bclconvertInteropQcIcav2PipelineWorkflowName` from constants.ts
workflowVersion: '2024.05.24',
};

Expand Down Expand Up @@ -133,6 +133,11 @@ export class BclconvertInteropQcDraftMakerConstruct extends Construct {
'equals-ignore-case': this.bclconvertInteropQcDraftMakerEventMap.triggerStatus,
},
],
workflowName: [
{
'equals-ignore-case': this.bclconvertInteropQcDraftMakerEventMap.triggerWorkflowName,
},
],
},
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class BclconvertInteropQcDraftToReadyMakerConstruct extends Construct {
outputSource: 'orcabus.bclconvertinteropqcinputeventglue',
outputStatus: 'ready',
payloadVersion: '2024.05.24',
workflowName: 'bclconvertInteropQc',
workflowName: 'bclconvert-interop-qc', // FIXME should be same as `bclconvertInteropQcIcav2PipelineWorkflowName` from constants.ts
workflowVersion: '2024.05.24',
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ export class FastqListRowQcCompleteConstruct extends Construct {
detailType: [this.WgtsQcCompleteMap.triggerDetailType],
detail: {
status: [{ 'equals-ignore-case': this.WgtsQcCompleteMap.triggerStatus }],
workflowName: [
{
'equals-ignore-case': this.WgtsQcCompleteMap.triggerWorkflowName,
},
],
},
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface TnInitialiseSubjectDbRowConstructProps {

export class TnInitialiseSubjectDbRowConstruct extends Construct {
public readonly TnInitialiseSubjectDbRowMap = {
prefix: 'kwik-make-subject-row',
prefix: 'loctite-make-subject-row',
tablePartition: 'subject',
triggerSource: 'orcabus.instrumentrunmanager',
triggerStatus: 'SubjectInSamplesheet',
Expand Down

0 comments on commit 9768b14

Please sign in to comment.