Skip to content

Commit

Permalink
Merge branch 'develop' into feat/DEVSU-2193-print-report-styling
Browse files Browse the repository at this point in the history
  • Loading branch information
bnguyen-bcgsc authored Apr 2, 2024
2 parents f61be8b + c015908 commit 1ed286b
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 1ed286b

Please sign in to comment.