Skip to content

Commit

Permalink
Merge pull request #1283 from sagely1/AG-1347-csv-missing-zero-pvalues
Browse files Browse the repository at this point in the history
AG-1347 csv download missing values for zero pvalues
  • Loading branch information
sagely1 authored Feb 13, 2024
2 parents f00c8be + abd039e commit c7a7594
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 c7a7594

Please sign in to comment.