首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

perl运用:DNA互补序列的获取

2012-11-04 
perl应用:DNA互补序列的获取sub revcom{# A subroutine to compute the reverse complement of DNA sequen

perl应用:DNA互补序列的获取



sub revcom{# A subroutine to compute the reverse complement of DNA sequence # 一个获取DNA互补序列的子程序my($dna)=@_;print $dna."\n";my ($revcom)=reverse($dna);$revcom=~tr/ACGTacgt/TGCAtgca/;return $revcom;}my $plus_dna="ATATTATATATAGCGC";my $the_result;$the_result=revcom($plus_dna);print $the_result;


热点排行