Skip to content

Commit

Permalink
AG-1347 csv download missing values for zero pvalues
Browse files Browse the repository at this point in the history
  • Loading branch information
sagely1 committed Feb 12, 2024
1 parent f00c8be commit abd039e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1019,10 +1019,10 @@ export class GeneComparisonToolComponent implements OnInit, AVI, OnDestroy {
...baseRow,
...[
tissueName,
tissue?.logfc || '',
tissue?.ci_r || '',
tissue?.ci_l || '',
tissue?.adj_p_val || '',
tissue ? tissue.logfc : '',
tissue ? tissue.ci_r : '',
tissue ? tissue.ci_l : '',
tissue ? tissue.adj_p_val : '',
g.biodomains?.join(',') || '',
],
]);
Expand Down

0 comments on commit abd039e

Please sign in to comment.