本文整理汇总了C++中Match::isRC方法的典型用法代码示例。如果您正苦于以下问题:C++ Match::isRC方法的具体用法?C++ Match::isRC怎么用?C++ Match::isRC使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Match
的用法示例。
在下文中一共展示了Match::isRC方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: infer
// Given two matches, match_xy and match_xz infer the
// match between yz. This requies coord[0] of the input
// matches to be referring to the same sequence
// This returns the minimal matching region, it could possibly be extended
Match Match::infer(const Match& match_xy, const Match& match_xz)
{
assert(match_xy.coord[0].seqlen == match_xz.coord[0].seqlen);
// Calculate the max/min start/end coordinates of coord[0]
int s = std::max(match_xy.coord[0].interval.start, match_xz.coord[0].interval.start);
int e = std::min(match_xy.coord[0].interval.end, match_xz.coord[0].interval.end);
// These are the coordinates in frame X
SeqCoord r_y(s, e, match_xy.coord[0].seqlen);
SeqCoord r_z(s, e, match_xz.coord[0].seqlen);
// Translate into the desired frame
SeqCoord t_y = match_xy.translate(r_y);
SeqCoord t_z = match_xz.translate(r_z);
// Set the new lengths of the seqcoords
t_y.seqlen = match_xy.coord[1].seqlen;
t_z.seqlen = match_xz.coord[1].seqlen;
return Match(t_y, t_z, match_xy.isRC() != match_xz.isRC(), -1);
}