Skip to content

Commit

Permalink
Add info text to disease similarities scatter plot
Browse files Browse the repository at this point in the history
  • Loading branch information
nictru committed Jan 24, 2025
1 parent 5c99a21 commit cebeee0
Showing 1 changed file with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@
<mat-button-toggle value="heatmap">Heatmap</mat-button-toggle>
</mat-button-toggle-group>
</div>
@if (mode$() == 'heatmap') {
<app-info title="What do I see?">
<p>The heatmap is colored by the gene-wise hubness score. The gene-wise hubness score is calculated by dividing the
degree of the gene in the network by the number of possible edges.</p>
</app-info>
@switch (mode$()) {
@case ('heatmap') {
<app-info title="What do I see?">
<p>The heatmap is colored by the gene-wise hubness score. The gene-wise hubness score is calculated by dividing
the
degree of the gene in the network by the number of possible edges.</p>
</app-info>
}
@case ('scatter') {
<app-info title="What do I see?">
<p>Shown are Euclidean distances between the hubness scores in order to visualize similarities of networks in a
two-dimensional space.</p>
</app-info>
}
}
<div #plot style="width: 100%"></div>

0 comments on commit cebeee0

Please sign in to comment.