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
b694ab31
Commit
b694ab31
authored
17 years ago
by
Andreas Kusalananda Kähäri
Browse files
Options
Downloads
Patches
Plain Diff
Unbreak POD.
parent
5a267d6a
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/DBSQL/SupportingFeatureAdaptor.pm
+27
-17
27 additions, 17 deletions
modules/Bio/EnsEMBL/DBSQL/SupportingFeatureAdaptor.pm
with
27 additions
and
17 deletions
modules/Bio/EnsEMBL/DBSQL/SupportingFeatureAdaptor.pm
+
27
−
17
View file @
b694ab31
...
...
@@ -7,17 +7,21 @@
=head1 NAME
Bio::EnsEMBL::DBSQL::SupportingFeatureAdaptor - Retrieves supporting
features
from the database.
Bio::EnsEMBL::DBSQL::SupportingFeatureAdaptor - Retrieves supporting
features
from the database.
=head1 SYNOPSIS
$supporting_feature_adaptor = $database_adaptor->get_SupportingFeatureAdaptor;
@supporting_feats = @{$supporting_feat_adaptor->fetch_all_by_Exon($exon)};
$supporting_feature_adaptor =
$database_adaptor->get_SupportingFeatureAdaptor();
@supporting_feats =
@{ $supporting_feat_adaptor->fetch_all_by_Exon($exon) };
=head1 CONTACT
Post questions to ensembl developer mailing list : <ensembl-dev@ebi.ac.uk>
Post questions to ensembl developer mailing list:
<ensembl-dev@ebi.ac.uk>
=cut
...
...
@@ -40,13 +44,17 @@ use vars qw(@ISA);
=head2 fetch_all_by_Exon
Arg [1] : Bio::EnsEMBL::Exon $exon
The exon to fetch supporting features for
Example : @sfs = @{$supporting_feat_adaptor->fetch_all_by_Exon($exon)};
Description: Retrieves supporting features (evidence) for a given exon.
Returntype : list of Bio::EnsEMBL::BaseAlignFeatures in the same coordinate
system as the $exon argument
Exceptions : warning if $exon is not in the database (i.e. dbID not defined)
throw if a retrieved supporting feature is of unknown type
The exon to fetch supporting features.
Example : @sfs =
@{ $supporting_feat_adaptor->fetch_all_by_Exon($exon) };
Description: Retrieves supporting features (evidence) for a given
exon.
Returntype : List of Bio::EnsEMBL::BaseAlignFeatures in the same
coordinate system as the $exon argument
Exceptions : Warning if $exon is not in the database (i.e. dbID
not defined).
Throw if a retrieved supporting feature is of unknown
type.
Caller : Bio::EnsEMBL::Exon
Status : Stable
...
...
@@ -96,13 +104,15 @@ sub fetch_all_by_Exon {
}
=head2 store
Arg [2] : Int $transID
The dbID of an EnsEMBL transcript to associate with supporting
features
Arg [1] : Ref to array of Bio::EnsEMBL::BaseAlignFeature (the support)
The dbID of an EnsEMBL transcript to associate with
supporting features.
Arg [1] : Ref to array of Bio::EnsEMBL::BaseAlignFeature
(the support)
Example : $sfa->store($exon_id, \@features);
Description: Stores a set of alignment features and associates an
EnsEMBL transcript
with them
Description: Stores a set of alignment features and associates an
EnsEMBL transcript
with them
Returntype : none
Exceptions : thrown when invalid dbID is passed to this method
Caller : TranscriptAdaptor
...
...
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