Skip to content
Snippets Groups Projects
Commit de16c9f4 authored by AndiMajore's avatar AndiMajore
Browse files

fixed node handover for super start

parent d5a83f31
Branches
Tags
No related merge requests found
......@@ -232,7 +232,7 @@ export class AnalysisService {
licenced: config.licencedDatasets,
config: config,
input_network: network,
seeds: isSuper ? network.nodes.filter(n => n.drugstoneId && n.drugstoneId[0] === 'p').map(n => n.id) : this.getSelection().map((i) => i.id),
seeds: isSuper ? network.nodes.filter(n => n.drugstoneId && n.drugstoneType === 'protein').map(n => n.id) : this.getSelection().map((i) => i.id),
};
const resp = await this.http.post<any>(`${environment.backend}task/`, {
algorithm: isSuper ? 'super' : 'quick',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment