io.github.mianalysis.mia.moduledependencies.RelateOneToOneDependency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mia-modules Show documentation
Show all versions of mia-modules Show documentation
ModularImageAnalysis (MIA) is an ImageJ plugin which provides a modular framework for assembling image and object analysis workflows. Detected objects can be transformed, filtered, measured and related. Analysis workflows are batch-enabled by default, allowing easy processing of high-content datasets.
package io.github.mianalysis.mia.moduledependencies;
import org.scijava.Priority;
import org.scijava.plugin.Plugin;
@Plugin(type = Dependency.class, priority = Priority.LOW, visible = true)
public class RelateOneToOneDependency extends Dependency {
@Override
public String getModuleName() {
return "RelateOneToOne";
}
@Override
public String getClassName() {
return "fiji.plugin.trackmate.tracking.jaqaman.JaqamanLinker";
}
@Override
public String getMessage() {
return "Please update TrackMate dependency";
}
@Override
public String getVersionThreshold() {
return "7.10.0";
}
@Override
public Relationship getRelationship() {
return Relationship.GREATER_THAN_OR_EQUAL_TO;
}
}