Skip to content

Commit

Permalink
Merge pull request #362 from bcgsc/feat/DEVSU-2023-zscore-variantTabl…
Browse files Browse the repository at this point in the history
…e-toggle

[DEVSU-2023] add Zscores to SmallMutation
  • Loading branch information
kttkjl authored Oct 20, 2023
2 parents a3690fc + 04d19a9 commit c5da83a
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 c5da83a

Please sign in to comment.