Help for this page

Select Code to Download


  1. or download this
            if($annotation =~ /(\b($term)\b|$term-)\b|(-$term)\b/i) {
                $nTermHits {$term}++;
                $nTotalHits++;
                push(@annotationlist, "$annotation\n");
        }
    
  2. or download this
            if($annotation =~ /(?:\b$term|$term-|-$term)\b/i) {
    
  3. or download this
    foreach $term (@terms) {
        if ($nTermHits {$term} > 0) {
            printf "%s\t%d\n", $term, $nTermHits {$term};
        }
    }
    
  4. or download this
    foreach $term (keys %nTermHits) {
        printf "%s\t%d\n", $term, $nTermHits {$term};
    }