Skip to content
Snippets Groups Projects
Commit b8ab9499 authored by Patrick Meidl's avatar Patrick Meidl
Browse files

removed display_name attribute

parent 413d0d81
No related branches found
No related tags found
No related merge requests found
......@@ -88,20 +88,13 @@ sub logic_name {
}
sub display_name {
sub is_known {
my $self = shift;
$self->[12] = shift if (@_);
return $self->[12];
}
sub is_known {
my $self = shift;
$self->[13] = shift if (@_);
return $self->[13];
}
sub add_Transcript {
my $self = shift;
my $tr = shift;
......@@ -110,12 +103,12 @@ sub add_Transcript {
throw('Need a Bio::EnsEMBL::IdMapping::TinyTranscript.');
}
push @{ $self->[14] }, $tr;
push @{ $self->[13] }, $tr;
}
sub get_all_Transcripts {
return $_[0]->[14] || [];
return $_[0]->[13] || [];
}
......
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