| 33 | #include <boost/regex.hpp> |
| 34 | |
| 35 | int countAS(const vector<FASTAFile::FASTAEntry>& fasta) |
| 36 | { |
| 37 | int counter = 0; |
| 38 | |
| 39 | for (const auto& entry : fasta) |
| 40 | { |
| 41 | counter += entry.sequence.size(); |
| 42 | } |
| 43 | |
| 44 | return counter; |
| 45 | } |
| 46 | |
| 47 | START_TEST(Suitability, "$Id$") |
| 48 |