Skip to content

Commit

Permalink
This fixes #239
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed May 4, 2017
1 parent dcb1275 commit 12e231c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/milaboratory/mixcr/cli/ActionAlign.java
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ public SequenceReaderCloseable<? extends SequenceRead> createReader() throws IOE
return new PairedFastqReader(parameters.get(0), parameters.get(1), true);
else {
String[] s = parameters.get(0).split("\\.");
if (s[s.length - 1].equals("fasta"))
if (s[s.length - 1].equals("fasta") || s[s.length - 1].equals("fa"))
return new FastaSequenceReaderWrapper(
new FastaReader<>(parameters.get(0), NucleotideSequence.ALPHABET),
true
Expand Down

0 comments on commit 12e231c

Please sign in to comment.