Help for this page

Select Code to Download


  1. or download this
    my $num_cols = @{ $AoA[0] };
    
    ...
          ...
       }
    }
    
  2. or download this
    my $num_cols = @{ $AoA[0] };
    
    ...
       my @col = map $_->[$col], @AoA;
       ...
    }
    
  3. or download this
    sub consensus {
       my %counts;
    ...
    
       print(join(', ', @combined), "\n");
    }