
Class Summary
Synopsis
use Bio::EnsEMBL::Registry; Bio::EnsEMBL::Registry-\>load_registry_from_db( -host =\> 'ensembldb.ensembl.org', -user =\> 'anonymous' ); $transcript_adaptor = Bio::EnsEMBL::Registry-\>get_adaptor( 'Human', 'Core', 'Transcript' ); $transcript = $transcript_adaptor-\>fetch_by_dbID(1234); $transcript = $transcript_adaptor-\>fetch_by_stable_id('ENST00000201961'); $slice = $slice_adaptor-\>fetch_by_region( 'Chromosome', '3', 1, 1000000 ); @transcripts = @{ $transcript_adaptor-\>fetch_all_by_Slice($slice) }; ($transcript) = @{ $transcript_adaptor-\>fetch_all_by_external_name('NP_065811.1') };
Description
This adaptor provides a means to retrieve and store information related to Transcripts. Primarily this involves the retrieval or storage of Bio::EnsEMBL::Transcript objects from a database.
See Bio::EnsEMBL::Transcript for details of the Transcript class.
Definition at line 46 of file TranscriptAdaptor.pm.
Method Documentation
protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_check_start_end_strand | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::TranscriptAdaptor::_columns | ( | ) |
protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_create_feature | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_create_feature_fast | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseAdaptor::_default_where_clause | ( | ) | [inherited] |
Undocumented method

Reimplemented in Bio::EnsEMBL::DBSQL::MiscFeatureAdaptor, Bio::EnsEMBL::DBSQL::RepeatFeatureAdaptor, Bio::EnsEMBL::Map::DBSQL::MarkerFeatureAdaptor, and Bio::EnsEMBL::Map::DBSQL::QtlFeatureAdaptor.
protected Bio::EnsEMBL::DBSQL::BaseAdaptor::_final_clause | ( | ) | [inherited] |
Undocumented method

Reimplemented in Bio::EnsEMBL::DBSQL::ExonAdaptor, Bio::EnsEMBL::DBSQL::MiscFeatureAdaptor, and Bio::EnsEMBL::DBSQL::PredictionExonAdaptor.
protected Bio::EnsEMBL::DBSQL::TranscriptAdaptor::_left_join | ( | ) |
protected Bio::EnsEMBL::DBSQL::BaseAdaptor::_list_dbIDs | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_list_seq_region_ids | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_logic_name_to_constraint | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_max_feature_length | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::TranscriptAdaptor::_objs_from_sth | ( | ) |
protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_pre_store | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_pre_store_userdata | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_remap | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::Utils::Cache Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_slice_feature_cache | ( | ) | [inherited] |
Description : Returns the feature cache if we are allowed to cache and will build it if we need to. We will never return a reference to the hash to avoid unintentional auto-vivfying caching Returntype : Bio::EnsEMBL::Utils::Cache Exceptions : None Caller : Internal

protected Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::_slice_fetch | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::BaseAdaptor::_straight_join | ( | ) | [inherited] |
Undocumented method

protected Bio::EnsEMBL::DBSQL::TranscriptAdaptor::_tables | ( | ) |
public Listref Bio::EnsEMBL::DBSQL::BaseAdaptor::bind_param_generic_fetch | ( | ) | [inherited] |
Arg [1] : (optional) scalar $param This is the parameter to bind Arg [2] : (optional) int $sql_type Type of the parameter (from DBI (:sql_types)) Example : $adaptor->bind_param_generic_fetch($stable_id,SQL_VARCHAR); $adaptor->generic_fetch(); Description: When using parameters for the query, will call the bind_param to avoid some security issues. If there are no arguments, will return the bind_parameters ReturnType : listref Exceptions: if called with one argument

public void Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::clear_cache | ( | ) | [inherited] |
Args : None Example : my $sa = $registry->get_adaptor( 'Mus musculus', 'Core', 'Slice' ); my $ga = $registry->get_adaptor( 'Mus musculus', 'Core', 'Gene' );
my $slice = $sa->fetch_by_region( 'Chromosome', '1', 1e8, 1.05e8 );
my $genes = $ga->fetch_all_by_Slice($slice);
$ga->clear_cache();
Description : Empties the feature cache associated with this feature adaptor. Return type : None Exceptions : None Caller : General Status : At risk (under development)

