*/
package jalview.ws.ebi;
+import jalview.datamodel.DBRefSource;
import jalview.util.MessageManager;
import java.io.BufferedInputStream;
*
* @param ids
* the query formatted as db:query1;query2;query3
- * @param f
+ * @param format
* the format wanted
* @param s
* - unused parameter
* @return the file holding the response
* @throws OutOfMemoryError
*/
- public File fetchDataAsFile(String ids, String f, String s)
+ public File fetchDataAsFile(String ids, String format, String s)
throws OutOfMemoryError
{
File outFile = null;
{
outFile = File.createTempFile("jalview", ".xml");
outFile.deleteOnExit();
- fetchData(ids, f, s, outFile);
+ fetchData(ids, format, s, outFile);
if (outFile.length() == 0)
{
outFile.delete();
*
* @param ids
* db:query1;query2;query3
- * @param f
+ * @param format
* raw/xml
* @param s
* not used - remove?
*
* @return Raw string array result of query set
*/
- public String[] fetchData(String ids, String f, String s)
+ public String[] fetchData(String ids, String format, String s)
throws OutOfMemoryError
{
- return fetchData(ids, f, s, null);
+ return fetchData(ids, format, s, null);
}
- public String[] fetchData(String ids, String f, String s, File outFile)
+ String[] fetchData(String ids, String f, String s, File outFile)
throws OutOfMemoryError
{
// Need to split
return (rslts.length == 0 ? null : rslts);
}
- public String[] fetchBatch(String ids, String db, String f, String s,
+ public String[] fetchBatch(String ids, String dbPath, String format, String s,
File outFile) throws OutOfMemoryError
{
- long time = System.currentTimeMillis();
- // max 200 ids can be added at one time
+ // long time = System.currentTimeMillis();
+ /*
+ * JAL-1855 dbfetch from ena_sequence, ena_coding
+ */
+ if (dbPath.equalsIgnoreCase(DBRefSource.EMBL))
+ {
+ dbPath = "ena_sequence";
+ }
+ else if (dbPath.equalsIgnoreCase(DBRefSource.EMBLCDS))
+ {
+ dbPath = "ena_coding";
+ }
+
try
{
URL rcall = new URL("http://www.ebi.ac.uk/Tools/dbfetch/dbfetch/"
- + db.toLowerCase() + "/" + ids.toLowerCase()
- + (f != null ? "/" + f : ""));
+ + dbPath.toLowerCase() + "/" + ids.toLowerCase()
+ + (format != null ? "/" + format : ""));
InputStream is = new BufferedInputStream(rcall.openStream());
if (outFile != null)
} catch (OutOfMemoryError er)
{
- System.out.println("OUT OF MEMORY DOWNLOADING QUERY FROM " + db
+ System.out.println("OUT OF MEMORY DOWNLOADING QUERY FROM " + dbPath
+ ":\n" + ids);
throw er;
} catch (Exception ex)
{
return null;
}
- System.err.println("Unexpected exception when retrieving from " + db
+ System.err.println("Unexpected exception when retrieving from "
+ + dbPath
+ "\nQuery was : '" + ids + "'");
ex.printStackTrace(System.err);
return null;
} finally
{
- // System.err.println("Took " + (System.currentTimeMillis() - time)
- // / 1000 + " secs for one call.");
+ // System.err.println("EBIFetch took " + (System.currentTimeMillis() -
+ // time) + " ms");
}
return null;
}