Browse Source

removed debugging statements...

Lacey Sanderson 9 years ago
parent
commit
094eb6ad54
2 changed files with 0 additions and 8 deletions
  1. 0 4
      api/blast_ui.api.inc
  2. 0 4
      includes/blast_ui.form_advanced_options.inc

+ 0 - 4
api/blast_ui.api.inc

@@ -146,7 +146,6 @@ function run_BLAST_tripal_job($program, $query, $database, $output_filestub, $op
 
   print "\nExecuting the following BLAST command:\n" . $blast_cmd . "\n";
 
-  ddl($blast_cmd);
   system($blast_cmd);
 
   if (!file_exists($output_file)) {
@@ -163,7 +162,6 @@ function run_BLAST_tripal_job($program, $query, $database, $output_filestub, $op
   print "\nGenerating additional download formats...\n";
 
   print "\tXML\n";
-  ddl("$blast_formatter_command -archive $output_file -outfmt 5 -out $output_file_xml");
   $format_cmd = "$blast_formatter_command -archive $output_file -outfmt 5 -out $output_file_xml";
   print "\nExecuting $format_cmd\n\n";
   system($format_cmd);
@@ -178,7 +176,6 @@ function run_BLAST_tripal_job($program, $query, $database, $output_filestub, $op
   }
 
   print "\tTab-delimited\n";
-  ddl("$blast_formatter_command -archive $output_file -outfmt 7 -out $output_file_tsv");
   system("$blast_formatter_command -archive $output_file -outfmt 7 -out $output_file_tsv");
   if (!file_exists($output_file_tsv)) {
     tripal_report_error(
@@ -191,7 +188,6 @@ function run_BLAST_tripal_job($program, $query, $database, $output_filestub, $op
   }
 
   print "\tHTML (includes alignments)\n";
-  ddl("$blast_formatter_command -archive $output_file -outfmt 0 -out $output_file_html -html");
   system("$blast_formatter_command -archive $output_file -outfmt 0 -out $output_file_html -html");
   if (!file_exists($output_file_tsv)) {
     tripal_report_error(

+ 0 - 4
includes/blast_ui.form_advanced_options.inc

@@ -128,13 +128,9 @@ function blast_ui_blastn_advanced_options_form_submit($form, $form_state) {
 
   $trgtKey = $form_state['values']['maxTarget'];
   $numAlign = $form['ALG']['GParam']['maxTarget']['#options'][$trgtKey];
-  ddl($form['ALG']['GParam']['maxTarget']['#options']);
-  ddl($trgtKey);
   
   $wsKey = $form_state['values']['wordSize'];
   $wordSize = $form['ALG']['GParam']['wordSize']['#options'][$wsKey];
-  ddl($form['ALG']['GParam']['wordSize']['#options']);
-  ddl($wsKey);
   
   // Expand Gap Cost key into open and extend penalties
   $gap = _set_gap($form_state['values']['gapCost']);