Skip to content

Commit

Permalink
Update dragen somatic pipeline id
Browse files Browse the repository at this point in the history
Dragen somatic with germline pipeline didn't have the enable_cnv_somatic flag available in the workflow (and in the past we have just used enable_cnv), since we do not need the cnv on the germline calls we use just enable_cnv_somatic instead.
  • Loading branch information
alexiswl committed Nov 7, 2024
1 parent 626de1a commit dca29ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ TN Stateless stack
*/

// Deployed under dev/stg/prod
export const tnIcav2PipelineIdSSMParameterPath = '/icav2/umccr-prod/tumor_normal_4.2.4_pipeline_id'; // 0f5575bc-6cf8-4a90-a80e-05088aae8ed7
export const tnIcav2PipelineIdSSMParameterPath = '/icav2/umccr-prod/tumor_normal_4.2.4_pipeline_id'; // 6ce2b636-ba2f-4004-8065-f3557f286c98
export const tnIcav2PipelineWorkflowType = 'tumor-normal';
export const tnIcav2PipelineWorkflowTypeVersion = '4.2.4';
export const tnIcav2ServiceVersion = '2024.07.01';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ def handler(event, context) -> Dict[str, Dict]:

# Get the boolean parameters from the event input
cwl_parameter_dict: Dict = {
# Write normal bam in somatic workflow
# But take the vcf from the germline workflow
"enable_map_align_somatic": True,
"enable_map_align_output_somatic": event_data_input.get('enableMapAlignOutput', True),
"enable_map_align_germline": True,
"enable_map_align_output_germline": False,
"enable_duplicate_marking": event_data_input.get('enableDuplicateMarking', True),
"enable_cnv_somatic": event_data_input.get('enableCnvSomatic', None),
# HRD is somatic Only
"enable_hrd": event_data_input.get('enableHrdSomatic', None),
"enable_sv_somatic": event_data_input.get('enableSvSomatic', None),
"cnv_use_somatic_vc_baf": event_data_input.get('cnvUseSomaticVcBaf', None)
Expand Down

0 comments on commit dca29ae

Please sign in to comment.