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

Fix result size bug in degree centrality

parent 2affb9ac
No related branches found
No related tags found
Loading
......@@ -119,7 +119,7 @@ export class LaunchAnalysisComponent implements OnInit, OnChanges {
parameters.include_non_approved_drugs = this.degreeIncludeNonApprovedDrugs;
parameters.ignore_non_seed_baits = !this.degreeIncludeViralNonSeeds;
parameters.max_deg = this.degreeMaxDeg;
parameters.result_size = this.closenessResultSize;
parameters.result_size = this.degreeResultSize;
} else if (this.algorithm === 'keypathwayminer') {
parameters.k = this.keypathwayminerK;
} else if (this.algorithm === 'multisteiner') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment