Skip to content

Commit

Permalink
* fix findability
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruman Gerst committed Mar 14, 2024
1 parent 4a7741d commit 17055d4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.hkijena.jipipe.api.annotation.JIPipeTextAnnotation;
import org.hkijena.jipipe.api.data.JIPipeData;
import org.hkijena.jipipe.api.nodes.*;
import org.hkijena.jipipe.api.nodes.categories.AnnotationsNodeTypeCategory;
import org.hkijena.jipipe.api.nodes.categories.DataSourceNodeTypeCategory;
import org.hkijena.jipipe.api.nodes.categories.MiscellaneousNodeTypeCategory;
import org.hkijena.jipipe.api.nodes.iterationstep.JIPipeIterationContext;
Expand All @@ -37,6 +38,7 @@
"all annotations of the data row. You can also add a string representation of the data.")
@ConfigureJIPipeNode(nodeTypeCategory = DataSourceNodeTypeCategory.class)
@AddJIPipeNodeAlias(nodeTypeCategory = MiscellaneousNodeTypeCategory.class, aliasName = "Annotations to table")
@AddJIPipeNodeAlias(nodeTypeCategory = AnnotationsNodeTypeCategory.class, aliasName = "Annotations to table")
@AddJIPipeInputSlot(value = JIPipeData.class, slotName = "Input", create = true)
@AddJIPipeOutputSlot(value = AnnotationTableData.class, slotName = "Output", create = true)
public class ConvertToAnnotationTable extends JIPipeMergingAlgorithm {
Expand All @@ -49,7 +51,7 @@ public class ConvertToAnnotationTable extends JIPipeMergingAlgorithm {
*/
public ConvertToAnnotationTable(JIPipeNodeInfo info) {
super(info);
getDataBatchGenerationSettings().setColumnMatching(JIPipeColumMatching.MergeAll);
// getDataBatchGenerationSettings().setColumnMatching(JIPipeColumMatching.MergeAll);
}

/**
Expand Down

0 comments on commit 17055d4

Please sign in to comment.