Skip to content

Commit 05262cd

Browse files
committed
Allow .fna and .faa fasta extensions
1 parent d995cb5 commit 05262cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/mkindex_options.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void parseCommandLine(LambdaIndexerOptions & options, int argc, char const ** ar
9292

9393
parser.add_section("Input Options");
9494

95-
std::vector<std::string> extensions{"fa", "fq", "fasta", "fastq"};
95+
std::vector<std::string> extensions{"fa", "fq", "fasta", "fastq", "fna", "faa"};
9696
#ifdef SEQAN_HAS_ZLIB
9797
for (auto const & ext : extensions)
9898
extensions.push_back(ext + ".gz");

src/search_options.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ void parseCommandLine(LambdaOptions & options, int argc, char const ** argv)
154154

155155
parser.add_section("Input options");
156156

157-
std::vector<std::string> extensions{"fa", "fq", "fasta", "fastq"};
157+
std::vector<std::string> extensions{"fa", "fq", "fasta", "fastq", "fna", "faa"};
158158
#ifdef SEQAN_HAS_ZLIB
159159
for (auto const & ext : extensions)
160160
extensions.push_back(ext + ".gz");

0 commit comments

Comments
 (0)