public Bio::EnsEMBL::DBSQL::DBAdaptor Bio::EnsEMBL::DBSQL::BaseAdaptor::db | ( | ) | [inherited] |
Arg [1] : (optional) Bio::EnsEMBL::DBSQL::DBAdaptor $obj the database this adaptor is using. Example : $db = $adaptor->db(); Description: Getter/Setter for the DatabaseConnection that this adaptor is using. Returntype : Bio::EnsEMBL::DBSQL::DBAdaptor Exceptions : none Caller : Adaptors inherited from BaseAdaptor Status : Stable

public Bio::EnsEMBL::DBSQL::DBConnection Bio::EnsEMBL::DBSQL::BaseAdaptor::dbc | ( | ) | [inherited] |
Arg [1] : (optional) Bio::EnsEMBL::DBSQL::DBConnection $obj the database this adaptor is using. Example : $db = $adaptor->db(); Description: Getter/Setter for the DatabaseConnection that this adaptor is using. Returntype : Bio::EnsEMBL::DBSQL::DBConnection Exceptions : none Caller : Adaptors inherited from BaseAdaptor Status : Stable

public Bio::EnsEMBL::DBSQL::BaseAdaptor::dump_data | ( | ) | [inherited] |
Undocumented method

public Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all | ( | ) |
public Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_DBEntry | ( | ) |
public Listref Bio::EnsEMBL::DBSQL::BaseAdaptor::fetch_all_by_dbID_list | ( | ) | [inherited] |
Arg [1] : listref of integers $id_list The unique database identifiers for the features to be obtained. Arg [2] : optional - Bio::EnsEMBL::Slice to map features onto. Example : @feats = @{$adaptor->fetch_all_by_dbID_list([1234, 2131, 982]))}; Description: Returns the features created from the database defined by the the IDs in contained in the provided ID list $id_list. The features will be returned in their native coordinate system. That is, the coordinate system in which they are stored in the database. In order to convert the features to a particular coordinate system use the transfer() or transform() method. If none of the features are found in the database a reference to an empty list is returned. Returntype : listref of Bio::EnsEMBL::Features Exceptions : thrown if $id arg is not provided does not exist Caller : general Status : Stable

