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

com.github.jmchilton.blend4j.galaxy.beans.ToolInputs 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.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