foreach my $i (@region){
        $all++;
        @Rgene = split "\t",$i;
        system "samtools depth -r $Rgene[1] $bam > $all.txt";
        my $file = "$all.txt";
#       print $file,"\n";
        open(IN2,"$file");
        while(<IN2>){
                chomp;
                $sum++;
                my @line = split "\t";

相关文章:

  • 2022-12-23
  • 2021-04-29
  • 2021-11-15
  • 2021-06-09
  • 2022-02-04
  • 2021-11-19
  • 2021-07-17
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-20
  • 2022-02-02
  • 2022-12-23
相关资源
相似解决方案