Help for this page

Select Code to Download


  1. or download this
    my @officialannotation = [];
    my @prodigalannotation = [];
    
  2. or download this
      %findgene = ( "start" => $offcordinates[1], "stop" => $offcordinates
    +[0] );
    
     $hash_ref = \%findgene;
    
  3. or download this
     $hash_ref = { "start" => $offcordinates[1], "stop" => $offcordinates[
    +0] };
    
  4. or download this
     @officialannotation = [];
    push @officialannotation, $hash_ref;
    
  5. or download this
     @officialannotation = ( [], $hash_ref );
    
  6. or download this
     for  $hash_ref ( @$officialannotation ) {
       while (my $start, $stop) =  each %$hash_ref ) {
         for $hash_ref2 ( @$prodigalannotation) {
           while (my $start1, $stop2) = each %$hash_ref2 ) {