Skip to content

Commit

Permalink
less stringent checking because some 'versions' of t_coffee return sl…
Browse files Browse the repository at this point in the history
…ighly different alignments (oct 2000 and march 2001)

svn path=/bioperl-run/branches/branch-1-0-0/; revision=13062
  • Loading branch information
hyphaltip committed Mar 22, 2002
1 parent 8213c91 commit 53f08aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/TCoffee.t
Expand Up @@ -104,10 +104,11 @@ my $seq = $str2->next_seq();

ok $aln1->no_sequences, 3;
ok( int($aln1->average_percentage_identity), 39);
$factory->verbose(1);
$aln = $factory->profile_align($aln1,$seq);
ok( $aln->no_sequences, 4);
if( $version <= 1.22 ) {
ok( int($aln->overall_percentage_identity), 18);
ok( $aln->overall_percentage_identity > 18);
ok( int($aln->average_percentage_identity), 44);
} else {
ok( int($aln->overall_percentage_identity), 21);
Expand Down

0 comments on commit 53f08aa

Please sign in to comment.