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
97a51fd4
Commit
97a51fd4
authored
20 years ago
by
Arne Stabenau
Browse files
Options
Downloads
Patches
Plain Diff
updated pods
parent
7d378dac
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/AffyArrayAdaptor.pm
+46
-0
46 additions, 0 deletions
modules/Bio/EnsEMBL/DBSQL/AffyArrayAdaptor.pm
with
46 additions
and
0 deletions
modules/Bio/EnsEMBL/DBSQL/AffyArrayAdaptor.pm
+
46
−
0
View file @
97a51fd4
...
...
@@ -14,8 +14,16 @@ Bio::EnsEMBL::DBSQL::AffyArrayAdaptor
=head1 SYNOPSIS
my $arrayAdaptor = $db->get_AffyArrayAdaptor();
my $array = $arrayAdaptor->fetch_by_name( 'some name' );
my $arrays = $arrayAdaptor->fetch_all();
=head1 DESCRIPTION
The AffyArrayAdaptor module stores and retrieves AffyArray objects in the database it is connected to.
=head1 METHODS
=cut
...
...
@@ -31,6 +39,18 @@ use Bio::EnsEMBL::Utils::Exception qw(throw warning);
@ISA
=
qw(Bio::EnsEMBL::DBSQL::BaseAdaptor)
;
=head2 fetch_by_name
Arg [1] : string $name
Example : my $array = $arrayAdaptor->fetch_by_name( 'U133_X3P' );
Description: Retrieves an AffyArray object by name from the database. Its created
from the entries in affy_array table
Returntype : string
Exceptions : none
Caller : general
=cut
sub
fetch_by_name
{
my
$self
=
shift
;
my
$name
=
shift
;
...
...
@@ -44,6 +64,18 @@ sub fetch_by_name {
}
=head2 fetch_attributes
Arg [1] : Bio::EnsEMBL::AffyArray $array
Example : none
Description: This function is soley intended to lazy load attributes into empty
AffyArray objects. You should not need to call this.
Returntype : none
Exceptions : none
Caller : lazy load Array attributes into empty array from AffyArray object
=cut
sub
fetch_attributes
{
my
$self
=
shift
;
my
$array
=
shift
;
...
...
@@ -131,6 +163,20 @@ sub _objs_from_sth {
}
=head2 store
Arg [1..] : list of Bio::EnsEMBL::AffyArray @arrays
Example : $arrayAdaptor->store( $array1, $array2, $array3 )
Description: Stores te given AffyArray objects in the database. There is no check wether
they already exist, so only call once per Array. Sets dbID and adaptor on the
objects that it stores.
Returntype : none
Exceptions : none
Caller : affy feature calculating scripts
=cut
sub
store
{
my
$self
=
shift
;
my
@args
=
@_
;
...
...
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