public abstract class JIPipeMergingAlgorithm extends JIPipeParameterSlotAlgorithm implements JIPipeParallelizedAlgorithm, JIPipeDataBatchAlgorithm, JIPipeAdaptiveParametersAlgorithm
JIPipeAlgorithm
that applies a similar algorithm to JIPipeIteratingAlgorithm
, but does create JIPipeMergingDataBatch
instead.
This algorithm instead just groups the data based on the annotations and passes those groups to
the runIteration() function. This is useful for merging algorithms.
Please note that the single-input case will still group the data into multiple groups, or just one group if no grouping could be acquired.JIPipeAlgorithm.StateSerializer
JIPipeGraphNode.BaseDirectoryChangedEvent, JIPipeGraphNode.Serializer
JIPipeParameterCollection.ParameterChangedEvent, JIPipeParameterCollection.ParameterStructureChangedEvent, JIPipeParameterCollection.ParameterUIChangedEvent
SLOT_PARAMETERS
Constructor and Description |
---|
JIPipeMergingAlgorithm(JIPipeMergingAlgorithm other)
Copies the algorithm
|
JIPipeMergingAlgorithm(JIPipeNodeInfo info)
Creates a new instance
|
JIPipeMergingAlgorithm(JIPipeNodeInfo info,
JIPipeSlotConfiguration slotConfiguration)
Creates a new instance
|
Modifier and Type | Method and Description |
---|---|
List<JIPipeMergingDataBatch> |
generateDataBatchesDryRun(List<JIPipeInputDataSlot> slots,
JIPipeProgressInfo progressInfo)
Generates data batches.
|
JIPipeAdaptiveParameterSettings |
getAdaptiveParameterSettings() |
JIPipeMergingAlgorithmDataBatchGenerationSettings |
getDataBatchGenerationSettings() |
JIPipeDataBatchGenerationSettings |
getGenerationSettingsInterface()
Returns the batch generation settings as interface
|
Set<String> |
getIgnoredAnnotationColumns()
Returns annotation types that should be ignored by the internal logic.
|
int |
getParallelizationBatchSize()
Returns how many threads the actual algorithm requires.
|
boolean |
isParallelizationEnabled() |
boolean |
isParameterUIVisible(JIPipeParameterTree tree,
JIPipeParameterAccess access)
Allows to override the visibility of parameters inside the UI
|
boolean |
isParameterUIVisible(JIPipeParameterTree tree,
JIPipeParameterCollection subParameter)
Allows to override the visibility of sub-parameters inside the UI
|
protected abstract void |
runIteration(JIPipeMergingDataBatch dataBatch,
JIPipeProgressInfo progressInfo)
Runs code on one data row
|
void |
runParameterSet(JIPipeProgressInfo progressInfo,
List<JIPipeTextAnnotation> parameterAnnotations)
Runs a parameter set iteration
|
protected void |
runPassThrough(JIPipeProgressInfo progressInfo,
JIPipeMergingDataBatch dataBatch)
A pass-through variant for merging algorithms.
|
void |
setParallelizationEnabled(boolean parallelizationEnabled)
User-defined parameter to control if parallelization is enabled
|
boolean |
supportsParallelization()
Indicates to the algorithm base implementation if parallelization is supported.
|
getDataInputSlotCount, getDataInputSlots, getFirstInputSlot, getNonParameterInputSlots, getParameterSlot, getParameterSlotAlgorithmSettings, run
canAutoPassThrough, canPassThrough, getStateId, getThreadPool, isEnabled, isPassThrough, isPostprocessor, isPreprocessor, loadExample, reportValidity, runPassThrough, setEnabled, setPassThrough, setThreadPool
canUserDelete, clearLocations, clearSlotData, copySlotConfiguration, duplicate, fromJson, fromJsonNode, getAliasIdInParentGraph, getBaseDirectory, getCategory, getCompartmentDisplayName, getCompartmentUUIDInGraphAsString, getCompartmentUUIDInParentGraph, getCustomDescription, getDependencies, getDisplayName, getEventBus, getFirstOutputSlot, getInfo, getInputSlot, getInputSlotMap, getInputSlotOrder, getInputSlots, getInputSlotsWithRole, getInternalStoragePath, getLastInputSlot, getLastOutputSlot, getLocations, getLocationWithin, getName, getNewScratch, getOpenInputSlots, getOutputSlot, getOutputSlotMap, getOutputSlots, getOutputSlotsWithRole, getParentGraph, getProjectCompartment, getProjectDirectory, getScratchBaseDirectory, getSlotConfiguration, getStoragePath, getUUIDInParentGraph, hasInputSlot, hasOutputSlot, isBookmarked, isVisibleIn, onDeserialized, onParameterChanged, onParameterStructureChanged, onParameterUIChanged, onSlotConfigurationChanged, onSlotConnected, onSlotDisconnected, registerSubParameter, renderInputSlots, renderOutputSlots, setAllSlotsVirtual, setBaseDirectory, setBookmarked, setCustomDescription, setCustomName, setInfo, setInternalStoragePath, setLocations, setLocationWithin, setLocationWithin, setParentGraph, setProjectDirectory, setScratchBaseDirectory, setSlotConfiguration, setStoragePath, toggleSlot, toJson, triggerSlotsChangedEvent, updateGraphNodeSlots, updateSlotInheritance
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
generateValidityReport
addParameterChangeListener, addParameterChangeListener, getContextActions, getParameter, getParameterAccess, setParameter, triggerParameterChange, triggerParameterStructureChange, triggerParameterUIChange
public JIPipeMergingAlgorithm(JIPipeNodeInfo info, JIPipeSlotConfiguration slotConfiguration)
info
- Algorithm infoslotConfiguration
- Slot configuration overridepublic JIPipeMergingAlgorithm(JIPipeNodeInfo info)
info
- Algorithm infopublic JIPipeMergingAlgorithm(JIPipeMergingAlgorithm other)
other
- The originalpublic JIPipeDataBatchGenerationSettings getGenerationSettingsInterface()
JIPipeDataBatchAlgorithm
getGenerationSettingsInterface
in interface JIPipeDataBatchAlgorithm
public Set<String> getIgnoredAnnotationColumns()
public List<JIPipeMergingDataBatch> generateDataBatchesDryRun(List<JIPipeInputDataSlot> slots, JIPipeProgressInfo progressInfo)
JIPipeDataBatchAlgorithm
generateDataBatchesDryRun
in interface JIPipeDataBatchAlgorithm
slots
- the data slotsprogressInfo
- the progressprotected void runPassThrough(JIPipeProgressInfo progressInfo, JIPipeMergingDataBatch dataBatch)
progressInfo
- progress infodataBatch
- the data batchpublic void runParameterSet(JIPipeProgressInfo progressInfo, List<JIPipeTextAnnotation> parameterAnnotations)
JIPipeParameterSlotAlgorithm
runParameterSet
in class JIPipeParameterSlotAlgorithm
progressInfo
- progress info from the runparameterAnnotations
- parameter annotationsprotected abstract void runIteration(JIPipeMergingDataBatch dataBatch, JIPipeProgressInfo progressInfo)
dataBatch
- The data interfaceprogressInfo
- the progress from the runpublic boolean supportsParallelization()
JIPipeParallelizedAlgorithm
supportsParallelization
in interface JIPipeParallelizedAlgorithm
public int getParallelizationBatchSize()
JIPipeParallelizedAlgorithm
getParallelizationBatchSize
in interface JIPipeParallelizedAlgorithm
public boolean isParallelizationEnabled()
isParallelizationEnabled
in interface JIPipeParallelizedAlgorithm
public void setParallelizationEnabled(boolean parallelizationEnabled)
JIPipeParallelizedAlgorithm
setParallelizationEnabled
in interface JIPipeParallelizedAlgorithm
parallelizationEnabled
- if parallelization is enabledpublic boolean isParameterUIVisible(JIPipeParameterTree tree, JIPipeParameterCollection subParameter)
JIPipeParameterCollection
isParameterUIVisible
in interface JIPipeParameterCollection
isParameterUIVisible
in class JIPipeParameterSlotAlgorithm
tree
- the parameter tree that is used to access this parametersubParameter
- a sub parameterpublic boolean isParameterUIVisible(JIPipeParameterTree tree, JIPipeParameterAccess access)
JIPipeParameterCollection
isParameterUIVisible
in interface JIPipeParameterCollection
isParameterUIVisible
in class JIPipeAlgorithm
tree
- the parameter tree that is used to access this parameteraccess
- the parameterpublic JIPipeMergingAlgorithmDataBatchGenerationSettings getDataBatchGenerationSettings()
public JIPipeAdaptiveParameterSettings getAdaptiveParameterSettings()
getAdaptiveParameterSettings
in interface JIPipeAdaptiveParametersAlgorithm
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.