Skip to content

Commit

Permalink
Adds list to output types get.seqs internal
Browse files Browse the repository at this point in the history
  • Loading branch information
mothur-westcott committed Oct 5, 2021
1 parent 024400e commit f597278
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions source/commands/getseqscommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ GetSeqsCommand::GetSeqsCommand(set<string> n, string ffile, string lfile, string
outputTypes["name"] = tempOutNames;
outputTypes["count"] = tempOutNames;
outputTypes["fasta"] = tempOutNames;
outputTypes["list"] = tempOutNames;

if (dupsFile != "") {
if (dupsFileType == "count") {
Expand Down
3 changes: 1 addition & 2 deletions source/datastructures/alignmentdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ AlignmentDB::AlignmentDB(string fastaFileName, string s, int kmerSize, float gap
//bool aligned = false;
int tempLength = 0;

ifstream fastaFile;
util.openInputFile(fastaFileName, fastaFile);
ifstream fastaFile; util.openInputFile(fastaFileName, fastaFile);

while (!fastaFile.eof()) {
Sequence temp(fastaFile); util.gobble(fastaFile);
Expand Down

0 comments on commit f597278

Please sign in to comment.