public class JIPipeMergingDataBatch extends Object implements Comparable<JIPipeMergingDataBatch>
JIPipeDataBatch
used by JIPipeMergingAlgorithm
Constructor and Description |
---|
JIPipeMergingDataBatch(JIPipeGraphNode node)
Creates a new interface
|
JIPipeMergingDataBatch(JIPipeMergingDataBatch other)
Creates a copy
|
Modifier and Type | Method and Description |
---|---|
void |
addEmptySlot(JIPipeDataSlot slot)
Ensures that the specified slot is registered to the data batch
|
void |
addInputData(JIPipeDataSlot slot,
Collection<Integer> rowsToAdd)
Adds the data row of a given slot.
|
void |
addInputData(JIPipeDataSlot slot,
int row)
Adds the data row of a given slot.
|
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(List<JIPipeTextAnnotation> annotations,
JIPipeTextAnnotationMergeMode strategy)
Adds annotations to the merged annotation storage of this interface.
|
void |
addMergedTextAnnotations(Map<String,String> 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 data)
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 data,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode mergeStrategy)
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 data,
List<JIPipeTextAnnotation> additionalAnnotations,
JIPipeTextAnnotationMergeMode annotationMergeStrategy,
List<JIPipeDataAnnotation> additionalDataAnnotations,
JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy) |
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,
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 annotationMergeStrategy,
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
|
void |
addOutputData(String slotName,
JIPipeVirtualData data)
Writes output data into the provided slot
Please note that annotations should be set up till this point
|
void |
addOutputData(String slotName,
JIPipeVirtualData data,
JIPipeTextAnnotationMergeMode annotationMergeStrategy,
List<JIPipeTextAnnotation> additionalAnnotations)
Writes output data into the provided slot
Please note that annotations should be set up till this point
|
void |
addOutputData(String slotName,
JIPipeVirtualData data,
List<JIPipeTextAnnotation> additionalAnnotations)
Writes output data into the provided slot
Please note that annotations should be set up till this point
|
int |
compareTo(JIPipeMergingDataBatch 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
|
Set<Integer> |
getInputRows(JIPipeDataSlot slot)
Returns the row indices that belong to this data interface
|
Set<Integer> |
getInputRows(String slot)
Returns the row indices that belong to this data interface
|
Map<JIPipeDataSlot,Set<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<JIPipeTextAnnotation> |
getOriginalAnnotations(JIPipeDataSlot slot)
Gets the original annotations of given slot
|
List<JIPipeTextAnnotation> |
getOriginalAnnotations(String slotName)
Gets the original annotations of given slot
|
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<JIPipeVirtualData> |
getVirtualInputData(JIPipeDataSlot slot)
Gets stored data from an input slot
|
List<JIPipeVirtualData> |
getVirtualInputData(String slotName)
Gets stored data from an input slot
|
boolean |
isEmpty()
Returns true if no data is referenced
|
boolean |
isIncomplete()
Returns true if there is at least one slot that has no rows attached to it
|
boolean |
isSingle()
Returns true if each slot only has one row
|
void |
removeMergedTextAnnotation(String info)
Removes an annotation of provided type
|
void |
setInputData(JIPipeDataSlot slot,
int row)
Sets the input slot to only one row
|
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 JIPipeMergingDataBatch(JIPipeGraphNode node)
node
- The algorithmpublic JIPipeMergingDataBatch(JIPipeMergingDataBatch other)
other
- the originalpublic JIPipeGraphNode getNode()
public Map<JIPipeDataSlot,Set<Integer>> getInputSlotRows()
public void addInputData(JIPipeDataSlot slot, int row)
slot
- the data slotrow
- the rowpublic void addInputData(JIPipeDataSlot slot, Collection<Integer> rowsToAdd)
slot
- the data slotrowsToAdd
- the rows to addpublic void setInputData(JIPipeDataSlot slot, int row)
slot
- the slotrow
- the rowpublic void addMergedDataAnnotation(JIPipeDataAnnotation annotation, JIPipeDataAnnotationMergeMode strategy)
annotation
- added annotation. Cannot be null.public void addMergedDataAnnotations(Collection<JIPipeDataAnnotation> annotations, JIPipeDataAnnotationMergeMode strategy)
annotations
- added annotationspublic void addMergedTextAnnotations(Map<String,String> annotations, JIPipeTextAnnotationMergeMode strategy)
annotations
- the annotationsstrategy
- strategy to apply on merging existing valuespublic void addMergedTextAnnotations(List<JIPipeTextAnnotation> annotations, JIPipeTextAnnotationMergeMode strategy)
annotations
- the annotationsstrategy
- strategy to apply on merging existing valuespublic <T extends JIPipeData> List<T> getInputData(String slotName, Class<T> dataClass, JIPipeProgressInfo progressInfo)
T
- Data typeslotName
- The slot namedataClass
- The data type that should be returnedprogressInfo
- data access progresspublic List<JIPipeVirtualData> getVirtualInputData(String slotName)
slotName
- The slot namepublic <T extends JIPipeData> List<T> getInputData(JIPipeDataSlot slot, Class<T> dataClass, JIPipeProgressInfo progressInfo)
T
- Data typeslot
- The slotdataClass
- The data type that should be returnedprogressInfo
- data access progresspublic List<JIPipeVirtualData> getVirtualInputData(JIPipeDataSlot slot)
slot
- The slotpublic Set<Integer> getInputRows(String slot)
slot
- slot namepublic Set<Integer> getInputRows(JIPipeDataSlot slot)
slot
- slotpublic 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 removeMergedTextAnnotation(String info)
info
- removed annotationpublic 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
- data storage progresspublic void addOutputData(String slotName, JIPipeVirtualData data)
slotName
- Slot namedata
- Added datapublic void addOutputData(String slotName, JIPipeData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeProgressInfo progressInfo)
slotName
- Slot namedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesprogressInfo
- data storage progresspublic void addOutputData(String slotName, JIPipeVirtualData data, List<JIPipeTextAnnotation> additionalAnnotations)
slotName
- Slot namedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onespublic void addOutputData(String slotName, JIPipeData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode annotationMergeStrategy, JIPipeProgressInfo progressInfo)
slotName
- Slot namedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesprogressInfo
- data storage progresspublic void addOutputData(String slotName, JIPipeVirtualData data, JIPipeTextAnnotationMergeMode annotationMergeStrategy, List<JIPipeTextAnnotation> additionalAnnotations)
slotName
- Slot namedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onespublic void addOutputData(JIPipeDataSlot slot, JIPipeVirtualData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode annotationMergeStrategy, List<JIPipeDataAnnotation> additionalDataAnnotations, JIPipeDataAnnotationMergeMode dataAnnotationMergeStrategy)
public void addOutputData(JIPipeDataSlot slot, JIPipeData data, JIPipeProgressInfo progressInfo)
slot
- Slot instancedata
- Added dataprogressInfo
- data storage progresspublic void addOutputData(JIPipeDataSlot slot, JIPipeVirtualData data)
slot
- Slot instancedata
- Added datapublic 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, 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, 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
- data storage progresspublic void addOutputData(JIPipeDataSlot slot, JIPipeVirtualData data, List<JIPipeTextAnnotation> additionalAnnotations, JIPipeTextAnnotationMergeMode mergeStrategy)
slot
- Slot instancedata
- Added dataadditionalAnnotations
- Annotations that are added additionally to the merged onesmergeStrategy
- how annotations should be mergedpublic List<JIPipeTextAnnotation> getOriginalAnnotations(JIPipeDataSlot slot)
slot
- the slotpublic List<JIPipeTextAnnotation> getOriginalAnnotations(String slotName)
slotName
- the slotpublic List<JIPipeDataAnnotation> getOriginalDataAnnotations(JIPipeDataSlot slot)
slot
- the slotpublic List<JIPipeDataAnnotation> getOriginalDataAnnotations(String slotName)
slotName
- the slotpublic boolean isEmpty()
public boolean isIncomplete()
public boolean isSingle()
public 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 compareTo(JIPipeMergingDataBatch o)
compareTo
in interface Comparable<JIPipeMergingDataBatch>
public void addEmptySlot(JIPipeDataSlot slot)
slot
- the slotCopyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.