-
Notifications
You must be signed in to change notification settings - Fork 82
Module: Multiple Sequence Alignment
JΓΆrg Winkler edited this page Mar 14, 2018
·
5 revisions
based on Lemon Graph library
class alignment_graph
{
using fragment_type = std::tuple<unsigned, unsigned, unsigned>;
// seq_id offset length
lemon::ListDigraph graph;
lemon::ListDigraph::ArcMap<double> weights;
TSequenceContainer & sequences;
std::vector<fragment_type> fragments;
}