use of ca.corefacility.bioinformatics.irida.service.analysis.workspace.galaxy.AnalysisProvenanceServiceGalaxy in project irida by phac-nml.
the class AnalysisProvenanceServiceGalaxyTest method setUp.
@Before
public void setUp() {
this.galaxyHistoriesService = mock(GalaxyHistoriesService.class);
this.toolsClient = mock(ToolsClient.class);
this.jobsClient = mock(JobsClient.class);
this.provenanceService = new AnalysisProvenanceServiceGalaxy(galaxyHistoriesService, toolsClient, jobsClient);
}
use of ca.corefacility.bioinformatics.irida.service.analysis.workspace.galaxy.AnalysisProvenanceServiceGalaxy in project irida by phac-nml.
the class AnalysisExecutionServiceTestConfig method analysisProvenanceServiceGalaxy.
@Lazy
@Bean
public AnalysisProvenanceServiceGalaxy analysisProvenanceServiceGalaxy() {
final ToolsClient toolsClient = localGalaxy.getGalaxyInstanceAdmin().getToolsClient();
final JobsClient jobsClient = localGalaxy.getGalaxyInstanceAdmin().getJobsClient();
return new AnalysisProvenanceServiceGalaxy(galaxyHistoriesService, toolsClient, jobsClient);
}
Aggregations