1 # -*-Perl-*- Test Harness script for Bioperl
10 test_begin(-tests => 4);
12 use_ok('Bio::SearchIO');
15 my $in = Bio::SearchIO->new(-format => 'blast',
16 -file => test_input_file('brassica_ATH.WUBLASTN'));
18 my $outfile = test_output_file();
20 my $out = Bio::SearchIO->new(-output_format => 'GbrowseGFF',
21 -prefix => 'Sequence',
24 -file => ">$outfile");
26 while( my $r = $in->next_result ) {
27 ok($out->write_result($r));
32 # tests checking file output?