科学网

 找回密码
  注册
Rosalind 11 - Computing GC Content
郝兆东 2017-10-27 10:54
Bioinformatics Stronghold - GC: Computing GC Content Identifying Unknown DNA Quickly 早期的计算软件会通过计算某一段文本中各字母出现的频率来区别不同语言。因为在一个足够长的文本中,同一语言会有其特征的字母频率。而计算软件会识别这种模式,从而准确判断出不同语言。 物种也是一样的,尽管 ...
个人分类: Python Learning|4015 次阅读|没有评论
Rosalind 10 - Rabbits and Recurrence Relations
郝兆东 2017-10-26 08:41
Bioinformatics Stronghold - FIB: Rabbits and Recurrence Relations Wascally Wabbits 1902年,斐波纳契的Leonardo提出了一个关于兔子群体繁殖的数学算式,他首先提出以下几个基本假设: 第一个月,该群体只有一对新出生的兔子; 一个月之后,兔子进入繁殖期; 在之后的任何一个月,一只 ...
个人分类: Python Learning|4456 次阅读|没有评论
Rosalind 9 - Complementing a Strand of DNA
郝兆东 2017-10-25 08:33
Bioinformatics Stronghold - REVC: Complementing a Strand of DNA The Secondary and Tertiary Structures of DNA 核酸链上的碱基排序构成了核酸链的 一级结构 ( primary structure ),但其并未解释核酸分子的三维结构。自从1953年 James Watson 和 Francis Crick 两位大神在 Nature 上发表了一 ...
个人分类: Python Learning|3579 次阅读|没有评论
Rosalind 8 - Transcribing DNA into RNA
郝兆东 2017-10-24 08:32
Bioinformatics Stronghold - RNA: Transcribing DNA into RNA The Second Nucleic Acid 在染色质上与DNA一起的还有一种核酸叫做 核糖核酸 ( ribose nucleic acid ),简称为 RNA 。RNA与DNA不一样的地方在于其用 尿嘧啶 ( uracil )替换了DNA上的胸腺嘧啶(thymine)。 Structural differen ...
个人分类: Python Learning|3738 次阅读|没有评论
Nature Genetics:上位性效应在冬小麦籽粒产量杂种优势中的作用
郝兆东 2017-10-24 08:24
A quantitative genetic framework highlights the role of epistatic effects for grain-yield heterosis in bread wheat First author: Yong Jiang ; Affiliations: Leibniz Institute of Plant Genetics and Crop Plant Research ( 莱布尼茨植物遗传和作物研究所 ): Gatersleben , Ger ...
个人分类: 每日摘要|3675 次阅读|没有评论
Rosalind 7 - Counting DNA Nucleotides
郝兆东 2017-10-23 08:30
Bioinformatics Stronghold - DNA: Counting DNA Nucleotides A Rapid Introduction to Molecular Biology 细胞 ( cell )是一切生物体功能的基本单位。 细胞核 ( nucleus )是真核生物细胞的组分,是细胞活动的中心。细胞核充满了一种叫做 染色质 ( chromatin )的大分子,在真核细胞 有丝分裂 ( mi ...
个人分类: Python Learning|2988 次阅读|没有评论
Rosalind 6 - Dictionaries
郝兆东 2017-10-22 08:28
Python Village - INI6: Dictionaries Intro to Python dictionary Python中除了lists和strings存储和处理数据,还有一种变量叫做 dictionary ,其类似于lists,但存储的对象有所区别,比如我们可以用以下的方法创建一个dictionary: phones = {'Zoe':'232-43-58', 'A ...
个人分类: Python Learning|4284 次阅读|没有评论
Rosalind 5 - Working with Files
郝兆东 2017-10-21 08:08
Python Village - INI5: Working with Files Reading and Writing Python中读写文件是用的open()函数,共有三种模式:r(read mode),w(write mode)和a(append mode)。 比如,我们新建一个txt文档,命名为input.txt,然后粘贴进 Bravely bold Sir Robin rode forth from Camelot Yes, brave ...
个人分类: Python Learning|3543 次阅读|没有评论
Rosalind 4 - Conditions and Loops
郝兆东 2017-10-20 08:47
Python Village - INI4: Conditions and Loops Python中的条件语句if: a = 42 if a 10: ... print 'the number is less than 10' ... else: ... print 'the number is greater or equal ...
个人分类: Python Learning|3105 次阅读|没有评论
Rosalind 3 - Strings and Lists
郝兆东 2017-10-19 08:31
Python Village - INI3: Strings and Lists Python除了strings和numbers数据类型,还有更加复杂一点的数据类型,比如说lists。 list的赋值方式是 list_name = ,比如: tea_party = print tea_party Dormouse 注意,在Python中,list内部item计数是从0开始的 ...
个人分类: Python Learning|2951 次阅读|没有评论

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-28 07:17

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部