Skip to content

Commit

Permalink
Fixes bug while testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mothur-westcott committed Jan 18, 2022
1 parent d443289 commit 349d95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/commands/removeseqscommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ int RemoveSeqsCommand::execute(){
if (qualityfiles.size() != 0) { for (int i = 0; i < qualityfiles.size(); i++) { readQual(qualityfiles[i]); } }
if (groupfiles.size() != 0) { for (int i = 0; i < groupfiles.size(); i++) { readGroup(groupfiles[i]); } }
if (taxfiles.size() != 0) { for (int i = 0; i < taxfiles.size(); i++) { readTax(taxfiles[i]); } }
if (listfiles.size() != 0) { for (int i = 0; i < taxfiles.size(); i++) { readTax(taxfiles[i]); } }
if (listfiles.size() != 0) { for (int i = 0; i < listfiles.size(); i++) { readList(listfiles[i]); } }
if (alignfiles.size() != 0) { for (int i = 0; i < alignfiles.size(); i++) { readAlign(alignfiles[i]); } }
if (countfiles.size() != 0) { for (int i = 0; i < countfiles.size(); i++) { readCount(countfiles[i]); } }
if (fastqfiles.size() != 0) { for (int i = 0; i < fastqfiles.size(); i++) { readFastq(fastqfiles[i]); } }
Expand Down

0 comments on commit 349d95f

Please sign in to comment.