摘要: Description range returns a vector containing the minimum and maximum of all the given arguments. 即返回一个向量,该向量包含给定参数的最大值和最小值。 Usage 用法: Arguments 参数 an 阅读全文
posted @ 2018-08-12 11:13 萃英山下 阅读(10282) 评论(0) 推荐(0)
摘要: #! /usr/bin/perluse strict;use warnings;use Bio::SeqIO;my $file=shift;my $fa=Bio::SeqIO->new(-file=>$file,-format=>'fasta');while(my $seq_obj=$fa->nex 阅读全文
posted @ 2018-08-12 09:31 萃英山下 阅读(583) 评论(0) 推荐(0)
摘要: #!/usr/bin/env perluse strict;use warnings; sub TranslateDNAFile(){ use Bio::SeqIO; (my $infile,my $outfile)=@_; my $in=Bio::SeqIO->new(-file=>"$infil 阅读全文
posted @ 2018-08-12 09:28 萃英山下 阅读(640) 评论(0) 推荐(0)