A contig sequence. */
| 137 | |
| 138 | /* A contig sequence. */ |
| 139 | struct Contig |
| 140 | { |
| 141 | Contig(const string& comment, const string& seq) |
| 142 | : comment(comment) |
| 143 | , seq(seq) |
| 144 | {} |
| 145 | Contig(const FastaRecord& o) |
| 146 | : comment(o.comment) |
| 147 | , seq(o.seq) |
| 148 | {} |
| 149 | string comment; |
| 150 | string seq; |
| 151 | }; |
| 152 | |
| 153 | /** The contig sequences. */ |
| 154 | typedef vector<Contig> Contigs; |