Permalink
Browse files
Fixes bug with pre.cluster no groups
- Loading branch information...
Showing
with
2 additions
and
2 deletions.
-
+2
−2
source/commands/preclustercommand.cpp
|
|
@@ -805,11 +805,11 @@ int PreClusterCommand::readFASTA(){ |
|
|
}
|
|
|
inFasta.close();
|
|
|
|
|
|
+ length = *(lengths.begin());
|
|
|
+
|
|
|
if (lengths.size() > 1) { method = "unaligned"; }
|
|
|
else if (lengths.size() == 1) { method = "aligned"; filterSeqs(); }
|
|
|
|
|
|
- length = *(lengths.begin());
|
|
|
-
|
|
|
return alignSeqs.size();
|
|
|
}
|
|
|
|
|
|
|
0 comments on commit
6659a25