Skip to content
Snippets Groups Projects
Commit 25c1dcfb authored by Graham McVicker's avatar Graham McVicker
Browse files

fixed test to reflect fact that seqedits are not currently enabled by default

parent 41e53dbb
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,8 @@ ok(count_rows($db, 'protein_feature') == $pfeat_count - $pfeat_minus);
my $tr = $tra->fetch_by_stable_id( "ENST00000217347" );
$tr->edits_enabled(1);
my $sc = Bio::EnsEMBL::SeqEdit->new(-START => 2,
-END => 2,
-ALT_SEQ => 'U',
......@@ -194,6 +196,8 @@ $attrAdaptor->store_on_Translation( $tl, $tl->get_all_Attributes() );
$tr = $tra->fetch_by_stable_id( "ENST00000217347" );
$tr->edits_enabled(1);
$tlseq = $tr->translate->seq();
ok( $tlseq =~ /^.UUU/ );
......
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