Reimplemented in Bio::EnsEMBL::DBSQL::OntologyTermAdaptor.
public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_exon_stable_id | ( | ) |
Arg [1] : String $stable_id The stable id of an exon in a transcript Example : my $tr = $tr_adaptor->fetch_all_by_exon_stable_id ('ENSE00000309301'); Description: Retrieves a list of transcripts via an exon stable id. Returntype : Listref of Bio::EnsEMBL::Transcript objects Exceptions : none Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_exon_supporting_evidence | ( | ) |
Arg [1] : String $hit_name Name of supporting feature Arg [2] : String $feature_type one of "dna_align_feature" or "protein_align_feature" Arg [3] : (optional) Bio::Ensembl::Analysis Example : $tr = $tr_adaptor->fetch_all_by_exon_supporting_evidence ('XYZ', 'dna_align_feature'); Description: Gets all the transcripts with exons which have a specified hit on a particular type of feature. Optionally filter by analysis. Returntype : Listref of Bio::EnsEMBL::Transcript objects Exceptions : If feature_type is not of correct type. Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_external_name | ( | ) |
Arg [1] : String $external_name An external identifier of the transcript to be obtained Arg [2] : (optional) String $external_db_name The name of the external database from which the identifier originates. Example : my @transcripts = @{ $tr_adaptor->fetch_all_by_external_name( 'NP_065811.1') }; my @more_transcripts = @{$tr_adaptor->fetch_all_by_external_name( 'NP_0658__._')}; Description: Retrieves all transcripts which are associated with an external identifier such as a GO term, Swissprot identifer, etc. Usually there will only be a single transcript returned in the list reference, but not always. Transcripts are returned in their native coordinate system, i.e. the coordinate system in which they are stored in the database. If they are required in another coordinate system the Transcript::transfer or Transcript::transform method can be used to convert them. If no transcripts with the external identifier are found, a reference to an empty list is returned. SQL wildcards % and _ are supported in the $external_name Returntype : listref of Bio::EnsEMBL::Transcript Exceptions : none Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_Gene | ( | ) |
Arg [1] : Bio::EnsEMBL::Gene $gene The gene to fetch transcripts of Example : my $gene = $gene_adaptor->fetch_by_stable_id('ENSG0000123'); my @transcripts = { $tr_adaptor->fetch_all_by_Gene($gene) }; Description: Retrieves Transcript objects for given gene. Puts Genes slice in each Transcript. Returntype : Listref of Bio::EnsEMBL::Transcript objects Exceptions : none Caller : Gene->get_all_Transcripts() Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_GOTerm | ( | ) |
Arg [1] : Bio::EnsEMBL::OntologyTerm The GO term for which transcripts should be fetched.
Example: @transcripts = @{ $transcript_adaptor->fetch_all_by_GOTerm( $go_adaptor->fetch_by_accession('GO:0030326') ) };
Description : Retrieves a list of transcripts that are associated with the given GO term, or with any of its descendent GO terms. The transcripts returned are in their native coordinate system, i.e. in the coordinate system in which they are stored in the database. If another coordinate system is required then the Transcript::transfer or Transcript::transform method can be used.
Return type : listref of Bio::EnsEMBL::Transcript Exceptions : Throws of argument is not a GO term Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_GOTerm_accession | ( | ) |
Arg [1] : String The GO term accession for which genes should be fetched.
Example :
@genes = @{ $gene_adaptor->fetch_all_by_GOTerm_accession( 'GO:0030326') };
Description : Retrieves a list of genes that are associated with the given GO term, or with any of its descendent GO terms. The genes returned are in their native coordinate system, i.e. in the coordinate system in which they are stored in the database. If another coordinate system is required then the Gene::transfer or Gene::transform method can be used.
Return type : listref of Bio::EnsEMBL::Gene Exceptions : Throws of argument is not a GO term accession Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_all_by_logic_name | ( | ) | [inherited] |
Arg [3] : string $logic_name the logic name of the type of features to obtain Example : $fs = $a->fetch_all_by_logic_name('foobar'); Description: Returns a listref of features created from the database. only features with an analysis of type $logic_name will be returned. If the logic name is invalid (not in the analysis table), a reference to an empty list will be returned. Returntype : listref of Bio::EnsEMBL::SeqFeatures Exceptions : thrown if no $logic_name Caller : General Status : Stable

public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_all_by_RawContig | ( | ) | [inherited] |
public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_all_by_RawContig_and_score | ( | ) | [inherited] |
public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_all_by_RawContig_constraint | ( | ) | [inherited] |
public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_Slice | ( | ) |
Arg [1] : Bio::EnsEMBL::Slice $slice The slice to fetch transcripts on Arg [2] : (optional) Boolean $load_exons If true, exons will be loaded immediately rather than lazy loaded later Arg [3] : (optional) String $logic_name The logic name of the type of features to obtain ARG [4] : (optional) String $constraint An extra contraint. Example : my @transcripts = @{ $tr_adaptor->fetch_all_by_Slice($slice) }; Description: Overrides superclass method to optionally load exons immediately rather than lazy-loading them later. This is more efficient when there are a lot of transcripts whose exons are going to be used. Returntype : Listref of Bio::EnsEMBL::Transcript objects Exceptions : thrown if exon cannot be placed on transcript slice Caller : Slice::get_all_Transcripts Status : Stable

Reimplemented from Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor.
public Listref Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_all_by_Slice_and_score | ( | ) | [inherited] |
Arg [1] : Bio::EnsEMBL::Slice $slice the slice from which to obtain features Arg [2] : (optional) float $score lower bound of the the score of the features retrieved Arg [3] : (optional) string $logic_name the logic name of the type of features to obtain Example : $fts = $a->fetch_all_by_Slice_and_score($slice,90,'Swall'); Description: Returns a list of features created from the database which are are on the Slice defined by $slice and which have a score greater than $score. If $logic_name is defined, only features with an analysis of type $logic_name will be returned. Returntype : listref of Bio::EnsEMBL::SeqFeatures in Slice coordinates Exceptions : none Caller : Bio::EnsEMBL::Slice Status : Stable

