diff --git a/src/app/components/analysis-panel/analysis-panel.component.ts b/src/app/components/analysis-panel/analysis-panel.component.ts index 0ea1547e21a404250ca802e242d69c04ee015586..62508010b4f8645297bf6012cd86121289169140 100644 --- a/src/app/components/analysis-panel/analysis-panel.component.ts +++ b/src/app/components/analysis-panel/analysis-panel.component.ts @@ -177,7 +177,6 @@ export class AnalysisPanelComponent implements OnInit, OnChanges, AfterViewInit if (this.task && this.task.info.done) { this.result = await this.netex.getTaskResult(this.token); - console.log(this.result) const nodeAttributes = this.result.nodeAttributes || {}; this.networkHandler.activeNetwork.seedMap = nodeAttributes.isSeed || {}; diff --git a/src/app/services/analysis/analysis.service.ts b/src/app/services/analysis/analysis.service.ts index 516a1195f7b123ee5745bd466dadcc66bc8305a5..4c696ff1359f08232293c2a47dba052af45066aa 100644 --- a/src/app/services/analysis/analysis.service.ts +++ b/src/app/services/analysis/analysis.service.ts @@ -258,7 +258,6 @@ export class AnalysisService { } async startAnalysis(algorithm, target: 'drug' | 'drug-target', parameters) { - console.log(parameters) if (!this.canLaunchTask()) { toast({ message: `You can only run ${MAX_TASKS} tasks at once. Please wait for one of them to finish or delete it from the task list.`,