Skip to content

Commit

Permalink
fix: Convert pval and qval to heatmap (#123)
Browse files Browse the repository at this point in the history
This PR converts pval and qval in the transcripts view of the diffexp
report from bar plots to heatmaps.

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **New Features**
- Enhanced visualization of statistical values with heatmap
representations for `pval` and `qval` in both `transcripts` and
`genes_aggregated` datasets.
	- Updated domain values for improved clarity in significance levels.

These changes provide a more detailed and visually informative way to
interpret data significance.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
fxwiegand authored Oct 17, 2024
1 parent 7b2767c commit 478c759
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions workflow/resources/datavzrd/diffexp-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,18 +211,28 @@ views:
url: "http://www.ensembl.org/Homo_sapiens/Gene/Summary?g={target_id}"
pval:
plot:
bars:
heatmap:
scale: linear
range:
- "#a1d99b"
- "white"
- "#fdae6b"
domain:
- 0.0
- 1.0
- 0
- 0.05
- 0.25
qval:
plot:
bars:
heatmap:
scale: linear
range:
- "#a1d99b"
- "white"
- "#fdae6b"
domain:
- 0.0
- 1.0
- 0
- 0.05
- 0.25
test_stat:
display-mode: hidden
rss:
Expand Down

0 comments on commit 478c759

Please sign in to comment.