Package versusSNP.blast

Examples of versusSNP.blast.BlastParser


        JOptionPane.showMessageDialog(null, UICaption.dialog_error_path_empty, UICaption.dialog_caption_error, JOptionPane.ERROR_MESSAGE);
        loopAlignmentLoader(dialog);
      }
      document.setQueryGenome(dialog.getId1());
      document.setSubjectGenome(dialog.getId2());
      new Thread(new BlastParser(dialog.getPath(), document)).start();
    }
  }
View Full Code Here


      new ORFFile().readFile(args[1] + ".txt", genome2);
      genome2.sortOrfList();
      FastaFile fastaFile2 = new FastaFile();
      fastaFile2.readFile(args[1] + ".fasta", genome2);
      genome2.attachSequences(fastaFile2.getSequences());
      BlastParser parser = new BlastParser();
      parser.parse(args[0] + "-" + args[1]);
      genome1.attachBlastSets(parser.getBlastList(), genome2, true);
      genome1.printSNPSummary(genome2);
    } else {
      new VersusSNP().setVisible(true);
    }
  }
View Full Code Here

TOP

Related Classes of versusSNP.blast.BlastParser

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.