diff --git a/app/components/TumourSummaryEdit/index.tsx b/app/components/TumourSummaryEdit/index.tsx index e6c2754d3..cafd99251 100644 --- a/app/components/TumourSummaryEdit/index.tsx +++ b/app/components/TumourSummaryEdit/index.tsx @@ -99,7 +99,6 @@ const TumourSummaryEdit = ({ if (mutationBurden) { setNewMutationBurdenData({ role: mutationBurden.role, - totalMutationsPerMb: mutationBurden.totalMutationsPerMb, qualitySvCount: mutationBurden.qualitySvCount, qualitySvPercentile: mutationBurden.qualitySvPercentile, }); diff --git a/app/views/ReportView/components/GenomicSummary/index.tsx b/app/views/ReportView/components/GenomicSummary/index.tsx index 003289fca..377bfbfb9 100644 --- a/app/views/ReportView/components/GenomicSummary/index.tsx +++ b/app/views/ReportView/components/GenomicSummary/index.tsx @@ -258,6 +258,10 @@ const GenomicSummary = ({ value: sigs, action: !isPrint ? () => history.push('mutation-signatures') : null, }, + { + term: 'Mutation Burden', + value: primaryBurden && primaryBurden.totalMutationsPerMb !== null && (!tmburMutBur?.adjustedTmb || tmburMutBur.tmbHidden === true) ? `${primaryBurden.totalMutationsPerMb} Mut/Mb` : null, + }, { term: `SV Burden (${primaryComparator ? primaryComparator.name : 'primary'})`, value: svBurden, diff --git a/app/views/ReportView/components/RapidSummary/index.tsx b/app/views/ReportView/components/RapidSummary/index.tsx index fe8546507..15ecd19eb 100644 --- a/app/views/ReportView/components/RapidSummary/index.tsx +++ b/app/views/ReportView/components/RapidSummary/index.tsx @@ -366,6 +366,10 @@ const RapidSummary = ({ term: 'Mutation Burden', value: primaryBurden && primaryBurden.totalMutationsPerMb !== null && (!tmburMutBur?.adjustedTmb || tmburMutBur.tmbHidden === true) ? `${primaryBurden.totalMutationsPerMb} Mut/Mb` : null, }, + { + term: 'Mutation Burden', + value: primaryBurden && primaryBurden.totalMutationsPerMb !== null && (!tmburMutBur?.adjustedTmb || tmburMutBur.tmbHidden === true) ? `${primaryBurden.totalMutationsPerMb} Mut/Mb` : null, + }, { term: 'SV Burden (POG Average)', value: svBurden,