All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jmchilton.blend4j.toolshed.ToolShedInstanceImpl Maven / Gradle / Ivy

Go to download

blend4j is a JVM partial reimplemenation of the Python library bioblend (http://bioblend.readthedocs.org/en/latest/) for interacting with Galaxy, CloudMan, and BioCloudCentral.

There is a newer version: 0.2.0
Show newest version
package com.github.jmchilton.blend4j.toolshed;

import com.github.jmchilton.blend4j.galaxy.WebResourceFactory;

class ToolShedInstanceImpl implements ToolShedInstance {
  private WebResourceFactory webResourceFactory;
  
  ToolShedInstanceImpl(final WebResourceFactory webResourceFactory) {
    this.webResourceFactory = webResourceFactory; 
  }

  public RepositoriesClient getRepositoriesClient() {
    return new RepositoriesClientImpl(webResourceFactory);
  }

  public String getUrl() {
    return webResourceFactory.getUrl();
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy