X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2FEmblXmlSource.java;h=b1395745ccc8539752d2279ce038bf5f89e2ceed;hb=refs%2Fheads%2Freleases%2FRelease_2_10_0_Branch;hp=66ebe1bedb298dedd9363b8e8ee36ca4369c7e62;hpb=409fd993c6e32e999b24082aae107a043a590f8f;p=jalview.git diff --git a/src/jalview/ws/dbsources/EmblXmlSource.java b/src/jalview/ws/dbsources/EmblXmlSource.java index 66ebe1b..b139574 100644 --- a/src/jalview/ws/dbsources/EmblXmlSource.java +++ b/src/jalview/ws/dbsources/EmblXmlSource.java @@ -29,14 +29,15 @@ import jalview.util.MessageManager; import jalview.ws.ebi.EBIFetchClient; import java.io.File; +import java.util.ArrayList; +import java.util.List; public abstract class EmblXmlSource extends EbiFileRetrievedProxy { - - /** - * Last properly parsed embl file. + /* + * JAL-1856 Embl returns this text for query not found */ - public EmblFile efile = null; + private static final String EMBL_NOT_FOUND_REPLY = "ERROR 12 No entries found."; public EmblXmlSource() { @@ -62,7 +63,8 @@ public abstract class EmblXmlSource extends EbiFileRetrievedProxy try { reply = dbFetch.fetchDataAsFile( - emprefx.toLowerCase() + ":" + query.trim(), "emblxml", null); + emprefx.toLowerCase() + ":" + query.trim(), "display=xml", + ".xml"); } catch (Exception e) { stopQuery(); @@ -88,68 +90,41 @@ public abstract class EmblXmlSource extends EbiFileRetrievedProxy public AlignmentI getEmblSequenceRecords(String emprefx, String query, File reply) throws Exception { - SequenceI seqs[] = null; - StringBuffer result = new StringBuffer(); + EmblFile efile = null; + List seqs = new ArrayList(); + if (reply != null && reply.exists()) { - efile = null; file = reply.getAbsolutePath(); - if (reply.length() > 25) + if (reply.length() > EMBL_NOT_FOUND_REPLY.length()) { efile = EmblFile.getEmblFile(reply); } - else - { - result.append(MessageManager.formatMessage( - "label.no_embl_record_found", - new String[] { emprefx.toLowerCase(), query.trim() })); - } } - if (efile != null) + + /* + * invalid accession gets a reply with no elements, text content of + * EmbFile reads something like (e.g.) this ungrammatical phrase + * Entry: display type is either not supported or entry is not found. + */ + List peptides = new ArrayList(); + if (efile != null && efile.getEntries() != null) { for (EmblEntry entry : efile.getEntries()) { - SequenceI[] seqparts = entry.getSequences(false, true, emprefx); - // TODO: use !fetchNa,!fetchPeptide here instead - see todo in EmblEntry - if (seqparts != null) + SequenceI seq = entry.getSequence(emprefx, peptides); + if (seq != null) { - SequenceI[] newseqs = null; - int si = 0; - if (seqs == null) - { - newseqs = new SequenceI[seqparts.length]; - } - else - { - newseqs = new SequenceI[seqs.length + seqparts.length]; - - for (; si < seqs.length; si++) - { - newseqs[si] = seqs[si]; - seqs[si] = null; - } - } - for (int j = 0; j < seqparts.length; si++, j++) - { - newseqs[si] = seqparts[j].deriveSequence(); - // place DBReferences on dataset and refer - } - seqs = newseqs; - + seqs.add(seq.deriveSequence()); + // place DBReferences on dataset and refer } } } - else - { - result = null; - } + AlignmentI al = null; - if (seqs != null && seqs.length > 0) + if (!seqs.isEmpty()) { - al = new Alignment(seqs); - result.append(MessageManager.formatMessage( - "label.embl_successfully_parsed", new String[] { emprefx })); - results = result; + al = new Alignment(seqs.toArray(new SequenceI[seqs.size()])); } stopQuery(); return al;