Package | Description |
---|---|
com.dnanexus |
Provides low- and high-level bindings to the DNAnexus Platform.
|
Modifier and Type | Method and Description |
---|---|
ExecutableRunner<T> |
ExecutableRunner.addTags(Collection<String> tags)
Adds the specified tags to the resulting execution.
|
ExecutableRunner<T> |
ExecutableRunner.delayWorkspaceDestruction()
Delays the destruction of the workspace of the resulting job so it can be examined for
debugging.
|
ExecutableRunner<T> |
ExecutableRunner.dependsOn(DXDataObject dataObject)
Makes the resulting execution depend on the specified data object, so that the execution will
not begin until the data object is closed.
|
ExecutableRunner<T> |
ExecutableRunner.dependsOn(DXExecution execution)
Makes the resulting execution depend on the specified execution, so that the former will not
begin until the latter has successfully completed.
|
ExecutableRunner<T> |
ExecutableRunner.inFolder(String folder)
Deprecated.
Use
setFolder(String) instead |
ExecutableRunner<T> |
ExecutableRunner.inProject(DXProject project)
Deprecated.
Use
setProject(DXProject) instead |
ExecutableRunner<DXJob> |
DXApplet.newRun() |
ExecutableRunner<DXAnalysis> |
DXWorkflow.newRun() |
ExecutableRunner<T> |
DXExecutable.newRun()
Returns an object for creating a new run of this executable.
|
ExecutableRunner<T> |
ExecutableRunner.putAllProperties(Map<String,String> properties)
Sets the specified properties on the execution to be created.
|
ExecutableRunner<T> |
ExecutableRunner.putProperty(String key,
String value)
Sets the specified property on the execution to be created.
|
ExecutableRunner<T> |
ExecutableRunner.setDetails(Object details)
Sets the execution details to the JSON serialized value of the specified object.
|
ExecutableRunner<T> |
ExecutableRunner.setFolder(String folder)
Sets the folder in which the execution's outputs will be deposited.
|
ExecutableRunner<T> |
ExecutableRunner.setInput(Object inputObject)
Sets the input hash to the JSON serialized value of the specified object.
|
ExecutableRunner<T> |
ExecutableRunner.setName(String name)
Sets the name of the resulting execution.
|
ExecutableRunner<T> |
ExecutableRunner.setProject(DXProject project)
Sets the project context of the resulting execution.
|
ExecutableRunner<T> |
ExecutableRunner.setRawInput(com.fasterxml.jackson.databind.JsonNode inputHash)
Sets the input hash to the specified JSON node.
|
ExecutableRunner<T> |
ExecutableRunner.withDetails(Object details)
Deprecated.
Use
setDetails(Object) instead |
ExecutableRunner<T> |
ExecutableRunner.withInput(Object inputObject)
Deprecated.
Use
setInput(Object) instead |
ExecutableRunner<T> |
ExecutableRunner.withName(String name)
Deprecated.
Use
setName(String) instead |
ExecutableRunner<T> |
ExecutableRunner.withRawInput(com.fasterxml.jackson.databind.JsonNode inputHash)
Deprecated.
Use
setRawInput(JsonNode) instead |
Copyright © 2023. All Rights Reserved.