diff --git a/src/Form/TripalBlastDatabaseForm.php b/src/Form/TripalBlastDatabaseForm.php index 00b45af..9a8a687 100644 --- a/src/Form/TripalBlastDatabaseForm.php +++ b/src/Form/TripalBlastDatabaseForm.php @@ -87,7 +87,7 @@ public function form(array $form, FormStateInterface $form_state) { '#type' => 'textfield', '#title' => $this->t('Extract Regular Expression'), '#description' => $this->t('The Regular Expression to use to extract the id from the FASTA header of the BLAST database hit.'), - '#required' => TRUE, + '#required' => FALSE, '#default_value' => $blast_db->getDbXrefRegExp() ]; @@ -97,7 +97,7 @@ public function form(array $form, FormStateInterface $form_state) { '#type' => 'textfield', '#title' => $this->t('BLAST database reference'), '#description' => $this->t('The Database records from this BLAST Database reference.'), - '#required' => TRUE, + '#required' => FALSE, '#default_value' => $blast_db->getDbXref() ]; @@ -107,7 +107,7 @@ public function form(array $form, FormStateInterface $form_state) { '#type' => 'textfield', '#title' => $this->t('BLAST database reference linkout type'), '#description' => $this->t('Type of linkout to be used for this database reference.'), - '#required' => TRUE, + '#required' => FALSE, '#default_value' => $blast_db->getDbXrefLinkout() ];