diff --git a/src/app/components/analysis-panel/analysis-panel.component.ts b/src/app/components/analysis-panel/analysis-panel.component.ts index 1f577b9f405fec8399734af4621591ba01c596b7..1b5d6ae0cc5b14992b4ae675d3434e398b5ab638 100644 --- a/src/app/components/analysis-panel/analysis-panel.component.ts +++ b/src/app/components/analysis-panel/analysis-panel.component.ts @@ -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); } diff --git a/src/app/dialogs/launch-analysis/launch-analysis.component.html b/src/app/dialogs/launch-analysis/launch-analysis.component.html index 25154731e1ee3180e52b33d52f3d2e442ab81d3a..04521325e01aea76ae84362a4c779c57bcec1242 100644 --- a/src/app/dialogs/launch-analysis/launch-analysis.component.html +++ b/src/app/dialogs/launch-analysis/launch-analysis.component.html @@ -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>