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


C++ Sequence::getComment方法代码示例

本文整理汇总了C++中Sequence::getComment方法的典型用法代码示例。如果您正苦于以下问题:C++ Sequence::getComment方法的具体用法?C++ Sequence::getComment怎么用?C++ Sequence::getComment使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sequence的用法示例。


在下文中一共展示了Sequence::getComment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: convertQual

FastqRead::FastqRead(Sequence s, QualityScores q, string f) {
    try {
        m = MothurOut::getInstance(); format = f;
        
        //fill convert table - goes from solexa to sanger. Used fq_all2std.pl as a reference.
        for (int i = -64; i < 65; i++) {
            char temp = (char) ((int)(33 + 10*log(1+pow(10,(i/10.0)))/log(10)+0.499));
            convertTable.push_back(temp);
            convertBackTable.push_back(((int)(33 + 10*log(1+pow(10,(i/10.0)))/log(10)+0.499)));
        }
        
        if (s.getName() != q.getName()) { m->mothurOut("[ERROR]: sequence name does not match quality score name. Cannot construct fastq object.\n"); m->control_pressed = true; }
        else {
            name = s.getName();
            comment = s.getComment();
            sequence = s.getUnaligned();
            scores = q.getScores();
            scoreString = convertQual(scores);
        }
        
        
    }
    catch(exception& e) {
        m->errorOut(e, "FastqRead", "FastqRead");
        exit(1);
    }
}
开发者ID:Cryomics-Lab,项目名称:mothur,代码行数:27,代码来源:fastqread.cpp

示例2: operator

struct Functor {  void operator ()  (Sequence& s)  const
{
    // We dump the data size and the comment
    std::cout << "[" << s.getDataSize() << "] " << s.getComment()  << std::endl;

    // We dump the data
    std::cout << s.toString () << std::endl;
}};
开发者ID:pombredanne,项目名称:gatb-core,代码行数:8,代码来源:bank3.cpp


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