Bio-EnsEMBL
view release on metacpan or search on metacpan
lib/Bio/EnsEMBL/MANE.pm view on Meta::CPAN
=head1 LICENSE
See the NOTICE file distributed with this work for additional information
regarding copyright ownership.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=cut
=head1 CONTACT
Please email comments or questions to the public Ensembl
developers list at <http://lists.ensembl.org/mailman/listinfo/dev>.
Questions may also be sent to the Ensembl help desk at
<http://www.ensembl.org/Help/Contact>.
=cut
=head1 NAME
Bio::EnsEMBL::MANE - Object representing a MANE transcript
=head1 SYNOPSIS
use Bio::EnsEMBL::MANE;
$mane_transcript = Bio::EnsEMBL::MANE->new(
-transcript => $transcript
);
=head1 DESCRIPTION
This is a MANE transcript
It represents an Ensembl transcript that has a matching RefSeq equivalent
=head1 METHODS
=cut
use strict;
package Bio::EnsEMBL::MANE;
$Bio::EnsEMBL::MANE::VERSION = '114.0.0';
use vars qw(@ISA);
use Bio::EnsEMBL::Feature;
use Bio::EnsEMBL::Utils::Argument qw(rearrange);
use Scalar::Util qw(weaken isweak);
@ISA = qw(Bio::EnsEMBL::Feature);
use constant SEQUENCE_ONTOLOGY => {
acc => 'SO:0000673',
term => 'transcript',
};
=head2 new
Arg [...] : Named arguments passed to superclass
Example : $feature = Bio::EnsEMBL::MANE->new
(-transcript => $transcript);
Description: Constructs a new Bio::EnsEMBL::MANE.
Returntype : Bio::EnsEMBL::MANE
Exceptions :
Caller : general, subclass constructors
Status : Stable
=cut
sub new {
my $caller = shift;
#allow this to be called as class or object method
my $class = ref($caller) || $caller;
my $self = $class->SUPER::new(@_);
my ($transcript, $stable_id, $seq_region_start, $seq_region_end) = rearrange(['TRANSCRIPT', 'STABLE_ID', 'SEQ_REGION_START', 'SEQ_REGION_END'],@_);
$self->{'transcript'} = $transcript;
$self->{'stable_id'} = $stable_id;
$self->{'seq_region_start'} = $seq_region_start;
$self->{'seq_region_end'} = $seq_region_end;
return $self;
}
=head2 transcript
Arg [1] : Fetch the original transcript object
Example : $transcript = $mane->transcript();
Description: Getter/Setter for the transcript object
Returntype : Bio::EnsEMBL::Transcript
Exceptions : none
Caller : general
Status : Stable
=cut
sub transcript {
my $self = shift;
$self->{'transcript'} = shift if(@_);
return $self->{'transcript'};
}
=head2 stable_id
Arg [1] : (optional) string $stable_id
Example : $stable_id = $mane->stable_id();
Description: Getter/Setter for the stable_id for
the transcript associated with this MANE transcript
Returntype : String
( run in 0.568 second using v1.01-cache-2.11-cpan-524268b4103 )