Help for this page

Select Code to Download


  1. or download this
    sub bandpass {
        my( $aref, $loValue, $hiValue ) = @_;
    ...
    my $aref = $matches{ $fasta_id }{ $sitekey };
    $sets{ $fasta_id }[ $setscounter ]{ $sitekey } = 
        [ bandpass( $aref, $lowerlimit, $upperlimit ) ];
    
  2. or download this
    min---------loPass--hiPass------------------------------------max
    
  3. or download this
    min-------------------------------------------loPass--hiPass--max
    min--loPass-------------------------------------------hiPass--max
    
  4. or download this
    sub bandpass {
        my( $aref, $loValue, $hiValue ) = @_;
    ...
        ++$hi while $hi < $#{ $aref } and $aref->[ $hi + 1 ] <= $hiValue;
        return @{ $aref }[ $lo .. $hi ];
    }