Help for this page

Select Code to Download


  1. or download this
    my @hITS;
    while (<CBLAT>) {
    ...
    for (@hITS) {
        print $_->[0], "\n";
    }
    
  2. or download this
    my @hITS;
    while (<CBLAT>) {
    ...
    for (@hITS) {
        print "score: $_->{score}  qID: $_->{qID}\n");
    }