Help for this page

Select Code to Download


  1. or download this
    if (++$pos_count != $current[2]) {
                for my $pos ($pos_count .. $current[2]-1) {
                    print join("\t", $current[1], $pos, '','', '1'), "\n";
                }
            }
    
  2. or download this
            if (++$pos_count != $current[2]) {
                fill_interval($pos_count, @current);
            }
    
  3. or download this
    sub fill_interval {
        my ($pos_count, @current) = @_;
        my $margin = 8;
    ...
            }        
        }
    }