当前位置: 首页>>代码示例>>C++>>正文


C++ Match::isRC方法代码示例

本文整理汇总了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);
}
开发者ID:microsoftofficeword2003,项目名称:stridetest,代码行数:26,代码来源:Match.cpp


注:本文中的Match::isRC方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。