Skip to content

Commit

Permalink
fix: Move signed_pi_value_* columns into detail mode that dont includ…
Browse files Browse the repository at this point in the history
…e the primary variable (#110)

This PR moves all signed_pi_value columns into detail mode that dont
include the primary variable.
  • Loading branch information
fxwiegand authored Aug 22, 2024
1 parent 1fe8c2c commit a159b4c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion workflow/resources/datavzrd/diffexp-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ views:
display-mode: hidden
regex('qval_.+'):
display-mode: hidden
regex('signed_pi_value_.+'):
?f"regex('signed_pi_value_{params.primary_variable}.+')":
display-mode: normal
plot:
heatmap:
Expand All @@ -147,6 +147,19 @@ views:
- -1
- 0
- 1
?f"regex('signed_pi_value_(?!{params.primary_variable}).+')":
display-mode: detail
plot:
heatmap:
scale: linear
range:
- "#e6550d"
- "white"
- "#6baed6"
domain:
- -1
- 0
- 1
?f"regex('^b_{params.primary_variable}(?!.*_se$)')":
plot:
heatmap:
Expand Down

0 comments on commit a159b4c

Please sign in to comment.