Help for this page

Select Code to Download


  1. or download this
    use File::Basename;
    my $filename=fileparse($ARGV[0]);
    ...
        split(/\t/);
        $chrsize{$_[0]}=int($_[1]/$win);
    }
    
  2. or download this
    use File::Basename;
    my $filename=fileparse($ARGV[0]);
    ...
        #array[2] are chr names
        $chrsize{$array[0]}=int($array[1]/$win);
    }