X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2FUniprot.java;h=1deb272aa77b5c3f70b9e023579774c540c08719;hb=b2f9a8d7bce642ff4011bc6d49e02bb0569fbb11;hp=f29a555c4c74c9c3f81f01a2a63b9cd55a5fedcf;hpb=25ae256a88bf092f45a78b649a48f41e6fd5d70b;p=jalview.git diff --git a/src/jalview/ws/dbsources/Uniprot.java b/src/jalview/ws/dbsources/Uniprot.java index f29a555..1deb272 100644 --- a/src/jalview/ws/dbsources/Uniprot.java +++ b/src/jalview/ws/dbsources/Uniprot.java @@ -1,13 +1,26 @@ -/** +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1) + * Copyright (C) 2014 The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. * + * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.ws.dbsources; import java.io.File; import java.io.FileReader; -import java.io.IOException; import java.util.Enumeration; -import java.util.Hashtable; import java.util.Vector; import org.exolab.castor.xml.Unmarshaller; @@ -23,9 +36,6 @@ import jalview.datamodel.SequenceFeature; import jalview.datamodel.SequenceI; import jalview.datamodel.UniprotEntry; import jalview.datamodel.UniprotFile; -import jalview.io.FormatAdapter; -import jalview.io.IdentifyFile; -import jalview.ws.DBRefFetcher; import jalview.ws.ebi.EBIFetchClient; import jalview.ws.seqfetcher.DbSourceProxy; import jalview.ws.seqfetcher.DbSourceProxyImpl; @@ -36,11 +46,12 @@ import jalview.ws.seqfetcher.DbSourceProxyImpl; */ public class Uniprot extends DbSourceProxyImpl implements DbSourceProxy { - public Uniprot() { + public Uniprot() + { super(); addDbSourceProperty(DBRefSource.SEQDB, DBRefSource.SEQDB); addDbSourceProperty(DBRefSource.PROTSEQDB); -// addDbSourceProperty(DBRefSource.MULTIACC, new Integer(50)); + // addDbSourceProperty(DBRefSource.MULTIACC, new Integer(50)); } /* @@ -60,7 +71,7 @@ public class Uniprot extends DbSourceProxyImpl implements DbSourceProxy */ public Regex getAccessionValidator() { - return null; + return new Regex("([A-Z]+[0-9]+[A-Z0-9]+|[A-Z0-9]+_[A-Z0-9]+)"); } /* @@ -85,24 +96,31 @@ public class Uniprot extends DbSourceProxyImpl implements DbSourceProxy private EBIFetchClient ebi = null; + private static org.exolab.castor.mapping.Mapping map; + public Vector getUniprotEntries(File file) { UniprotFile uni = new UniprotFile(); try { - // 1. Load the mapping information from the file - org.exolab.castor.mapping.Mapping map = new org.exolab.castor.mapping.Mapping(uni.getClass().getClassLoader()); - java.net.URL url = getClass().getResource("/uniprot_mapping.xml"); - map.loadMapping(url); + if (map == null) + { + // 1. Load the mapping information from the file + map = new org.exolab.castor.mapping.Mapping(uni.getClass() + .getClassLoader()); + java.net.URL url = getClass().getResource("/uniprot_mapping.xml"); + map.loadMapping(url); + } // 2. Unmarshal the data Unmarshaller unmar = new Unmarshaller(uni); unmar.setIgnoreExtraElements(true); unmar.setMapping(map); - - uni = (UniprotFile) unmar.unmarshal(new FileReader(file)); - } - catch (Exception e) + if (file != null) + { + uni = (UniprotFile) unmar.unmarshal(new FileReader(file)); + } + } catch (Exception e) { System.out.println("Error getUniprotEntries() " + e); } @@ -120,11 +138,15 @@ public class Uniprot extends DbSourceProxyImpl implements DbSourceProxy startQuery(); try { - Alignment al=null; + queries = queries.toUpperCase().replaceAll( + "(UNIPROT\\|?|UNIPROT_|UNIREF\\d+_|UNIREF\\d+\\|?)", ""); + Alignment al = null; ebi = new EBIFetchClient(); - StringBuffer result=new StringBuffer(); + StringBuffer result = new StringBuffer(); // uniprotxml parameter required since december 2007 - File file = ebi.fetchDataAsFile("uniprot:" + queries, "uniprotxml", null); + // uniprotkb dbname changed introduced december 2008 + File file = ebi.fetchDataAsFile("uniprotkb:" + queries, "uniprotxml", + null); Vector entries = getUniprotEntries(file); if (entries != null) @@ -149,12 +171,13 @@ public class Uniprot extends DbSourceProxyImpl implements DbSourceProxy name.append(en2.nextElement()); } - if (entry.getProtein()!=null && entry.getProtein().getName()!=null) + if (entry.getProtein() != null + && entry.getProtein().getName() != null) { - for (int nm=0,nmSize=entry.getProtein().getName().size(); nm