Skip to content
Snippets Groups Projects
Commit 88b01ea8 authored by Magali Ruffier's avatar Magali Ruffier
Browse files

overwrite method transcript_name_from_gene, as this is no required for merged species

parent 36012e30
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,13 @@ sub get_canonical_name{
return "ZFIN_ID";
}
# Not running transcript_names_from_gene for merged species
# as this is already been done in the OfficialNaming mapper
sub transcript_names_from_gene {
return;
}
sub species_specific_pre_attributes_set{
my $self = shift;
$self->official_naming();
......
......@@ -60,6 +60,13 @@ sub get_canonical_name{
return "HGNC";
}
# Not running transcript_names_from_gene for merged species
# as this is already been done in the OfficialNaming mapper
sub transcript_names_from_gene {
return;
}
sub species_specific_cleanup{
my $self = shift;
my $dbname = $self->get_canonical_name;
......@@ -86,15 +93,6 @@ JSQL
}
#
#for human display_xrefs and gene descriptions have already been set in official_naming
#so we only beed to do the status's
#
#sub genes_and_transcripts_attributes_set{
# my $self = shift;
# print "NEED TO SET STATUS ONLY FOR HUMAN!!!\n";
# $self->build_gene_transcript_status();
#}
sub set_display_xrefs{
my $self = shift;
......@@ -109,14 +107,5 @@ sub set_gene_descriptions(){
$display->set_gene_descriptions_from_display_xref()
}
# For human we want to make a copy of the HGNC references on the genes and put them on
# the "canonical" transcripts
#sub species_specific_pre_attributes_set{
# my $self = shift;
# $self->official_naming();
#}
1;
......@@ -29,6 +29,12 @@ sub get_canonical_name{
return "MGI";
}
# Not running transcript_names_from_gene for merged species
# as this is already been done in the OfficialNaming mapper
sub transcript_names_from_gene {
return;
}
sub species_specific_pre_attributes_set{
my $self = shift;
$self->official_naming();
......
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