From 36243c6df0fff342448d456e47137805bf367942 Mon Sep 17 00:00:00 2001 From: Ian Longden <ianl@sanger.ac.uk> Date: Tue, 21 Jul 2009 15:29:30 +0000 Subject: [PATCH] do NOT get UCSC or IPI info form Uniprot. These have their own files --- misc-scripts/xref_mapping/XrefParser/UniProtParser.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/misc-scripts/xref_mapping/XrefParser/UniProtParser.pm b/misc-scripts/xref_mapping/XrefParser/UniProtParser.pm index 9f0b581641..c20543083d 100644 --- a/misc-scripts/xref_mapping/XrefParser/UniProtParser.pm +++ b/misc-scripts/xref_mapping/XrefParser/UniProtParser.pm @@ -482,6 +482,12 @@ sub create_xrefs { if($source =~ "RGD"){ #using RGD file now instead. next; } + if($source =~ "IPI"){ + next; + } + if($source =~ "UCSC"){ + next; + } if (exists $dependent_sources{$source} ) { # create dependent xref structure & store it my %dep; -- GitLab