perl怎么实现读取指定位置的序列
展开全部
#!/usr/bin/perl -w
use strict;
open my $fhin, $ARGV[0];
my ($seq,$g,$c);
while(my $line = <$fhin>){
chomp($line);
$seq .= $line;
print $line;
$g += () = $line =~ m/[Gg]/g;
$c += () = $line =~ m/[Cc]/g;
}
my $length = length($seq);
print "Sequence length is: ".$length."\nContains ".$g." Gs and ".$c." Cs\nGC percentage is: ".(($g+$c)/$length).".\n";
use strict;
open my $fhin, $ARGV[0];
my ($seq,$g,$c);
while(my $line = <$fhin>){
chomp($line);
$seq .= $line;
print $line;
$g += () = $line =~ m/[Gg]/g;
$c += () = $line =~ m/[Cc]/g;
}
my $length = length($seq);
print "Sequence length is: ".$length."\nContains ".$g." Gs and ".$c." Cs\nGC percentage is: ".(($g+$c)/$length).".\n";
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询