Package com.dnanexus
Class DXWorkflow.Stage
- java.lang.Object
-
- com.dnanexus.DXWorkflow.Stage
-
- Enclosing class:
- DXWorkflow
public static class DXWorkflow.Stage extends Object
A workflow stage.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()com.fasterxml.jackson.databind.node.ObjectNodegetInputReference(String inputName)Create a link to an input field.com.fasterxml.jackson.databind.JsonNodegetOutputReference(String outputName)Create a link to an output field.
-
-
-
Method Detail
-
getId
public String getId()
-
getOutputReference
public com.fasterxml.jackson.databind.JsonNode getOutputReference(String outputName)
Create a link to an output field.This is used in workflows, to link results between stages.
- Parameters:
outputName- name of an output field- Returns:
- JSON representation of a link. Can be used as an input to a workflow stage.
-
getInputReference
public com.fasterxml.jackson.databind.node.ObjectNode getInputReference(String inputName)
Create a link to an input field.This is used in workflows, to link results between stages.
- Parameters:
inputName- name of an input field- Returns:
- JSON representation of a link. Can be used as an input to a workflow stage.
-
-