Examples of BlastExecutor


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
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.