Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
b0359c7d
Commit
b0359c7d
authored
20 years ago
by
Arne Stabenau
Browse files
Options
Downloads
Patches
Plain Diff
tests for transcript and translation attributes
parent
2f0dcc98
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/t/transcript.t
+66
-1
66 additions, 1 deletion
modules/t/transcript.t
modules/t/translation.t
+55
-1
55 additions, 1 deletion
modules/t/translation.t
with
121 additions
and
2 deletions
modules/t/transcript.t
+
66
−
1
View file @
b0359c7d
...
...
@@ -5,7 +5,7 @@ use vars qw( $verbose );
BEGIN
{
$|
=
1
;
use
Test
;
plan
tests
=>
46
;
plan
tests
=>
53
;
}
use
MultiTestDB
;
...
...
@@ -305,6 +305,8 @@ my $trstable_count = count_rows($db, "transcript_stable_id");
my
$ex_tr_minus
=
@
{
$tr
->
get_all_Exons
()};
$multi
->
save
("
core
",
"
transcript
",
"
transcript_stable_id
",
"
translation
",
"
translation_stable_id
",
"
protein_feature
",
"
exon
",
"
exon_stable_id
",
"
exon_transcript
",
"
object_xref
",
...
...
@@ -321,4 +323,67 @@ ok( count_rows( $db, "translation") == ($tl_count - 1));
ok
(
count_rows
(
$db
,
"
exon_transcript
")
==
(
$ex_tr_count
-
$ex_tr_minus
));
ok
(
count_rows
(
$db
,
"
transcript_stable_id
")
==
(
$trstable_count
-
1
));
#
# test _rna_edit for transcripts
#
$tr
=
$ta
->
fetch_by_stable_id
(
"
ENST00000217347
"
);
#
# 5 prime UTR editing
#
my
$seq1
=
$tr
->
edited_seq
();
my
$tlseq1
=
$tr
->
translateable_seq
();
my
$attrib
=
Bio::EnsEMBL::
Attribute
->
new
(
-
code
=>
'
_rna_edit
',
-
value
=>
"
0 6 GATTACA
",
-
name
=>
"
RNA editing
"
);
$tr
->
add_Attributes
(
$attrib
);
my
$seq2
=
$tr
->
edited_seq
();
ok
(
$seq1
ne
$seq2
);
ok
(
$seq2
=~
/^GATTACA/
);
#
# insert just at the start of the translation
# makes it longer. (For non phase zero start exons)
# cdna_coding_start for this transcript is 65, 64 is just before that
#
$attrib
=
Bio::EnsEMBL::
Attribute
->
new
(
-
code
=>
'
_rna_edit
',
-
value
=>
"
64 64 NNN
",
-
name
=>
"
RNA editing
"
);
$tr
->
add_Attributes
(
$attrib
);
my
$tlseq2
=
$tr
->
translateable_seq
();
ok
(
$tlseq1
ne
$tlseq2
);
ok
(
$tlseq2
=~
/^NNNATG/
);
ok
(
$tlseq1
eq
substr
(
$tlseq2
,
3
));
#
# try save and retrieve by lazy load
#
$multi
->
hide
(
"
core
",
"
transcript_attrib
"
);
my
$attribAdaptor
=
$db
->
get_AttributeAdaptor
();
$attribAdaptor
->
store_on_Transcript
(
$tr
,
$tr
->
get_all_Attributes
()
);
$tr
=
$ta
->
fetch_by_stable_id
(
"
ENST00000217347
"
);
ok
(
$tr
->
translateable_seq
()
eq
$tlseq2
);
ok
(
$tr
->
edited_seq
()
=~
/^GATTACA/
);
$multi
->
restore
();
This diff is collapsed.
Click to expand it.
modules/t/translation.t
+
55
−
1
View file @
b0359c7d
...
...
@@ -8,7 +8,7 @@ use Bio::EnsEMBL::Exon;
BEGIN
{
$|
=
1
;
use
Test
;
plan
tests
=>
2
6
;
plan
tests
=>
2
9
;
}
my
$loaded
=
0
;
...
...
@@ -152,6 +152,60 @@ ok(count_rows($db, 'translation') == $tl_count - 1);
ok
(
count_rows
(
$db
,
'
translation_stable_id
')
==
$tlstable_count
-
1
);
ok
(
count_rows
(
$db
,
'
protein_feature
')
==
$pfeat_count
-
$pfeat_minus
);
#
# Attribute handling for selenocystein
#
my
$tr
=
$tra
->
fetch_by_stable_id
(
"
ENST00000217347
"
);
my
$attrib
=
Bio::EnsEMBL::
Attribute
->
new
(
-
code
=>
'
_selenocystein
',
-
value
=>
2
,
-
name
=>
"
Selenocystein positions
"
);
$tr
->
translation
->
add_Attributes
(
$attrib
);
$attrib
=
Bio::EnsEMBL::
Attribute
->
new
(
-
code
=>
'
_selenocystein
',
-
value
=>
3
,
-
name
=>
"
Selenocystein positions
"
);
$tr
->
translation
->
add_Attributes
(
$attrib
);
$tr
->
translation
->
add_selenocystein_position
(
4
);
my
$tlseq
=
$tr
->
translate
->
seq
();
debug
(
"
UUU inserted:
"
.
$tlseq
);
ok
(
$tlseq
=~
/^.UUU/
);
#
# store and retrieve by lazy load
#
$multi
->
hide
(
"
core
",
"
translation_attrib
"
);
my
$tl
=
$tr
->
translation
();
my
$attrAdaptor
=
$db
->
get_AttributeAdaptor
();
$attrAdaptor
->
store_on_Translation
(
$tl
,
$tl
->
get_all_Attributes
()
);
$tr
=
$tra
->
fetch_by_stable_id
(
"
ENST00000217347
"
);
$tlseq
=
$tr
->
translate
->
seq
();
ok
(
$tlseq
=~
/^.UUU/
);
$multi
->
restore
();
#
# Check if this was not caching artefact
# No selenos should occur here
#
$tr
=
$tra
->
fetch_by_stable_id
(
"
ENST00000217347
"
);
$tlseq
=
$tr
->
translate
->
seq
();
ok
(
$tlseq
!~
/^.UUU/
);
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment