- or download this
for ('A'..'Z'){
++$absent{$_} unless exists $prot{$_};
}
- or download this
# print absent counts
for (sort keys %absent){
printf "%s=%d\n",$_,$absent{$_};
};
- or download this
#!/usr/bin/perl
use strict;
...
for (sort keys %absent){
printf "%s=%d\n",$_,$absent{$_};
};