File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public class EzAAI {
3737 + " Introducing EzAAI: a pipeline for high throughput calculations of prokaryotic average amino acid identity.\n "
3838 + " J Microbiol. 59, 476–480 (2021).\n "
3939 + " DOI: 10.1007/s12275-021-1154-0" ;
40- public static final boolean STABLE = true ;
40+ public static final boolean STABLE = false ;
4141
4242 final static int MODULE_CONVERT = 1 ,
4343 MODULE_EXTRACT = 2 ,
@@ -526,7 +526,7 @@ public Integer call() {
526526 // list files in input directory
527527 ArrayList <String > files = new ArrayList <>();
528528 for (String file : Objects .requireNonNull (inputDir .list ())) {
529- if (file .endsWith (".fa" ) || file .endsWith (".fna" ) || file .endsWith (".fasta" )) {
529+ if (file .endsWith (".fa" ) || file .endsWith (".fna" ) || file .endsWith (".fasta" ) || file . endsWith ( ".fa.gz" ) || file . endsWith ( ".fna.gz" ) || file . endsWith ( ".fasta.gz" ) ) {
530530 files .add (inputDir .getAbsolutePath () + File .separator + file );
531531 }
532532 }
You can’t perform that action at this time.
0 commit comments