Permalink
Browse files

Adds tax space to sub.sample

  • Loading branch information...
1 parent 14b21d3 commit 3caf426b2cd987a67ee117fb1b93cf161c4687b6 @mothur-westcott mothur-westcott committed Aug 24, 2016
Showing with 2 additions and 2 deletions.
  1. +2 −2 source/commands/subsamplecommand.cpp
@@ -1731,8 +1731,8 @@ int SubSampleCommand::getTax(set<string>& subset) {
if (m->control_pressed) { inTax.close(); outTax.close(); return 0; }
- inTax >> tname; m->gobble(inTax); //read from first column
- inTax >> tax; m->gobble(inTax); //read from second column
+ inTax >> tname; m->gobble(inTax);
+ tax = m->getline(inTax); m->gobble(inTax);
//does the subset contain a sequence that this sequence represents
itNameMap = nameMap.find(tname);

0 comments on commit 3caf426

Please sign in to comment.