ex10_3生物信息:找基因
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ex10_3生物信息:找基因相关的知识,希望对你有一定的参考价值。
// // main.cpp // ex10_3 // // Created by a007 on 17/12/1. // Copyright ? 2017年 a007. All rights reserved. // // 占坑 未完待续。。。。。。 #include <iostream> using namespace std; string findGene(const string &str){ string temp = ""; string begin = "ATG"; string end1 = "TAG"; string end2 = "TAA"; string end3 = "TGA"; return temp; } int main(int argc, const char * argv[]) { std::cout << "Hello, World!\n"; return 0; }
以上是关于ex10_3生物信息:找基因的主要内容,如果未能解决你的问题,请参考以下文章
Python基础-生物信息:找出基因,生物学家使用字母ACT和G构成的字符串建模一个基因组。