Skip to content
Snippets Groups Projects
Commit 923cc6c4 authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

New utility object for finding canonical transcripts. Refactoring of...

New utility object for finding canonical transcripts. Refactoring of "set_canonical_transcript.pl" logic.
parent a08b56ee
No related branches found
No related tags found
No related merge requests found
=head1 LICENSE
Copyright (c) 1999-2012 The European Bioinformatics Institute and
Genome Research Limited. All rights reserved.
This software is distributed under a modified Apache license.
For license details, please see
http://www.ensembl.org/info/about/code_licence.html
=head1 CONTACT
Please email comments or questions to the public Ensembl
developers list at <dev@ensembl.org>.
Questions may also be sent to the Ensembl help desk at
<helpdesk@ensembl.org>.
=cut
=head1 NAME
Bio::EnsEMBL::Utils::TranscriptSelector - Finds canonical transcripts
=head1 SYNOPSIS
my $selector = Bio::EnsEMBL::Utils::TranscriptSelector->new($ccds_dba);
my $canonical_transcript = $selector->select_canonical_transcript_for_Gene($gene);
=head1 DESCRIPTION
The decision process for choosing a canonical transcript of a given Gene is
an involved process. This package converts transcript attributes into
numeric values, sorts the values and returns the favourite transcript.
The canonical order of precedence is as follows:
longest translation of transcript present in CCDS that is reference sequence
longest translation of protein-coding transcript
longest translation of transcript marked nonsense-mediated-decay
longest translation of any other transcript
longest non-coding transcript
first stable ID in alphabetical order
The last condition is to give consistent behaviour when everything is else is equal
=cut
package Bio::EnsEMBL::Utils::TranscriptSelector;
use strict;
use warnings;
use Bio::EnsEMBL::Utils::Exception;
=head2 new
Arg [1] : Optional - CCDS database adaptor - needed for species with CCDS only
Arg [2] : Optional - Boolean verbose flag. Turn on to fill your logs
Description: Constructor
Returntype : Bio::EnsEMBL::Utils::TranscriptSelector
=cut
sub new {
my $class = shift;
my $self = {
'ccds_dba' => shift,
'verbose' => shift,
};
bless $self, $class;
return $self;
}
=head2 select_canonical_transcript_for_Gene
Arg 1 : Bio::EnsEMBL::Gene
Example : $canonical_transcript = $selector->select_canonical_transcript_for_Gene
Description: Sorts the Transcripts of this Gene into order of suitability,
and returns the favourite Transcript.
Returntype : Bio::EnsEMBL::Transcript
Exceptions :
=cut
sub select_canonical_transcript_for_Gene {
my $self = shift;
my $gene = shift;
if (!$gene) {throw ('Cannot select canonical transcript without a gene.');}
my $transcript_array = $gene->get_all_Transcripts;
my @transcripts;
if ($transcript_array) {
@transcripts = @$transcript_array;
} else {
warning('No transcripts attached to gene '.$gene->stable_id);
return undef;
}
my @encoded; # array of encoded transcripts
foreach my $transcript (@transcripts) {
my $encoded_transcript = $self->encode_transcript($transcript);
push(@encoded, $encoded_transcript );
if ($self->{'verbose'}) {
printf "%s encoded to: [%s,%s,%s,%s,%s,%s]\n",$transcript->stable_id, @$encoded_transcript;
}
}
my $sorted_ids = $self->sort_into_canonical_order(\@encoded);
if ($self->{'verbose'}) {
print "Sorted order: \n";
foreach my $dbID (@$sorted_ids) {
print $dbID."\n";
}
}
my $canonical_dbID = $sorted_ids->[0];
foreach my $transcript (@transcripts) {
if ($transcript->dbID == $canonical_dbID) {
if ($self->{'verbose'}) {print 'Chosen transcript: '.$transcript->stable_id."\n";}
return $transcript;
}
}
throw ('Run out of transcripts without finding selected canonical dbID.')
}
# Constants for doing numerical sorting of transcripts based upon which ones we prefer. Lowest is best.
my %source_priority = ('ccds' => 1,
'merge' => 2,
'other' => 3);
my %biotype_priority = ('protein_coding' => 1,
'nonsense_mediated_decay' => 2,
'other' => 3,
);
=head2 encode_transcript
Arg 1 : Transcript
Description: Converts a transcript into a list of encoded values for sorting
Priorities are defined immediately above
Unimportant biotypes and sources are classed as 'other'
Returntype : Listref of encoded attributes
=cut
sub encode_transcript {
my $self = shift;
my $transcript = shift;
my $type;
if ( $self->{'ccds_dba'} && $transcript->slice->is_reference()
&& $self->check_Ens_trans_against_CCDS($transcript) ) {
$type = 'ccds';
} elsif ($transcript->analysis->logic_name eq 'ensembl_havana_transcript') {
$type = 'merged';
} else {
$type = 'other';
}
my $translation = $transcript->translate;
my $translation_length = 0;
if ($translation) {
$translation_length = $translation->length;
# Translations containing premature stops are undesirable.
if ($translation->seq =~ /\*/) {$translation_length = 0;}
}
# Zero-length/non-existent translations are ok. We sort by coding and non-coding first
my $transcript_length = $transcript->length;
my $biotype;
if ( $transcript->biotype() ne 'protein_coding'
&& $transcript->biotype() ne 'nonsense_mediated_decay') {
$biotype = 'other';
} else { $biotype = $transcript->biotype(); }
return [$transcript->dbID,
$source_priority{$type},
$biotype_priority{$biotype},
$translation_length,
$transcript_length,
$transcript->stable_id];
}
=head2 sort_into_canonical_order
Arg 1 : 2D array reference of numerically encoded values
( [transcript dbID, source , biotype, translation length, transcript length, stable ID],
...
)
Description: see Schwartzian transform for method in the following madness:
sort the 6-column array by the last 5 columns, then map the first elements
into a list of dbIDs, now in canonical order.
Returntype : Listref of ensembl dbIDs
Caller : select_canonical_transcript_for_Gene
=cut
sub sort_into_canonical_order {
my $self = shift;
my $encoded_list_ref = shift;
my @sorted_ids = map { $_->[0] }
sort {
$a->[1] <=> $b->[1] || # source
$a->[2] <=> $b->[2] || # biotype
$b->[3] <=> $a->[3] || # translation length (largest is best, $a and $b reversed)
$b->[4] <=> $a->[4] || # transcript length "
$a->[5] cmp $b->[5] # stable id. All other things being equal, 'lowest' transcript ID wins
} @{$encoded_list_ref};
return \@sorted_ids;
}
=head2 check_Ens_trans_against_CCDS
Arg 1 : Transcript
Description: Attempts to find a matching transcript in CCDS by comparing Exon
composition. Returns true if one is found, or silently ends.
Returntype : Boolean
Caller : encode_transcript
=cut
sub check_Ens_trans_against_CCDS {
my ( $self ,$transcript ) = @_;
my @translateable_exons = @{ $transcript->get_all_translateable_Exons };
my $ext_slice = $self->{'ccds_dba'}->get_SliceAdaptor->fetch_by_region(
'toplevel',
$transcript->slice->seq_region_name,
$transcript->seq_region_start,
$transcript->seq_region_end );
EXT_GENE: foreach my $ext_gene ( @{ $ext_slice->get_all_Genes } ) {
EXT_TRANS: foreach my $ext_trans ( @{ $ext_gene->get_all_Transcripts } ) {
my @ext_exons = @{ $ext_trans->get_all_Exons };
if ( scalar(@translateable_exons) == scalar(@ext_exons) ) {
for ( my $i = 0 ; $i < scalar(@translateable_exons) ; $i++ ) {
if ( $translateable_exons[$i]->coding_region_start($transcript)
!= $ext_exons[$i]->seq_region_start
|| $translateable_exons[$i]->strand
!= $ext_exons[$i]->strand
|| $translateable_exons[$i]->coding_region_end($transcript)
!= $ext_exons[$i]->seq_region_end
) {
next EXT_TRANS;
}
}
print "Ensembl transcript "
. $transcript->display_id
. " found match "
. $ext_gene->display_id
. " in CCDS DB.\n" if $self->{'verbose'};
return 1;
}
} # end foreach EXT_TRANS
} # end foreach EXT_GENE
} ## end sub check_Ens_trans_against_CCDS
1;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment