Package versusSNP.blast.util

Examples of versusSNP.blast.util.SNPFinder.find()


          if (isAnother) {
            if (filter.test(set)) {
              blastList.add(set);
            }
            isAnother = isQuery = isSubject = false;
            snpFinder.find(set);
            set = new BlastSet();
          }
          set.setQName(m.group(1));
        } else if ((m=m_Letters.matcher(line)).find()) {
          set.setQLen(m.group(1));
View Full Code Here


          if (isAnother) {
            if (filter.test(set)) {
              blastList.add(set);
            }
            isAnother = isQuery = isSubject = false;
            snpFinder.find(set);
            set = new BlastSet(set.getQName());
          }
          set.setSName(m.group(1));
          if ((m=m_Annotation.matcher(line)).find()) {
            set.setAnnotation(m.group(1));
View Full Code Here

          if (isAnother) {
            if (filter.test(set)) {
              blastList.add(set);
            }
            isAnother = isQuery = isSubject = false;
            snpFinder.find(set);
            set = new BlastSet(set.getQName(), set.getSName());
          }
          set.setScore(m.group(1));
          set.setExpect(m.group(2));
         
View Full Code Here

      if (isAnother) {
        if (filter.test(set)) {
          blastList.add(set);
        }
        isAnother = isQuery = isSubject = false;
        snpFinder.find(set);
        set = new BlastSet(set.getQName(), set.getSName());
      }
      br.close();
      System.gc();
      return true;
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.