Help for this page

Select Code to Download


  1. or download this
    my $snp_chip_covered++;
    
  2. or download this
    my $snp_chip_covered = 1;
    
  3. or download this
    my $snp_covered{$mismatch}
    
  4. or download this
    my $snp_chip_covered;
    my %snp_covered;
    ...
    
       $snp_covered{++$snp_chip_covered} = '?????';
    }
    
  5. or download this
    my @snp_covered;
    
    ...
    
       push @snp_covered, '?????';
    }