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
34b05ddf
Commit
34b05ddf
authored
18 years ago
by
Glenn Proctor
Browse files
Options
Downloads
Patches
Plain Diff
Adaptor for non-standard gene/transcript associations.
parent
4be99e5c
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/UnconventionalTranscriptAssociationAdaptor.pm
+228
-0
228 additions, 0 deletions
...sEMBL/DBSQL/UnconventionalTranscriptAssociationAdaptor.pm
with
228 additions
and
0 deletions
modules/Bio/EnsEMBL/DBSQL/UnconventionalTranscriptAssociationAdaptor.pm
0 → 100644
+
228
−
0
View file @
34b05ddf
#
# EnsEMBL module for Bio::EnsEMBL::DBSQL::UnconventionalTranscriptAssociationAdaptor
#
# Copyright EMBL/EBI
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::EnsEMBL::DBSQL::UnconventionalTranscriptAssociationAdaptor
=head1 SYNOPSIS
$utaa = $database_adaptor->get_UnconventionalTranscriptAssociationAdaptor();
my $uta = $utaa->fetch_all_by_type('antisense');
=head1 DESCRIPTION
This is an adaptor for the retrieval and storage of UnconventionalTranscriptAssociation objects
from the database. Most of the implementation is in the superclass BaseFeatureAdaptor.
=head1 AUTHOR - Glenn Proctor
=head1 CONTACT
Post questions to the EnsEMBL developer list: ensembl-dev@ebi.ac.uk
=head1 METHODS
=cut
package
Bio::EnsEMBL::DBSQL::
UnconventionalTranscriptAssociationAdaptor
;
use
strict
;
use
Bio::EnsEMBL::DBSQL::
BaseAdaptor
;
use
Bio::EnsEMBL::
UnconventionalTranscriptAssociation
;
use
vars
qw(@ISA)
;
@ISA
=
qw(Bio::EnsEMBL::DBSQL::BaseAdaptor)
;
=head2 fetch_all_by_interaction_type
Arg [1] : String type
the type of associations to obtain
Example : $utas = $utaa->fetch_all_by_type('antisense');
Description: Obtains all unconventional transcript associations that have
a particular interaction type.
Returntype : listREF of Bio::EnsEMBL::UnconventionalTranscriptAssociations
Exceptions : none
Caller : general
Status : At Risk
: under development
=cut
sub
fetch_all_by_interaction_type
{
my
(
$self
,
$type
)
=
@_
;
my
$sth
=
$self
->
prepare
("
SELECT transcript_id, gene_id, interaction_type
"
.
"
FROM unconventional_transcript_association
"
.
"
WHERE interaction_type = ?
");
$sth
->
bind_param
(
1
,
$type
,
SQL_VARCHAR
);
$sth
->
execute
();
my
$results
=
$self
->
_objs_from_sth
(
$sth
);
$sth
->
finish
();
return
$results
;
}
=head2 fetch_all_by_gene
Arg [1] : String gene the gene of associations to obtain
Arg [2] : (optional) An interaction type; if set, only associations of this type will be returned.
Example : $utas = $utaa->fetch_all_by_gene($gene, 'antisense');
Description: Obtains all unconventional transcript associations that involve
a particular gene.
Returntype : listREF of Bio::EnsEMBL::UnconventionalTranscriptAssociations
Exceptions : none
Caller : general
Status : At Risk
: under development
=cut
sub
fetch_all_by_gene
{
my
(
$self
,
$gene
,
$type
)
=
@_
;
if
(
!
ref
(
$gene
)
||
!
$gene
->
isa
('
Bio::EnsEMBL::Gene
'))
{
throw
('
$gene must be a Bio::EnsEMBL::Gene
');
}
my
$sql
=
"
SELECT transcript_id, gene_id, interaction_type FROM unconventional_transcript_association WHERE gene_id = ?
";
$sql
.=
"
AND interaction_type = ?
"
if
(
$type
);
my
$sth
=
$self
->
prepare
(
$sql
);
$sth
->
bind_param
(
1
,
$gene
->
dbID
(),
SQL_INTEGER
);
$sth
->
bind_param
(
2
,
$type
,
SQL_VARCHAR
)
if
(
$type
);
$sth
->
execute
();
my
$results
=
$self
->
_objs_from_sth
(
$sth
);
$sth
->
finish
();
return
$results
;
}
=head2 fetch_all_by_transcript
Arg [1] : String transcript the transcript of associations to obtain
Arg [2] : (optional) An interaction type; if set, only associations of this type will be returned.
Example : $utas = $utaa->fetch_all_by_transcript($transcript, 'antisense');
Description: Obtains all unconventional transcript associations that involve
a particular transcript.
Returntype : listREF of Bio::EnsEMBL::UnconventionalTranscriptAssociations
Exceptions : none
Caller : general
Status : At Risk
: under development
=cut
sub
fetch_all_by_transcript
{
my
(
$self
,
$transcript
,
$type
)
=
@_
;
if
(
!
ref
(
$transcript
)
||
!
$transcript
->
isa
('
Bio::EnsEMBL::Transcript
'))
{
throw
('
$transcript must be a Bio::EnsEMBL::Transcript
');
}
my
$sql
=
"
SELECT transcript_id, gene_id, interaction_type FROM unconventional_transcript_association WHERE transcript_id = ?
";
$sql
.=
"
AND interaction_type = ?
"
if
(
$type
);
my
$sth
=
$self
->
prepare
(
$sql
);
$sth
->
bind_param
(
1
,
$transcript
->
dbID
(),
SQL_INTEGER
);
$sth
->
bind_param
(
2
,
$type
,
SQL_VARCHAR
)
if
(
$type
);
$sth
->
execute
();
my
$results
=
$self
->
_objs_from_sth
(
$sth
);
$sth
->
finish
();
return
$results
;
}
=head2 store
Arg [1] : Bio::EnsEMBL::UnconventionalTranscriptAssociation
the unconventional transcript association to store in the database
Example : $utaa_adaptor->store($uta);
Description: stores unconventional transcript associations in the database
Returntype : none
Exceptions :
Caller : general
Status : At Risk
: under development
=cut
sub
store
{
my
(
$self
,
$uta
)
=
@_
;
if
(
!
ref
(
$uta
)
||
!
$uta
->
isa
('
Bio::EnsEMBL::UnconventionalTranscriptAssociation
'))
{
throw
('
$uta must be a Bio::EnsEMBL::UnconventionalTranscriptAssociation
');
}
my
$sth
=
$self
->
prepare
(
qq {INSERT
into
unconventional_transcript_association
(
transcript_id
,
gene_id
,
interaction_type
)
VALUES
(?,?,?)});
$sth
->
bind_param
(
1
,
$uta
->
transcript
()
->
dbID
(),
SQL_INTEGER
);
$sth
->
bind_param
(
2
,
$uta
->
gene
()
->
dbID
,
SQL_INTEGER
);
$sth
->
bind_param
(
3
,
$uta
->
interaction_type
(),
SQL_VARCHAR
);
$sth
->
execute
();
}
sub
_objs_from_sth
{
my
(
$self
,
$sth
)
=
@_
;
my
$transcript_adaptor
=
$self
->
db
()
->
get_TranscriptAdaptor
();
my
$gene_adaptor
=
$self
->
db
()
->
get_GeneAdaptor
();
my
(
$gene_id
,
$transcript_id
,
$type
);
$sth
->
bind_columns
(
\
$transcript_id
,
\
$gene_id
,
\
$type
);
my
@results
;
while
(
$sth
->
fetch
())
{
my
$gene
=
$gene_adaptor
->
fetch_by_dbID
(
$gene_id
);
my
$transcript
=
$transcript_adaptor
->
fetch_by_dbID
(
$transcript_id
);
my
$obj
=
Bio::EnsEMBL::
UnconventionalTranscriptAssociation
->
new
(
$transcript
,
$gene
,
$type
);
push
@results
,
$obj
;
}
return
\
@results
;
}
1
;
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