Help for this page

Select Code to Download


  1. or download this
    my @values = map { join "\t", (split /\t/)[0..2] } <$fh>;
    
    # Later, in your say statement:
    say $newfile join "\t", @line[0,2,3], $_ for grep { /^$start\t/ } @val
    +ues;