com.github.jmchilton.blend4j.galaxy.beans.ToolInputs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blend4j Show documentation
Show all versions of blend4j Show documentation
blend4j is a JVM partial reimplemenation of the Python library bioblend (http://bioblend.readthedocs.org/en/latest/) for interacting with Galaxy, CloudMan, and BioCloudCentral.
package com.github.jmchilton.blend4j.galaxy.beans;
import java.util.Map;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
public class ToolInputs {
private String toolId;
private String historyId;
private Map inputs;
public ToolInputs(String toolId, Map inputs) {
this.toolId = toolId;
this.inputs = inputs;
}
public void setHistoryId(String historyId) {
this.historyId = historyId;
}
@JsonProperty("tool_id")
public String getToolId() {
return toolId;
}
@JsonProperty("inputs")
public Map getInputs() {
return inputs;
}
@JsonProperty("history_id")
public String getHistoryId() {
return historyId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy