Skip to content
Snippets Groups Projects
Commit 739af71e authored by Tiago Grego's avatar Tiago Grego
Browse files

comment out diag statements in tests

parent c226c1dc
Branches test_cleanup
No related tags found
2 merge requests!442comment out diag statements in tests,!457Patch to support longer assembly names in the mapping session table.
......@@ -353,13 +353,14 @@ my $transcript_adaptor = $db->get_TranscriptAdaptor();
$transcript = $transcript_adaptor->fetch_by_stable_id("ENST00000217347");
$transcript->edits_enabled(1);
diag 'Before X insertion: ', explain($transcript->translate->seq());
# diag 'Before X insertion: ', explain($transcript->translate->seq());
my $stop_codon_rt_edit = Bio::EnsEMBL::StopCodonReadthroughEdit->new(265);
$transcript->translation->add_Attributes($stop_codon_rt_edit->get_Attribute());
my $translated_sequence = $transcript->translate->seq();
diag 'After X insertion: ', explain($translated_sequence);
# diag 'After X insertion: ', explain($translated_sequence);
is($translated_sequence =~ /QEEXEE/, 1, 'X inserted');
is(length($transcript->translate->seq()), length($translated_sequence), 'Length of the sequence pre and post edit is equal');
......
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