MCPcopy Create free account
hub / github.com/BirolLab/abyss / Contig

Class Contig

MergePaths/MergeContigs.cpp:139–151  ·  view source on GitHub ↗

A contig sequence. */

Source from the content-addressed store, hash-verified

137
138/* A contig sequence. */
139struct 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. */
154typedef vector<Contig> Contigs;

Callers 1

mergePathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected