Package bnGUI

Examples of bnGUI.OBOES.loadOntology()


        myOB.setCorrectionMethod("benjamini_hochberg");
        myOB.setMaximumPvalue(.05);
        myOB.setMinimumCount(2);

        //This loads the data in
        myOB.loadOntology(ontology.getAbsolutePath(), "gene ontology");
        try {
            myOB.loadAnnotation(annotation_BP.getAbsolutePath(), "gene ontology");
            myOB.loadAnnotation(annotation_CC.getAbsolutePath(), "gene ontology");
            myOB.loadAnnotation(annotation_MF.getAbsolutePath(), "gene ontology");
        } catch (Exception ex) {
View Full Code Here


        File annotation_MF = new File(FILENAME_ANNOTATION_MF); //molecular function

        myOB.setCorrectionMethod("benjamini_hochberg");
        myOB.setMaximumPvalue(.99);
        myOB.setMinimumCount(1);
        myOB.loadOntology(ontology.getAbsolutePath(), "geneo");
        try {
            myOB.loadAnnotation(annotation_BP.getAbsolutePath(), "geneo");
            myOB.loadAnnotation(annotation_CC.getAbsolutePath(), "geneo");
            myOB.loadAnnotation(annotation_MF.getAbsolutePath(), "geneo");
        } catch (Exception ex) {
View Full Code Here

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.