
org.monarchinitiative.phenol.annotations.constants.hpo.HpoFrequencyTermIds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phenol-annotations Show documentation
Show all versions of phenol-annotations Show documentation
phenol-annotation contains the annotation functionality for ontologies
package org.monarchinitiative.phenol.annotations.constants.hpo;
import org.monarchinitiative.phenol.ontology.data.TermId;
/**
* Utility class with TermIds into the "frequency" sub ontology.
*
* @author Manuel Holtgrewe
* @author Sebastian Koehler
*/
public final class HpoFrequencyTermIds {
/** {@link TermId} for "frequency". */
public static final TermId FREQUENCY = TermId.of("HP:0040279");
/** {@link TermId} for "always present (100% of the cases)". */
public static final TermId OBLIGATE = TermId.of("HP:0040280");
/** {@link TermId} for "very frequent (80-99% of the cases)". */
public static final TermId VERY_FREQUENT = TermId.of("HP:0040281");
/** {@link TermId} for "frequent (30-79% of the cases)". */
public static final TermId FREQUENT = TermId.of("HP:0040282");
/** {@link TermId} for "occasional (5-29% of the cases)". */
public static final TermId OCCASIONAL = TermId.of("HP:0040283");
/** {@link TermId} for "excluded (1-4% of the cases)". */
public static final TermId VERY_RARE = TermId.of("HP:0040284");
/** {@link TermId} for "excluded (0% of the cases)". */
public static final TermId EXCLUDED = TermId.of("HP:0040285");
private HpoFrequencyTermIds() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy