Help for this page

Select Code to Download


  1. or download this
    my %transcripts;
    {
       open(my $transcripts_fh, "<", $transcripts_qfn)
    ...
       }    
    }
    # You should really debug the output at least once with Data::Dumper t
    +o see how it looks like
    
  2. or download this
    my $transcripts_array = $transcripts{$chr}{$strand}; # might need a be
    +tter name
    for my $transcript (@$transcripts_array)
    {
      my $start = $transcript->{start};
      ...
    }