Преглед изворни кода

Merge pull request #187 from statonlab/fastaExtensions

allow many extensions for Fasta Importer
Stephen Ficklin пре 7 година
родитељ
комит
ad1f926047
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tripal_chado/includes/TripalImporter/FASTAImporter.inc

+ 1 - 1
tripal_chado/includes/TripalImporter/FASTAImporter.inc

@@ -21,7 +21,7 @@ class FASTAImporter extends TripalImporter {
   /**
    * An array containing the extensions of allowed file types.
    */
-  public static $file_types = array('fasta');
+  public static $file_types = array('fasta', 'txt', 'fa', 'aa', 'pep', 'nuc');
 
 
   /**