Skip to content
Snippets Groups Projects
Commit 0af3e239 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Modify gene description priority list so we get Anopheles_symbol descriptions...

Modify gene description priority list so we get Anopheles_symbol descriptions in preference to anything else if they're there.
parent 02aa20b4
No related branches found
No related tags found
No related merge requests found
......@@ -12,9 +12,22 @@ sub get_set_lists {
}
# transcript, gene display_xrefs and descriptions can use defaults
# transcript, gene display_xrefs can use defaults
# since anopheles_symbol is "before" Uniprot
# If there is an Anopheles_symbol xref, use its description
sub gene_description_sources {
return ("RefSeq_dna_predicted",
"RefSeq_peptide_predicted",
"Uniprot/SPTREMBL",
"RefSeq_dna",
"RefSeq_peptide",
"Uniprot/SWISSPROT",
"Anopheles_symbol");
}
# regexps to match any descriptons we want to filter out
sub gene_description_filter_regexps {
......
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