public class JIPipeDataBatch extends Object implements Comparable<JIPipeDataBatch>
Constructor and Description |
---|
JIPipeDataBatch(JIPipeDataBatch other)
Creates a copy
|
JIPipeDataBatch(JIPipeGraphNode node)
Creates a new interface
|
Modifier and Type | Method and Description |
---|---|
void |
addMergedDataAnnotation(JIPipeDataAnnotation annotation,
JIPipeDataAnnotationMergeMode strategy)
Adds an annotation to the annotation list
|
void |
addMergedDataAnnotations(Collection<JIPipeDataAnnotation> annotations,
JIPipeDataAnnotationMergeMode strategy)
Adds annotations to the annotation list
|
void |
addMergedTextAnnotation(JIPipeTextAnnotation annotation,
JIPipeTextAnnotationMergeMode strategy)
Adds an annotation to the annotation list
|
void |
addMergedTextAnnotations(Collection<JIPipeTextAnnotation> annotations,
JIPipeTextAnnotationMergeMode strategy)
Adds annotations to the merged annotation storage of this interface.
|
void |
addOutputData(JIPipeDataSlot slot,
JIPipeData data,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations that are added to all annotations should be set up till this point
|
void |
addOutputData(JIPipeDataSlot slot,
JIPipeData data,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode mergeStrategy,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations that are added to all annotations should be set up till this point
|
void |
addOutputData(JIPipeDataSlot slot,
JIPipeData data,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode mergeStrategy,
List<JIPipeDataAnnotation> additionalDataAnnotations,
JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations that are added to all annotations should be set up till this point
|
void |
addOutputData(JIPipeDataSlot slot,
JIPipeVirtualData virtualData,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode mergeStrategy,
List<JIPipeDataAnnotation> additionalDataAnnotations,
JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations that are added to all annotations should be set up till this point
|
void |
addOutputData(String slotName,
JIPipeData data,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations should be set up till this point
|
void |
addOutputData(String slotName,
JIPipeData data,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode mergeStrategy,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations should be set up till this point
|
void |
addOutputData(String slotName,
JIPipeData data,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode mergeStrategy,
List<JIPipeDataAnnotation> additionalDataAnnotations,
JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy,
JIPipeProgressInfo progressInfo)
Writes output data into the provided slot
Please note that annotations should be set up till this point
|
int |
compareTo(JIPipeDataBatch o) |
<T extends JIPipeData> |
getInputData(JIPipeDataSlot slot,
Class<T> dataClass,
JIPipeProgressInfo progressInfo)
Gets stored data from an input slot
|
<T extends JIPipeData> |
getInputData(String slotName,
Class<T> dataClass,
JIPipeProgressInfo progressInfo)
Gets stored data from an input slot
|
int |
getInputRow(JIPipeDataSlot slot)
Returns the row of the data in the original data slot
|
int |
getInputRow(String slot)
Returns the row of the data in the original data slot
|
Map<JIPipeDataSlot,Integer> |
getInputSlotRows()
Raw access to all data stored in the batch
|
JIPipeDataAnnotation |
getMergedDataAnnotation(String name)
Returns a merged annotation
|
Map<String,JIPipeDataAnnotation> |
getMergedDataAnnotations()
Gets the list of annotations.
|
JIPipeTextAnnotation |
getMergedTextAnnotation(String name)
Returns a merged annotation
|
Map<String,JIPipeTextAnnotation> |
getMergedTextAnnotations()
Gets the list of annotations.
|
JIPipeGraphNode |
getNode() |
List<JIPipeDataAnnotation> |
getOriginalDataAnnotations(JIPipeDataSlot slot)
Gets the original annotations of given slot
|
List<JIPipeDataAnnotation> |
getOriginalDataAnnotations(String slotName)
Gets the original annotations of given slot
|
List<JIPipeTextAnnotation> |
getOriginalTextAnnotations(JIPipeDataSlot slot)
Gets the original annotations of given slot
|
List<JIPipeTextAnnotation> |
getOriginalTextAnnotations(String slotName)
Gets the original annotations of given slot
|
void |
removeMergedDataAnnotation(String name)
Removes a data annotation
|
void |
removeMergedTextAnnotation(String name)
Removes an annotation of provided type
|
void |
setInputData(JIPipeDataSlot slot,
int row)
Sets the data row of a given slot.
|
void |
setMergedDataAnnotations(Map<String,JIPipeDataAnnotation> dataAnnotations) |
void |
setMergedTextAnnotations(Map<String,JIPipeTextAnnotation> annotations) |
JIPipeDataSlot |
toDummySlot(JIPipeDataSlotInfo info,
JIPipeGraphNode node,
JIPipeDataSlot sourceSlot)
Creates a new dummy slot that contains the data of one input slot and the annotations of this batch
|
public JIPipeDataBatch(JIPipeGraphNode node)
node
- The algorithmpublic JIPipeDataBatch(JIPipeDataBatch other)
other
- the originalpublic JIPipeGraphNode getNode()
public List<JIPipeTextAnnotation> getOriginalTextAnnotations(JIPipeDataSlot slot)
slot
- the slotpublic List<JIPipeTextAnnotation> getOriginalTextAnnotations(String slotName)
slotName
- the slotpublic List<JIPipeDataAnnotation> getOriginalDataAnnotations(JIPipeDataSlot slot)
slot
- the slotpublic List<JIPipeDataAnnotation> getOriginalDataAnnotations(String slotName)
slotName
- the slotpublic Map<JIPipeDataSlot,Integer> getInputSlotRows()
public void setInputData(JIPipeDataSlot slot, int row)
slot
- the data slotrow
- the rowpublic void addMergedTextAnnotations(Collection<JIPipeTextAnnotation> annotations, JIPipeTextAnnotationMergeMode strategy)
annotations
- the annotationsstrategy
- strategy to apply on merging existing valuespublic <T extends JIPipeData> T getInputData(String slotName, Class<T> dataClass, JIPipeProgressInfo progressInfo)
T
- Data typeslotName
- The slot namedataClass
- The data type that should be returnedprogressInfo
- storage progresspublic <T extends JIPipeData> T getInputData(JIPipeDataSlot slot, Class<T> dataClass, JIPipeProgressInfo progressInfo)
T
- Data typeslot
- The slotdataClass
- The data type that should be returnedprogressInfo
- storage progresspublic Map<String,JIPipeTextAnnotation> getMergedTextAnnotations()
public void setMergedTextAnnotations(Map<String,JIPipeTextAnnotation> annotations)
public Map<String,JIPipeDataAnnotation> getMergedDataAnnotations()
public void setMergedDataAnnotations(Map<String,JIPipeDataAnnotation> dataAnnotations)
public void addMergedTextAnnotation(JIPipeTextAnnotation annotation, JIPipeTextAnnotationMergeMode strategy)
annotation
- added annotation. Cannot be null.public void addMergedDataAnnotation(JIPipeDataAnnotation annotation, JIPipeDataAnnotationMergeMode strategy)
annotation
- added annotation. Cannot be null.public void addMergedDataAnnotations(Collection<JIPipeDataAnnotation> annotations, JIPipeDataAnnotationMergeMode strategy)
annotations
- added annotationspublic void removeMergedTextAnnotation(String name)
name
- removed annotationpublic void removeMergedDataAnnotation(String name)
name
- the namepublic JIPipeTextAnnotation getMergedTextAnnotation(String name)
name
- name of the annotationpublic JIPipeDataAnnotation getMergedDataAnnotation(String name)
name
- name of the annotationpublic void addOutputData(String slotName, JIPipeData data, JIPipeProgressInfo progressInfo)
slotName
- Slot namedata
- Added dataprogressInfo
- storage progresspublic void addOutputData(String slotName, JIPipeData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode mergeStrategy, JIPipeProgressInfo progressInfo)
slotName
- Slot namedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesmergeStrategy
- how annotations should be mergedprogressInfo
- storage progresspublic void addOutputData(String slotName, JIPipeData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode mergeStrategy, List<JIPipeDataAnnotation> additionalDataAnnotations, JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy, JIPipeProgressInfo progressInfo)
slotName
- Slot namedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesmergeStrategy
- how annotations should be mergedprogressInfo
- storage progresspublic void addOutputData(JIPipeDataSlot slot, JIPipeData data, JIPipeProgressInfo progressInfo)
slot
- Slot instancedata
- Added dataprogressInfo
- storage progresspublic void addOutputData(JIPipeDataSlot slot, JIPipeData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode mergeStrategy, JIPipeProgressInfo progressInfo)
slot
- Slot instancedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesmergeStrategy
- how annotations should be mergedprogressInfo
- storage progresspublic void addOutputData(JIPipeDataSlot slot, JIPipeData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode mergeStrategy, List<JIPipeDataAnnotation> additionalDataAnnotations, JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy, JIPipeProgressInfo progressInfo)
slot
- Slot instancedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesmergeStrategy
- how annotations should be mergedprogressInfo
- storage progresspublic void addOutputData(JIPipeDataSlot slot, JIPipeVirtualData virtualData, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode mergeStrategy, List<JIPipeDataAnnotation> additionalDataAnnotations, JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy, JIPipeProgressInfo progressInfo)
slot
- Slot instancevirtualData
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesmergeStrategy
- how annotations should be mergedprogressInfo
- storage progresspublic JIPipeDataSlot toDummySlot(JIPipeDataSlotInfo info, JIPipeGraphNode node, JIPipeDataSlot sourceSlot)
info
- info of the new slotnode
- the node that will own the new slotsourceSlot
- the source slotpublic int getInputRow(String slot)
slot
- the slot namepublic int getInputRow(JIPipeDataSlot slot)
slot
- the slotpublic int compareTo(JIPipeDataBatch o)
compareTo
in interface Comparable<JIPipeDataBatch>
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.