- or download this
my %acgt; @acgt{ qw[ a c g t ] } = 0 .. 3;
...
for 0 .. 15;
return unpack 'N', $bits;
}
- or download this
my $lookup = '';
while( <SMALLFILE> ) {
chomp;
vec( $lookup, encode( $_), 1 ) = 1;
}
- or download this
while( <BIGFILE> ) {
chomp;
print if vec( $lookup, encode( $_ ), 1 );
}