Skip to content
Snippets Groups Projects
Commit 3a3caf62 authored by Ian Longden's avatar Ian Longden
Browse files

Unigene no longer gotten from uniprot as it now has its own file

parent 485794ca
No related branches found
No related tags found
No related merge requests found
......@@ -259,7 +259,9 @@ sub create_xrefs {
my ($deps) = $_ =~ /(DR\s+.+)/s; # /s allows . to match newline
my @dep_lines = split /\n/, $deps;
foreach my $dep (@dep_lines) {
if($dep =~ /GO/){
#both GO and UniGene have the own sources so ignore those in the uniprot files
#as the uniprot data should be older
if($dep =~ /GO/ || $dep =~ /UniGene/){
next;
}
if ($dep =~ /^DR\s+(.+)/) {
......
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