Skip to content

Commit a4275a8

Browse files
committed
- Merge branch 'develop' into release/v6.29.0
2 parents 2722da3 + ccd0ffd commit a4275a8

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

app/components/SummaryPrintTable/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const variantToStrings: Dictionary<string> = {
1818
cnv: 'CNV',
1919
smallMutation: 'Small Mutation',
2020
structuralVariant: 'Structural Variant',
21-
expression: 'Expression',
21+
expression: 'Expression Outlier',
2222
};
2323

2424
const SummaryPrintTable = ({
@@ -31,7 +31,7 @@ const SummaryPrintTable = ({
3131
{data.filter((key) => (key.value !== null && key.value !== '')).map(({ [labelKey]: label, [valueKey]: value }) => (
3232
<TableRow>
3333
<TableCell>
34-
<Typography variant="body2" fontWeight="bold">{variantTypes.includes(String(label)) ? variantToStrings[String(label)] : label}</Typography>
34+
<Typography variant="body2" fontWeight="bold">{variantTypes.includes(String(label)) ? `${variantToStrings[String(label)]}${Object.values(value).length > 1 ? 's' : ''}` : label}</Typography>
3535
</TableCell>
3636
<TableCell sx={{ paddingLeft: 1 }}>
3737
{renderValue ? renderValue(value) : value}

app/views/PrintView/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
.printbeta {
3535
&__logo {
36-
max-width: 150px;
36+
max-width: 250px;
3737
}
3838

3939
&__headers {

app/views/ReportView/components/GenomicSummary/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ const GenomicSummary = ({
254254
tCellCd8?.pedsScoreComment ? tCellCd8?.pedsScoreComment : null,
255255
},
256256
{
257-
term: 'Mutation Signature',
257+
term: 'Mutation Signatures',
258258
value: sigs,
259259
action: !isPrint ? () => history.push('mutation-signatures') : null,
260260
},

app/views/ReportView/components/RapidSummary/index.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -366,10 +366,6 @@ const RapidSummary = ({
366366
term: 'Mutation Burden',
367367
value: primaryBurden && primaryBurden.totalMutationsPerMb !== null && (!tmburMutBur?.adjustedTmb || tmburMutBur.tmbHidden === true) ? `${primaryBurden.totalMutationsPerMb} Mut/Mb` : null,
368368
},
369-
{
370-
term: 'Mutation Burden',
371-
value: primaryBurden && primaryBurden.totalMutationsPerMb !== null && (!tmburMutBur?.adjustedTmb || tmburMutBur.tmbHidden === true) ? `${primaryBurden.totalMutationsPerMb} Mut/Mb` : null,
372-
},
373369
{
374370
term: 'SV Burden (POG Average)',
375371
value: svBurden,

0 commit comments

Comments
 (0)