Skip to content
Snippets Groups Projects
Commit 5e6001cb authored by Magali Ruffier's avatar Magali Ruffier
Browse files

check archive string

parent 31709a72
No related branches found
No related tags found
No related merge requests found
......@@ -66,10 +66,13 @@ my $event = $asi->get_event("G2");
is(ref($event), 'Bio::EnsEMBL::StableIdEvent', "A stable id event was fetched");
is($event->score, 0.54, "Mapping score between G1 and G2");
my $string = $event->ident_string();
my $old_archive_stable_id = $event->old_ArchiveStableId;
my $new_archive_stable_id = $event->new_ArchiveStableId;
is($string, "G2.3 (3) -> G1.2 (4) [0.54]", "Event string");
is($new_archive_stable_id, $asi, "Initial archive is new archive");
is($old_archive_stable_id->stable_id, "G2", "Old stable id");
is($new_archive_stable_id->stable_id, "G1", "New stable id");
......
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