Package edu.msu.cme.rdp.taxatree

Examples of edu.msu.cme.rdp.taxatree.ConcretRoot


        //taxid  lineage  name  rank sample sample .....
        // the first line should be the root, we need to handle this specially because a previous bug printed out the root taxon differenly
        values = oneHierBlock.get(1);
        if( result == null){
            // the first line should be the root taxon
             ConcretRoot root = new ConcretRoot<MCTaxon>(new MCTaxon(Integer.parseInt(values[0]), values[2], values[3]) );
             result = new MultiClassifierResult(root);
             result.addSampleList(curSampleList);
        }
        MCTaxon curTaxon = (MCTaxon)(result.getRoot().getRootTaxonHodler().getTaxon());
        // add counts
View Full Code Here

TOP

Related Classes of edu.msu.cme.rdp.taxatree.ConcretRoot

Copyright © 2018 www.massapicom. 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.