24 auto ali = std::make_unique<Alignments>();
26 std::vector<AlignTransform>& vtr(ali->m_align);
40 const std::vector<AlignTransform>&
hbt =
hb.m_align;
41 const std::vector<AlignTransform>& het =
he.m_align;
42 const std::vector<AlignTransform>& hft =
hf.m_align;
43 const std::vector<AlignTransform>& hot =
ho.m_align;
46 copy(het.begin(), het.end(), vtr.begin() +
hbt.size());
47 copy(hft.begin(), hft.end(), vtr.begin() +
hbt.size() + het.size());
48 copy(hot.begin(), hot.end(), vtr.begin() +
hbt.size() + het.size() + hft.size());