Skip to content
Snippets Groups Projects
Commit 468aa506 authored by Andy Yates's avatar Andy Yates
Browse files

Test will fail if run on non-deterministic data storage engines as we have 2...

Test will fail if run on non-deterministic data storage engines as we have 2 features with the queried for ditag_id
parent 849d5fb3
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ ok($feature && $feature->isa('Bio::EnsEMBL::Map::DitagFeature')); ...@@ -63,7 +63,7 @@ ok($feature && $feature->isa('Bio::EnsEMBL::Map::DitagFeature'));
# dbID, sequence, slice, ditag_pair_id # dbID, sequence, slice, ditag_pair_id
my $ditagFeatures = $dfa->fetch_all_by_ditagID($ditag_id); my $ditagFeatures = $dfa->fetch_all_by_ditagID($ditag_id);
my $ditagFeature = $ditagFeatures->[0]; my ($ditagFeature) = grep { $_->cigar_line() eq $cigar_line } @{$ditagFeatures};
ok(defined $ditagFeature && $ditagFeature->isa('Bio::EnsEMBL::Map::DitagFeature')); ok(defined $ditagFeature && $ditagFeature->isa('Bio::EnsEMBL::Map::DitagFeature'));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment