Package versusSNP.blast

Examples of versusSNP.blast.BlastExecutor


      String qPath = Parameter.temp_path + Parameter.temp_output_sequence_query;
      String sPath = Parameter.temp_path + Parameter.temp_output_sequence_subject;
      String oPath = Parameter.temp_path + Parameter.temp_output_blast;
      document.getQueryGenome().toFasta(qPath);
      document.getSubjectGenome().toFasta(sPath);
      new Thread(new BlastExecutor( qPath, sPath, oPath,
          dialog.getMatrix(), dialog.getThresholds(), dialog.hasFilters(),
          document)).start();
    }
  }
View Full Code Here

TOP

Related Classes of versusSNP.blast.BlastExecutor

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.