use of ubic.gemma.core.tasks.analysis.coexp.LinkAnalysisTaskCommand in project Gemma by PavlidisLab.
the class LinkAnalysisController method run.
public String run(Long id) {
/* this 'run' method is exported in the spring-beans.xml */
ExpressionExperiment ee = expressionExperimentService.load(id);
if (ee == null) {
throw new IllegalArgumentException("Cannot access experiment with id=" + id);
}
experimentReportService.evictFromCache(id);
LinkAnalysisConfig lac = new LinkAnalysisConfig();
FilterConfig fc = new FilterConfig();
LinkAnalysisTaskCommand cmd = new LinkAnalysisTaskCommand(ee, lac, fc);
return taskRunningService.submitRemoteTask(cmd);
}
Aggregations