Package org.obolibrary.obo2owl

Source Code of org.obolibrary.obo2owl.UnionOfTest

package org.obolibrary.obo2owl;

import static org.junit.Assert.*;

import org.junit.Test;
import org.semanticweb.owlapi.model.IRI;
import org.semanticweb.owlapi.model.OWLClass;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLDataFactory;
import org.semanticweb.owlapi.model.OWLEquivalentClassesAxiom;
import org.semanticweb.owlapi.model.OWLObjectUnionOf;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLOntologyManager;

@SuppressWarnings("javadoc")
public class UnionOfTest extends OboFormatTestBasics {

    @Test
    public void testUnion() {
        OWLOntology owlOnt = convertOBOFile("taxon_union_terms.obo");
        assertNotNull(owlOnt);
        OWLOntologyManager manager = owlOnt.getOWLOntologyManager();
        OWLDataFactory df = manager.getOWLDataFactory();
        IRI iri = IRI
                .create("http://purl.obolibrary.org/obo/NCBITaxon_Union_0000000");
        OWLClass cls = df.getOWLClass(iri);
        boolean ok = false;
        for (OWLEquivalentClassesAxiom ax : owlOnt
                .getEquivalentClassesAxioms(cls)) {
            for (OWLClassExpression ex : ax.getClassExpressions()) {
                if (ex instanceof OWLObjectUnionOf) {
                    ok = true;
                }
            }
        }
        assertTrue(ok);
    }
}
TOP

Related Classes of org.obolibrary.obo2owl.UnionOfTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.