Examples of NexmlConverter


Examples of org.cipres.treebase.domain.nexus.nexml.NexmlConverter

  }

  public NexusDataSet parseNexus(Study study, Collection<File> nexusFiles,
      ProgressionListener listener) {
    NexusDataSet data = new NexusDataSet();
    NexmlConverter converter = new NexmlConverter();
    for ( File nexusFile : nexusFiles ) {
      converter.parseOneFile(nexusFile, study, data);
    }
    return data;
  }
View Full Code Here

Examples of org.cipres.treebase.domain.nexus.nexml.NexmlConverter

        LOGGER.info("parseNexus - Study is null"); //$NON-NLS-1$
      }
      return null;
    }   
    NexusDataSet data = new NexusDataSet();
    NexmlConverter converter = new NexmlConverter();
    converter.parseOneFile(nexusFile, study, data);
    return data;
  }
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.