File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed
components/SummaryPrintTable Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const variantToStrings: Dictionary<string> = {
18
18
cnv : 'CNV' ,
19
19
smallMutation : 'Small Mutation' ,
20
20
structuralVariant : 'Structural Variant' ,
21
- expression : 'Expression' ,
21
+ expression : 'Expression Outlier ' ,
22
22
} ;
23
23
24
24
const SummaryPrintTable = ( {
@@ -31,7 +31,7 @@ const SummaryPrintTable = ({
31
31
{ data . filter ( ( key ) => ( key . value !== null && key . value !== '' ) ) . map ( ( { [ labelKey ] : label , [ valueKey ] : value } ) => (
32
32
< TableRow >
33
33
< 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 >
35
35
</ TableCell >
36
36
< TableCell sx = { { paddingLeft : 1 } } >
37
37
{ renderValue ? renderValue ( value ) : value }
Original file line number Diff line number Diff line change 33
33
34
34
.printbeta {
35
35
& __logo {
36
- max-width : 150 px ;
36
+ max-width : 250 px ;
37
37
}
38
38
39
39
& __headers {
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ const GenomicSummary = ({
254
254
tCellCd8 ?. pedsScoreComment ? tCellCd8 ?. pedsScoreComment : null ,
255
255
} ,
256
256
{
257
- term : 'Mutation Signature ' ,
257
+ term : 'Mutation Signatures ' ,
258
258
value : sigs ,
259
259
action : ! isPrint ? ( ) => history . push ( 'mutation-signatures' ) : null ,
260
260
} ,
Original file line number Diff line number Diff line change @@ -366,10 +366,6 @@ const RapidSummary = ({
366
366
term : 'Mutation Burden' ,
367
367
value : primaryBurden && primaryBurden . totalMutationsPerMb !== null && ( ! tmburMutBur ?. adjustedTmb || tmburMutBur . tmbHidden === true ) ? `${ primaryBurden . totalMutationsPerMb } Mut/Mb` : null ,
368
368
} ,
369
- {
370
- term : 'Mutation Burden' ,
371
- value : primaryBurden && primaryBurden . totalMutationsPerMb !== null && ( ! tmburMutBur ?. adjustedTmb || tmburMutBur . tmbHidden === true ) ? `${ primaryBurden . totalMutationsPerMb } Mut/Mb` : null ,
372
- } ,
373
369
{
374
370
term : 'SV Burden (POG Average)' ,
375
371
value : svBurden ,
You can’t perform that action at this time.
0 commit comments