2017年2月25日
摘要:
字符串的旋转 例题:给定一个字符串,要求将字符串前面的若干个字符移动到字符串的尾部。比如:将字符串 “abcdef” 的前 3 个字符进行移动,得到“defabc”。写一个函数实现此功能 解法一:暴力移位法 初看此题,可能最先想到的方法是按照题目所要求的,把需要移动的字符一个一个地移动到字符串的尾部
阅读全文
posted @ 2017-02-25 19:47
Google-boy
阅读(613)
推荐(0)
posted @ 2017-02-25 10:14
Google-boy
阅读(2)
推荐(0)
摘要:
Metagenomics is defined as the study of the metagenome, which is total genomic DNA from environmental samples. Metagenomics has long been one of the m
阅读全文
posted @ 2017-02-25 09:55
Google-boy
阅读(609)
推荐(0)
2016年12月15日
摘要:
Problem Figure 2. The Hamming distance between these two strings is 7. Mismatched symbols are colored red. Figure 2. The Hamming distance between thes
阅读全文
posted @ 2016-12-15 19:33
Google-boy
阅读(385)
推荐(0)
2016年12月14日
摘要:
Problem A sequence is an ordered collection of objects (usually numbers), which are allowed to repeat. Sequences can be finite or infinite. Two exampl
阅读全文
posted @ 2016-12-14 10:41
Google-boy
阅读(536)
推荐(0)
2016年12月13日
摘要:
Problem In DNA strings, symbols 'A' and 'T' are complements of each other, as are 'C' and 'G'. The reverse complement of a DNA string ss is the string
阅读全文
posted @ 2016-12-13 17:09
Google-boy
阅读(435)
推荐(0)
2016年12月9日
摘要:
Problem An RNA string is a string formed from the alphabet containing 'A', 'C', 'G', and 'U'. Given a DNA string tt corresponding to a coding strand,
阅读全文
posted @ 2016-12-09 20:47
Google-boy
阅读(284)
推荐(0)
摘要:
Problem A string is simply an ordered collection of symbols selected from some alphabet and formed into a word; the length of a string is the number o
阅读全文
posted @ 2016-12-09 20:24
Google-boy
阅读(779)
推荐(0)
2016年12月7日
摘要:
import mathimport numpy # 导入 numpy库from numpy import * # 导入 numpy库import matplotlib.pyplot as plt # 导入 matplotlib 库fh1 = open ("C:\\Users\\hyl\\Deskto
阅读全文
posted @ 2016-12-07 09:35
Google-boy
阅读(185)
推荐(0)
2016年12月1日
摘要:
在搜索资料时看到的这个名词(http://www.bioask.net/question/1552),好奇心来了,搜索一番,解释如下 高通量基因组测序中,什么是测序深度和覆盖度? 测序深度是指测序得到的总碱基数与待测基因组大小的比值。假设一个基因大小为2M,测序深度为10X,那么获得的总数据量为20
阅读全文
posted @ 2016-12-01 21:49
Google-boy
阅读(3031)
推荐(0)