t/*: remove "use lib '.'" and t/lib/Error.pm
[bioperl-live.git] / t / SearchIO / CigarString.t
blob7d426a1072bc901e42170ac8c0b011d2ed5d6191
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
5 use strict;
7 BEGIN {
8         use Bio::Root::Test;
9         
10         test_begin(-tests => 4);
11     
12         use_ok('Bio::SearchIO');
15 my $searchio = Bio::SearchIO->new(
16          -format => 'blast',
17     -file => test_input_file('blast.report')
20 my @hsps = ();
21 while(my $result = $searchio->next_result){
22     while(my $hit = $result->next_hit){
23         while(my $hsp = $hit->next_hsp){
24             push @hsps, $hsp;
25         }
26     }
29 my $first_hsp = shift @hsps;
30 my $first_hsp_cigar_string = '504M'; 
31 is $first_hsp->cigar_string, $first_hsp_cigar_string;
32 is $first_hsp->cigar_string, $first_hsp_cigar_string; # fetch from hash
34 my $second_hsp = $hsps[0];
35 my $second_hsp_cigar_string = '29M18I22M11I20MD33M4I22M3I25M5I21MI33MD14M';
36 is $second_hsp->cigar_string, $second_hsp_cigar_string;