Reimplemented in Bio::EnsEMBL::Map::DBSQL::MarkerFeatureAdaptor.
public Listref Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_all_by_Slice_constraint | ( | ) | [inherited] |
Arg [1] : Bio::EnsEMBL::Slice $slice the slice from which to obtain features Arg [2] : (optional) string $constraint An SQL query constraint (i.e. part of the WHERE clause) Arg [3] : (optional) string $logic_name the logic name of the type of features to obtain Example : $fs = $a->fetch_all_by_Slice_constraint($slc, 'perc_ident > 5'); Description: Returns a listref of features created from the database which are on the Slice defined by $slice and fulfill the SQL constraint defined by $constraint. If logic name is defined, only features with an analysis of type $logic_name will be returned. Returntype : listref of Bio::EnsEMBL::SeqFeatures in Slice coordinates Exceptions : thrown if $slice is not defined Caller : Bio::EnsEMBL::Slice Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_by_transcript_supporting_evidence | ( | ) |
Arg [1] : String $hit_name Name of supporting feature Arg [2] : String $feature_type one of "dna_align_feature" or "protein_align_feature" Arg [3] : (optional) Bio::Ensembl::Analysis Example : $transcripts = $transcript_adaptor->fetch_all_by_transcript_supporting_evidence('XYZ', 'dna_align_feature'); Description: Gets all the transcripts with evidence from a specified hit_name on a particular type of feature, stored in the transcript_supporting_feature table. Optionally filter by analysis. For hits stored in the supporting_feature table (linked to exons) use fetch_all_by_exon_supporting_evidence instead. Returntype : Listref of Bio::EnsEMBL::Transcript objects Exceptions : If feature_type is not of correct type. Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_all_versions_by_stable_id | ( | ) |
Arg [1] : String $stable_id The stable ID of the transcript to retrieve Example : my $tr = $tr_adaptor->fetch_all_version_by_stable_id ('ENST00000309301'); Description : Similar to fetch_by_stable_id, but retrieves all versions of a transcript stored in the database. Returntype : listref of Bio::EnsEMBL::Transcript objects Exceptions : if we cant get the gene in given coord system Caller : general Status : At Risk

public Bio::EnsEMBL::Feature Bio::EnsEMBL::DBSQL::BaseAdaptor::fetch_by_dbID | ( | ) | [inherited] |
Arg [1] : int $id The unique database identifier for the feature to be obtained Example : $feat = $adaptor->fetch_by_dbID(1234)); $feat = $feat->transform('contig'); Description: Returns the feature created from the database defined by the the id $id. The feature will be returned in its native coordinate system. That is, the coordinate system in which it is stored in the database. In order to convert it to a particular coordinate system use the transfer() or transform() method. If the feature is not found in the database then undef is returned instead Returntype : Bio::EnsEMBL::Feature or undef Exceptions : thrown if $id arg is not provided does not exist Caller : general Status : Stable

Reimplemented in Bio::EnsEMBL::DBSQL::AnalysisAdaptor, Bio::EnsEMBL::DBSQL::AssemblyExceptionFeatureAdaptor, Bio::EnsEMBL::DBSQL::CoordSystemAdaptor, Bio::EnsEMBL::DBSQL::DBEntryAdaptor, Bio::EnsEMBL::DBSQL::DensityTypeAdaptor, Bio::EnsEMBL::DBSQL::MiscSetAdaptor, Bio::EnsEMBL::DBSQL::OntologyTermAdaptor, Bio::EnsEMBL::DBSQL::ProteinFeatureAdaptor, Bio::EnsEMBL::DBSQL::RepeatConsensusAdaptor, Bio::EnsEMBL::DBSQL::TranslationAdaptor, Bio::EnsEMBL::Map::DBSQL::DitagAdaptor, Bio::EnsEMBL::Map::DBSQL::DitagFeatureAdaptor, Bio::EnsEMBL::Map::DBSQL::MarkerAdaptor, and Bio::EnsEMBL::Map::DBSQL::QtlAdaptor.
public Bio::EnsEMBL::Transcript Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_by_display_label | ( | ) |
Arg [1] : String $label - display label of transcript to fetch Example : my $tr = $tr_adaptor->fetch_by_display_label("BRCA2"); Description: Returns the transcript which has the given display label or undef if there is none. If there are more than 1, only the first is reported. Returntype : Bio::EnsEMBL::Transcript Exceptions : none Caller : general Status : Stable

