Skip to content

Commit

Permalink
Merge pull request #446 from bcgsc/feat/DEVSU-2239-remove-editable-mu…
Browse files Browse the repository at this point in the history
…tation-burden

DEVSU-2239 Add Mutation Burden back to Genomic Summary and Rapid Summary
  • Loading branch information
bnguyen-bcgsc authored Apr 2, 2024
2 parents d8929c8 + be3f520 commit c015908
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/components/TumourSummaryEdit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ const TumourSummaryEdit = ({
if (mutationBurden) {
setNewMutationBurdenData({
role: mutationBurden.role,
totalMutationsPerMb: mutationBurden.totalMutationsPerMb,
qualitySvCount: mutationBurden.qualitySvCount,
qualitySvPercentile: mutationBurden.qualitySvPercentile,
});
Expand Down
4 changes: 4 additions & 0 deletions app/views/ReportView/components/GenomicSummary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 4 additions & 0 deletions app/views/ReportView/components/RapidSummary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c015908

Please sign in to comment.