Browse Source

Fix Typo.

Lacey Sanderson 6 years ago
parent
commit
c909afc86d
2 changed files with 3 additions and 3 deletions
  1. 2 2
      api/blast_ui.api.inc
  2. 1 1
      includes/blast_ui.admin.inc

+ 2 - 2
api/blast_ui.api.inc

@@ -208,7 +208,7 @@ function run_BLAST_tripal_job($program, $query, $database, $output_filestub, $op
     tripal_report_error(
       'blast_ui',
       TRIPAL_ERROR,
-      "Unable to find the BLAST executable (ie: /urs/bin/blastn). This can be changed in the admin settings; you supplied: @command",
+      "Unable to find the BLAST executable (ie: /usr/bin/blastn). This can be changed in the admin settings; you supplied: @command",
       array('@command' => $program),
       array('print' => TRUE)
     );
@@ -221,7 +221,7 @@ function run_BLAST_tripal_job($program, $query, $database, $output_filestub, $op
     tripal_report_error(
       'blast_ui',
       TRIPAL_ERROR,
-      "Unable to find the BLAST Formatter executable (ie: /urs/bin/blast_formatter). This can be changed in the admin settings; you supplied: @command",
+      "Unable to find the BLAST Formatter executable (ie: /usr/bin/blast_formatter). This can be changed in the admin settings; you supplied: @command",
       array('@command' => $blast_formatter_command),
       array('print' => TRUE)
     );

+ 1 - 1
includes/blast_ui.admin.inc

@@ -253,7 +253,7 @@ function blast_ui_admin_form_validate($form, &$form_state) {
       variable_set('blast_path', $form_state['values']['blast_path']);
     }
     else {
-      form_set_error('blast_path', t('Please enter a valid path not including the name of the blast program (ie: /urs/bin/). You can leave this blank if you have your $PATH variable set appropriately.'));
+      form_set_error('blast_path', t('Please enter a valid path not including the name of the blast program (ie: /usr/bin/). You can leave this blank if you have your $PATH variable set appropriately.'));
     }
   }