public Bio::EnsEMBL::Transcript Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_by_stable_id | ( | ) |
Arg [1] : String $stable_id The stable id of the transcript to retrieve Example : my $tr = $tr_adaptor->fetch_by_stable_id('ENST00000309301'); Description: Retrieves a transcript via its stable id. Returntype : Bio::EnsEMBL::Transcript Exceptions : none Caller : general Status : Stable

public Bio::EnsEMBL::Transcript Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_by_translation_id | ( | ) |
Arg [1] : Int $id The internal identifier of the translation whose transcript is to be retrieved Example : my $tr = $tr_adaptor->fetch_by_translation_id($transl->dbID); Description: Given the internal identifier of a translation this method retrieves the transcript associated with that translation. If the transcript cannot be found undef is returned instead. Returntype : Bio::EnsEMBL::Transcript or undef Exceptions : none Caller : general Status : Stable

public Bio::EnsEMBL::Transcript Bio::EnsEMBL::DBSQL::TranscriptAdaptor::fetch_by_translation_stable_id | ( | ) |
Arg [1] : String $transl_stable_id The stable identifier of the translation of the transcript to retrieve Example : my $tr = $tr_adaptor->fetch_by_translation_stable_id ('ENSP00000311007'); Description: Retrieves a Transcript object using the stable identifier of its translation. Returntype : Bio::EnsEMBL::Transcript Exceptions : none Caller : general Status : Stable

