Package org.nexml.model

Examples of org.nexml.model.TreeBlock


    NexmlOTUWriter noc = new NexmlOTUWriter(null,getTaxonLabelHome(),getDocument());
    OTUs xmlOTUs = noc.fromTreeBaseToXml(mergedLabels);
   
    // convert phylotrees to XML trees
    NexmlTreeBlockWriter ntc = new NexmlTreeBlockWriter(null,getTaxonLabelHome(),getDocument());
    TreeBlock xmlTreeBlock = getDocument().createTreeBlock(xmlOTUs);
    for (PhyloTree t : searchResults.getResults()) {
      ntc.fromTreeBaseToXml(t, xmlTreeBlock);
    }   
    return getDocument();
 
View Full Code Here

TOP

Related Classes of org.nexml.model.TreeBlock

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.