Skip to content

Commit

Permalink
feat: add Zscores to SmallMutation columnDefs
Browse files Browse the repository at this point in the history
DEVSU-2023
  • Loading branch information
kttkjl committed Oct 16, 2023
1 parent f33912f commit 5028c52
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/views/ReportView/components/SmallMutations/columnDefs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ const columnDefs: ColDef[] = [{
colId: 'primarySiteFoldChange',
valueGetter: 'data.gene.expressionVariants.primarySiteFoldChange',
hide: true,
}, {
headerName: 'Primary Site Z-Score',
colId: 'primarySiteZScore',
valueGetter: 'data.gene.expressionVariants.primarySiteZScore',
hide: true,
}, {
headerName: 'Expression (TPM)',
colId: 'tpm',
Expand All @@ -93,6 +98,11 @@ const columnDefs: ColDef[] = [{
colId: 'diseasekIQR',
valueGetter: 'data.gene.expressionVariants.diseasekIQR',
hide: true,
}, {
headerName: 'Disease Z-score',
colId: 'diseaseZScore',
valueGetter: 'data.gene.expressionVariants.diseaseZScore',
hide: true,
}, {
headerName: 'Actions',
colId: 'actions',
Expand Down

0 comments on commit 5028c52

Please sign in to comment.