2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.analysis.CrossRef;
24 import jalview.datamodel.Alignment;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.DBRefSource;
27 import jalview.datamodel.SequenceI;
28 import jalview.gui.JvOptionPane;
29 import jalview.ws.seqfetcher.ASequenceFetcher;
30 import jalview.ws.seqfetcher.DbSourceProxy;
32 import java.util.Enumeration;
33 import java.util.List;
34 import java.util.Vector;
36 import org.testng.annotations.BeforeClass;
38 public class SequenceFetcherTest
41 @BeforeClass(alwaysRun = true)
42 public void setUpJvOptionPane()
44 JvOptionPane.setInteractiveMode(false);
45 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
49 * simple run method to test dbsources.
53 public static void main(String[] argv)
55 // TODO: extracted from SequenceFetcher - convert to proper unit test with
58 String usage = "SequenceFetcher.main [-nodas] [<DBNAME> [<ACCNO>]]\n"
59 + "With no arguments, all DbSources will be queried with their test Accession number.\n"
60 + "With one argument, the argument will be resolved to one or more db sources and each will be queried with their test accession only.\n"
61 + "If given two arguments, SequenceFetcher will try to find the DbFetcher corresponding to <DBNAME> and retrieve <ACCNO> from it.\n"
62 + "The -nodas option will exclude DAS sources from the database fetchers Jalview will try to use.";
63 boolean withDas = true;
64 if (argv != null && argv.length > 0
65 && argv[0].toLowerCase().startsWith("-nodas"))
68 String targs[] = new String[argv.length - 1];
69 System.arraycopy(argv, 1, targs, 0, targs.length);
72 if (argv != null && argv.length > 0)
74 List<DbSourceProxy> sps = new SequenceFetcher(withDas)
75 .getSourceProxy(argv[0]);
79 for (DbSourceProxy sp : sps)
84 testRetrieval(argv[0], sp,
85 argv.length > 1 ? argv[1] : sp.getTestQuery());
89 System.err.println("Error when retrieving "
90 + (argv.length > 1 ? argv[1] : sp.getTestQuery())
91 + " from " + argv[0] + "\nUsage: " + usage);
98 System.err.println("Can't resolve " + argv[0]
99 + " as a database name. Allowed values are :\n"
100 + new SequenceFetcher().getSupportedDb());
102 System.out.println(usage);
105 ASequenceFetcher sfetcher = new SequenceFetcher(withDas);
106 String[] dbSources = sfetcher.getSupportedDb();
107 for (int dbsource = 0; dbsource < dbSources.length; dbsource++)
109 String db = dbSources[dbsource];
111 if (db.equals(DBRefSource.PDB))
115 for (DbSourceProxy sp : sfetcher.getSourceProxy(db))
117 testRetrieval(db, sp, sp.getTestQuery());
123 private static void testRetrieval(String db, DbSourceProxy sp,
126 AlignmentI ds = null;
127 Vector<Object[]> noProds = new Vector<Object[]>();
128 System.out.println("Source: " + sp.getDbName() + " (" + db
129 + "): retrieving test:" + sp.getTestQuery());
131 AlignmentI al = null;
134 al = sp.getSequenceRecords(testQuery);
135 if (al != null && al.getHeight() > 0)
137 boolean dna = sp.isDnaCoding();
139 AlignmentI alds = al.getDataset();
140 // try and find products
141 CrossRef crossRef = new CrossRef(al.getSequencesArray(), alds);
142 List<String> types = crossRef.findXrefSourcesForSequences(dna);
145 System.out.println("Xref Types for: " + (dna ? "dna" : "prot"));
146 for (String source : types)
148 System.out.println("Type: " + source);
149 SequenceI[] prod = crossRef.findXrefSequences(source, dna)
150 .getSequencesArray();
151 System.out.println("Found "
152 + ((prod == null) ? "no" : "" + prod.length)
156 for (int p = 0; p < prod.length; p++)
158 System.out.println("Prod " + p + ": "
159 + prod[p].getDisplayId(true));
166 noProds.addElement((dna ? new Object[] { al, al }
167 : new Object[] { al }));
171 } catch (Exception ex)
173 System.out.println("ERROR:Failed to retrieve test query.");
174 ex.printStackTrace(System.out);
179 System.out.println("ERROR:No alignment retrieved.");
180 StringBuffer raw = sp.getRawRecords();
183 System.out.println(raw.toString());
187 System.out.println("ERROR:No Raw results.");
192 System.out.println("Retrieved " + al.getHeight() + " sequences.");
195 ds = al.getDataset();
199 ds.append(al.getDataset());
206 if (noProds.size() > 0)
208 Enumeration<Object[]> ts = noProds.elements();
209 while (ts.hasMoreElements())
212 Object[] typeSq = ts.nextElement();
213 boolean dna = (typeSq.length > 1);
214 AlignmentI al = (AlignmentI) typeSq[0];
215 System.out.println("Trying getProducts for "
216 + al.getSequenceAt(0).getDisplayId(true));
217 System.out.println("Search DS Xref for: " + (dna ? "dna" : "prot"));
218 // have a bash at finding the products amongst all the retrieved
220 SequenceI[] seqs = al.getSequencesArray();
221 Alignment prodal = new CrossRef(seqs, ds).findXrefSequences(null,
223 System.out.println("Found "
224 + ((prodal == null) ? "no" : "" + prodal.getHeight())
228 SequenceI[] prod = prodal.getSequencesArray(); // note
239 for (int p = 0; p < prod.length; p++)
241 System.out.println("Prod " + p + ": "
242 + prod[p].getDisplayId(true));