public Bio::EnsEMBL::Utils::Iterator Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_Iterator_by_Slice | ( | ) | [inherited] |
Arg [1] : Bio::EnsEMBL::Slice Arg [2] : Optional string: logic name of analysis Arg [3] : Optional int: Chunk size to iterate over. Default is 500000 Example : my $slice_iter = $feature_adaptor->fetch_Iterator_by_Slice($slice);
while(my $feature = $slice_iter->next && defined $feature){ #Do something here }
Description: Creates an Iterator which chunks the query Slice to facilitate large Slice queries which would have previously run out of memory Returntype : Bio::EnsEMBL::Utils::Iterator Exceptions : None Caller : general Status : at risk

public Bio::EnsEMBL::Utils::Iterator Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::fetch_Iterator_by_Slice_method | ( | ) | [inherited] |
Arg [1] : CODE ref of Slice fetch method Arg [2] : ARRAY ref of parameters for Slice fetch method Arg [3] : Optional int: Slice index in parameters array Arg [4] : Optional int: Slice chunk size. Default=500000 Example : my $slice_iter = $feature_adaptor->fetch_Iterator_by_Slice_method ($feature_adaptor->can('fetch_all_by_Slice_Arrays'), \@fetch_method_params, 0,#Slice idx );
while(my $feature = $slice_iter->next && defined $feature){ #Do something here }
Description: Creates an Iterator which chunks the query Slice to facilitate large Slice queries which would have previously run out of memory Returntype : Bio::EnsEMBL::Utils::Iterator Exceptions : Throws if mandatory params not valid Caller : general Status : at risk

public Listref Bio::EnsEMBL::DBSQL::BaseAdaptor::generic_fetch | ( | ) | [inherited] |
Arg [1] : (optional) string $constraint An SQL query constraint (i.e. part of the WHERE clause) Arg [2] : (optional) Bio::EnsEMBL::AssemblyMapper $mapper A mapper object used to remap features as they are retrieved from the database Arg [3] : (optional) Bio::EnsEMBL::Slice $slice A slice that features should be remapped to Example : $fts = $a->generic_fetch('contig_id in (1234, 1235)', 'Swall'); Description: Performs a database fetch and returns feature objects in contig coordinates. Returntype : listref of Bio::EnsEMBL::SeqFeature in contig coordinates Exceptions : none Caller : BaseFeatureAdaptor, ProxyDnaAlignFeatureAdaptor::generic_fetch Status : Stable

Reimplemented in Bio::EnsEMBL::DBSQL::DataFileAdaptor.
public Bio::EnsEMBL::DBSQL::TranscriptAdaptor::get_display_xref | ( | ) |
public Bio::EnsEMBL::DBSQL::BaseAdaptor::get_dumped_data | ( | ) | [inherited] |
Undocumented method

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::get_Interpro_by_transid | ( | ) |
Arg [1] : String $trans_stable_id The stable if of the transcript to obtain Example : @i = $tr_adaptor->get_Interpro_by_transid($trans->stable_id()); Description: Gets interpro accession numbers by transcript stable id. A hack really - we should have a much more structured system than this. Returntype : listref of strings (Interpro_acc:description) Exceptions : none Caller : domainview? , GeneView Status : Stable

public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::get_seq_region_id_external | ( | ) | [inherited] |
Undocumented method

public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::get_seq_region_id_internal | ( | ) | [inherited] |
Undocumented method

public Bio::EnsEMBL::DBSQL::TranscriptAdaptor::get_stable_entry_info | ( | ) |
public Boolean Bio::EnsEMBL::DBSQL::BaseAdaptor::is_multispecies | ( | ) | [inherited] |
Arg [1] : (optional) boolean $arg Example : if ($adaptor->is_multispecies()) { } Description: Getter/Setter for the is_multispecies boolean of to use for this adaptor. Returntype : boolean Exceptions : none Caller : general Status : Stable

public Boolean Bio::EnsEMBL::DBSQL::TranscriptAdaptor::is_Transcript_canonical | ( | ) |
Arg [1] : Bio::EnsEMBL::Transcript $transcript The transcript to query with Example : $tr_adaptor->is_Transcript_canonical($transcript); Description : Returns a boolean if the given transcript is considered canonical with respect to a gene Returntype : Boolean Exceptions : None Caller : Bio::EnsEMBL::Transcript Status : Beta

public Scalar Bio::EnsEMBL::DBSQL::BaseAdaptor::last_insert_id | ( | ) | [inherited] |
Arg [1] : (optional) $field the name of the field the inserted ID was pushed into Arg [2] : (optional) HashRef used to pass extra attributes through to the DBD driver Description : Delegating method which uses DBI to extract the last inserted identifier. If using MySQL we just call the DBI method DBI::last_insert_id() since MySQL ignores any extra arguments. See DBI for more information about this delegated method. Example : my $id = $self->last_insert_id('my_id'); my $other_id = $self->last_insert_id(); Returntype : Scalar or undef

public Bio::EnsEMBL::DBSQL::TranscriptAdaptor::list_dbIDs | ( | ) |
Example : @transcript_ids = @{ $t_adaptor->list_dbIDs }; Description: Gets a list of internal ids for all transcripts in the db. Arg[1] : <optional> int. not 0 for the ids to be sorted by the seq_region. Returntype : Listref of Ints Exceptions : none Caller : general Status : Stable

public Listref Bio::EnsEMBL::DBSQL::TranscriptAdaptor::list_stable_ids | ( | ) |
Example : @stable_trans_ids = @{ $transcript_adaptor->list_stable_ids }; Description: Gets a list of stable ids for all transcripts in the current database. Returntype : Listref of Strings Exceptions : none Caller : general Status : Stable

public Bio::EnsEMBL::BaseFeatureAdaptor Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::new | ( | ) | [inherited] |
Arg [1] : list of args @args Superclass constructor arguments Example : none Description: Constructor which warns if caching has been switched off Returntype : Bio::EnsEMBL::BaseFeatureAdaptor Exceptions : none Caller : implementing subclass constructors Status : Stable

Reimplemented from Bio::EnsEMBL::DBSQL::BaseAdaptor.
Reimplemented in Bio::EnsEMBL::DBSQL::DensityFeatureAdaptor, and Bio::EnsEMBL::DBSQL::UnmappedObjectAdaptor.
public DBI::StatementHandle Bio::EnsEMBL::DBSQL::BaseAdaptor::prepare | ( | ) | [inherited] |
Arg [1] : string $string a SQL query to be prepared by this adaptors database Example : $sth = $adaptor->prepare("select yadda from blabla") Description: provides a DBI statement handle from the adaptor. A convenience function so you dont have to write $adaptor->db->prepare all the time Returntype : DBI::StatementHandle Exceptions : none Caller : Adaptors inherited from BaseAdaptor Status : Stable

Reimplemented in Bio::EnsEMBL::DBSQL::SliceAdaptor, and Bio::EnsEMBL::External::BlastAdaptor.
public void Bio::EnsEMBL::DBSQL::TranscriptAdaptor::remove | ( | ) |
Arg [1] : Bio::EnsEMBL::Transcript $transcript The transcript to remove from the database Example : $tr_adaptor->remove($transcript); Description: Removes a transcript completely from the database, and all associated information. This method is usually called by the GeneAdaptor::remove method because this method will not preform the removal of genes which are associated with this transcript. Do not call this method directly unless you know there are no genes associated with the transcript! Returntype : none Exceptions : throw on incorrect arguments warning if transcript is not in this database Caller : GeneAdaptor::remove Status : Stable

Reimplemented from Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor.
public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::remove_by_analysis_id | ( | ) | [inherited] |
Undocumented method

public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::remove_by_feature_id | ( | ) | [inherited] |
Undocumented method

public Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::remove_by_RawContig | ( | ) | [inherited] |
public void Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::remove_by_Slice | ( | ) | [inherited] |
Arg [1] : Bio::Ensembl::Slice $slice Example : $feature_adaptor->remove_by_Slice($slice); Description: This removes features from the database which lie on a region represented by the passed in slice. Only features which are fully contained by the slice are deleted; features which overlap the edge of the slice are not removed. The table the features are removed from is defined by the abstract method_tablename. Returntype : none Exceptions : thrown if no slice is supplied Caller : general Status : Stable

public Int Bio::EnsEMBL::DBSQL::BaseAdaptor::species_id | ( | ) | [inherited] |
Arg [1] : (optional) int $species_id The internal ID of the species in a multi-species database. Example : $db = $adaptor->db(); Description: Getter/Setter for the internal ID of the species in a multi-species database. The default species ID is 1. Returntype : Integer Exceptions : none Caller : Adaptors inherited from BaseAdaptor Status : Stable

public Boolean Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor::start_equals_end | ( | ) | [inherited] |
Arg [1] : (optional) boolean $newval Example : $bfa->start_equals_end(1); Description: Getter/Setter for the start_equals_end flag. If set to true sub _slice_fetch will use a simplified sql to retrieve 1bp slices. Returntype : boolean Exceptions : none Caller : EnsemblGenomes variation DB build Status : Stable

public Int Bio::EnsEMBL::DBSQL::TranscriptAdaptor::store | ( | ) |
Arg [1] : Bio::EnsEMBL::Transcript $transcript The transcript to be written to the database Arg [2] : Int $gene_dbID The identifier of the gene that this transcript is associated with Arg [3] :
- Deprecated:
- (optional) Int $analysis_id The analysis_id to use when storing this gene. This is for backward compatibility only and used to fall back to the gene analysis_id if no analysis object is attached to the transcript (which you should do for new code). Example : $transID = $tr_adaptor->store($transcript, $gene->dbID); Description: Stores a transcript in the database and returns the new internal identifier for the stored transcript. Returntype : Int Exceptions : none Caller : general Status : Stable

Reimplemented from Bio::EnsEMBL::DBSQL::BaseFeatureAdaptor.
public void Bio::EnsEMBL::DBSQL::TranscriptAdaptor::update | ( | ) |
Arg [1] : Bio::EnsEMBL::Transcript $transcript The transcript to update Example : $tr_adaptor->update($transcript); Description: Updates a transcript in the database. Returntype : None Exceptions : thrown if the $transcript is not a Bio::EnsEMBL::Transcript. warn if the method is called on a transcript that does not exist in the database. Should warn if trying to update the number of attached exons, but this is a far more complex process and is not yet implemented. Caller : general Status : Stable

The documentation for this class was generated from the following file:
- Bio/EnsEMBL/DBSQL/TranscriptAdaptor.pm