1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# -*-Perl-*- Test Harness script for Bioperl
# $Id: BlastIndex.t 15112 2008-12-08 18:12:38Z sendu $
use strict;
BEGIN {
use lib '.';
use Bio::Root::Test;
test_begin(-tests => 26,
-requires_module => 'IO::String');
use_ok('Cwd');
use_ok('Bio::SearchIO');
use_ok('Bio::Index::Blast');
}
END { unlink qw( Wibbl Wibbl.pag Wibbl.dir Wibbl.index); }
# BLASTP
my $index = Bio::Index::Blast->new(-filename => 'Wibbl',
-write_flag => 1);
ok($index);
$index->make_index(test_input_file('multi_blast.bls'));
($index->dbm_package eq 'SDBM_File') ?
(ok(-e "Wibbl.pag" && -e "Wibbl.dir")) :
(ok(-e "Wibbl"));
foreach my $id ( qw(CATH_RAT PAPA_CARPA) ) {
my $fh = $index->get_stream($id);
ok($fh);
ok( ! eof($fh) );
my $report = Bio::SearchIO->new(-noclose => 1,
-format => 'blast',
-fh => $fh);
my $result = $report->next_result;
like($result->query_name, qr/$id/);
ok( $result->next_hit);
like( $index->fetch_report($id)->query_name, qr/$id/);
}
# RPS-BLAST
$index = Bio::Index::Blast->new(-filename => 'Wibbl.index',
-write_flag => 1);
ok($index);
$index->make_index(test_input_file('rpsblast.bls'));
foreach my $id ( qw(orf20 orf40) ) {
my $fh = $index->get_stream($id);
ok($fh);
ok( ! eof($fh) );
my $report = Bio::SearchIO->new(-noclose => 1,
-format => 'blast',
-fh => $fh);
my $result = $report->next_result;
like($result->query_name, qr/$id/);
ok( $result->next_hit);
like( $index->fetch_report($id)->query_name, qr/$id/);
}
|