Skip to content
Snippets Groups Projects
Commit 204372f4 authored by Julian Matschinske's avatar Julian Matschinske
Browse files

Show scores, fix text

parent 2ff9c5d0
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,8 @@ export class AnalysisPanelComponent implements OnInit, OnChanges {
}));
await Promise.all(promises);
this.tableHasScores = ['trustrank', 'closeness', 'degree', 'quick', 'super'].indexOf(this.task.info.algorithm) !== -1;
this.tableHasScores = ['trustrank', 'closeness', 'degree', 'proximity', 'betweenness', 'quick', 'super']
.indexOf(this.task.info.algorithm) !== -1;
if (this.tableHasScores) {
this.toggleNormalization(true);
}
......
......@@ -309,9 +309,9 @@
</div>
<div class="media-content">
<div class="content">
<h6 class="is-6">About Degree Centrality</h6>
<h6 class="is-6">About Network Proximity</h6>
<p>
Degree Centrality uses the average minimum distance from the drug’s targets to all of the selected
Network Proximity uses the average minimum distance from the drug’s targets to all of the selected
seeds as a measure of proximity.
</p>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment