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
8408c5dd
Commit
8408c5dd
authored
16 years ago
by
Andreas Kusalananda Kähäri
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
3302114f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Bio/EnsEMBL/GoXref.pm
+14
-13
14 additions, 13 deletions
modules/Bio/EnsEMBL/GoXref.pm
with
14 additions
and
13 deletions
modules/Bio/EnsEMBL/GoXref.pm
+
14
−
13
View file @
8408c5dd
...
...
@@ -13,30 +13,28 @@ Bio::EnsEMBL::GoXref
This class extends the DBEntry in order to associate Evidence Tags
to the relationship between EnsEMBL objects and GO identifiers. The
relationship to GO that is stored in the database is actually derived
through the relationship of EnsEMBL peptides to SwissProt peptides.
through the relationship of EnsEMBL peptides to SwissProt peptides, i.e.
the relationship is derived like this:
I.e. The relationship is derived like this:
ENSP -> SWISSPROT -> GO
ENSP -> SWISSPROT -> GO
An the evidence tag describes the relationship between the SWISSPROT
And the evidence tag describes the relationship between the SwissProt
Peptide and the GO entry.
In reality, however, we store this in the database like this:
ENSP -> SWISSPROT
ENSP -> GO
ENSP -> SWISSPROT
ENSP -> GO
and the evidence tag hangs off of the relationship between the ENSP
and
the GO identifier. Some ENSPs are associated with multiple closely
and the evidence tag hangs off of the relationship between the ENSP
and
the GO identifier.
Some ENSPs are associated with multiple closely
related Swissprot entries which may both be associated with the same GO
identifier but with different evidence tags. For this reason a single
'GoXref' can have multiple evidence tags.
=head1 SYNOPSIS
my $goxref = Bio::EnsEMBL::GoXref->new;
my $goxref = Bio::EnsEMBL::GoXref->new
()
;
$goxref->add_linkage_type('IEA');
foreach my $evtag ( @{ $goxref->get_all_linkage_types() } ) {
...
...
@@ -45,13 +43,14 @@ identifier but with different evidence tags. For this reason a single
=head1 CONTACT
Post questions to the
e
nsembl development list: <ensembl-dev@ebi.ac.uk>
Post questions to the
E
nsembl development list: <ensembl-dev@ebi.ac.uk>
=head1 METHODS
=cut
package
Bio::EnsEMBL::
GoXref
;
use
vars
qw(@ISA)
;
use
strict
;
...
...
@@ -77,7 +76,9 @@ use strict;
sub
add_linkage_type
{
my
(
$self
,
$lt
,
$source_dbentry
)
=
@_
;
$self
->
throw
("
linkage type argument required
")
if
(
!
$lt
);
if
(
!
defined
(
$lt
)
)
{
$self
->
throw
("
linkage type argument required
");
}
if
(
defined
(
$source_dbentry
)
&&
!
$source_dbentry
->
isa
('
Bio::EnsEMBL::DBEntry
')
)
...
...
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