Package org.cipres.treebase.framework

Examples of org.cipres.treebase.framework.TSVFileParser


    if (pStudyId == null || pMatrixId == null || pFile == null || pMappedFields == null) {
      returnVal.addErrorMessage("Null parameters passed in. Cannot create Row Segment.");
      return returnVal;
    }
   
    TSVFileParser parser = new TSVFileParser();
    List<List<String>> values = parser.parseFile(pFile, pSkipFirstRow, returnVal);
   
    //checks to make sure there are 19 tabs present in each list
    for (int x = 0; x < values.size(); x++) {
           
      if (values.get(x).size() < 19) {
View Full Code Here

TOP

Related Classes of org.cipres.treebase.framework.TSVFileParser

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.