Help for this page

Select Code to Download


  1. or download this
    perl pm_gene_uninit.pl
    
  2. or download this
    #say qq(DEBUG: Line = "$line");
    
  3. or download this
    #my $file = "BSAC.pl";
    ...
    #open my $in, "<", "$file";
    #open my $out, ">", "output.txt";
    
  4. or download this
    say $out "Coordinate   No of Strains   AA Change";
    ...
    while ( my $line = <$in> ) {
    ...
    printf $out "%-12.12s %-15.15s %s\n",  $SNP, $count, $change;
    
  5. or download this
    say "Coordinate   No of Strains   AA Change";
    ...
    while ( my $line = <DATA> ) {
    ...
    printf "%-12.12s %-15.15s %s\n",  $SNP, $count, $change;