本文整理汇总了Java中org.semanticweb.owlapi.model.OWLAnnotationProperty.getIRI方法的典型用法代码示例。如果您正苦于以下问题:Java OWLAnnotationProperty.getIRI方法的具体用法?Java OWLAnnotationProperty.getIRI怎么用?Java OWLAnnotationProperty.getIRI使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.semanticweb.owlapi.model.OWLAnnotationProperty
的用法示例。
在下文中一共展示了OWLAnnotationProperty.getIRI方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: reduceAxiomAnnotationsToOboBasic
import org.semanticweb.owlapi.model.OWLAnnotationProperty; //导入方法依赖的package包/类
/**
* Remove axiom annotations, which do not comply with the OBO-Basic level,
* i.e. trailing qualifier values in OBO.<br>
* <b>Side effect</b>: This removes the old axiom and adds the new axiom to
* the given ontology. The method also returns the new axiom to enable
* chaining.
*
* @param axiom
* @param ontology
* @return axiom
*/
public static OWLAxiom reduceAxiomAnnotationsToOboBasic(OWLAxiom axiom, OWLOntology ontology) {
Set<OWLAnnotation> annotations = axiom.getAnnotations();
if (annotations != null && !annotations.isEmpty()) {
boolean changed = false;
Set<OWLAnnotation> newAnnotations = new HashSet<OWLAnnotation>();
for (OWLAnnotation owlAnnotation : annotations) {
OWLAnnotationProperty p = owlAnnotation.getProperty();
IRI iri = p.getIRI();
/*
* if the property IRI is not in a predefined annotation property in
* Obo2Owl assume that it's not OBO-Basic
*/
if (Obo2Owl.ANNOTATIONPROPERTYMAP.containsValue(iri) == false) {
// remove axiom annotation
changed = true;
}
else {
newAnnotations.add(owlAnnotation);
}
}
if (changed) {
// only update the axiom if the annotations have been changed
OWLAxiom newAxiom = AxiomAnnotationTools.changeAxiomAnnotations(axiom, newAnnotations, ontology);
return newAxiom;
}
}
return axiom;
}