File tree 1 file changed +23
-10
lines changed
app/components/TumourSummaryEdit
1 file changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ const TumourSummaryEdit = ({
75
75
if ( mutationBurden ) {
76
76
setNewMutationBurdenData ( {
77
77
totalMutationsPerMb : mutationBurden . totalMutationsPerMb ,
78
+ qualitySvCount : mutationBurden . qualitySvCount ,
78
79
} ) ;
79
80
}
80
81
} , [ mutationBurden ] ) ;
@@ -326,16 +327,28 @@ const TumourSummaryEdit = ({
326
327
const mutBurDataSection = useMemo ( ( ) => {
327
328
if ( newMutationBurdenData ) {
328
329
return (
329
- < TextField
330
- className = "tumour-dialog__text-field"
331
- label = "Mutation Burden (Mut/Mb)"
332
- value = { newMutationBurdenData . totalMutationsPerMb }
333
- name = "totalMutationsPerMb"
334
- onChange = { handleMutationBurdenChange }
335
- variant = "outlined"
336
- fullWidth
337
- type = "number"
338
- />
330
+ < >
331
+ < TextField
332
+ className = "tumour-dialog__text-field"
333
+ label = "Mutation Burden (Mut/Mb)"
334
+ value = { newMutationBurdenData . totalMutationsPerMb }
335
+ name = "totalMutationsPerMb"
336
+ onChange = { handleMutationBurdenChange }
337
+ variant = "outlined"
338
+ fullWidth
339
+ type = "number"
340
+ />
341
+ < TextField
342
+ className = "tumour-dialog__text-field"
343
+ label = "SV Burden (POG average)"
344
+ value = { newMutationBurdenData . qualitySvCount }
345
+ name = "qualitySvCount"
346
+ onChange = { handleMutationBurdenChange }
347
+ variant = "outlined"
348
+ fullWidth
349
+ type = "number"
350
+ />
351
+ </ >
339
352
) ;
340
353
}
341
354
return null ;
You can’t perform that action at this time.
0 commit comments