Permalink
Browse files

Merge remote-tracking branch 'origin/1.39.0' into 1.39.0

  • Loading branch information...
2 parents 6cbe048 + 4d8056d commit 06c3d206e8cb5593da746f9fe87706a978360818 @mothur-westcott mothur-westcott committed Dec 19, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 source/datastructures/sequencecountparser.cpp
@@ -124,7 +124,7 @@ int SequenceCountParser::readFasta(string fastafile, CountTable& countTable) {
for (int i = 0; i < namesOfGroups.size(); i++) {
if (groupCounts[indexes[i]] != 0) {
seqs[namesOfGroups[i]].push_back(seq);
- countTablePerGroup[namesOfGroups[i]][seq.getName()] = groupCounts[i];
+ countTablePerGroup[namesOfGroups[i]][seq.getName()] = groupCounts[indexes[i]];
}
}
}

0 comments on commit 06c3d20

Please sign in to comment.