From 11cef0f32220a32bcdf525bd38417aa8ec2efdad Mon Sep 17 00:00:00 2001 From: tcarver <tjc> Date: Tue, 17 Jan 2012 10:22:22 +0000 Subject: [PATCH] add OLD_BLAST=false to GET --- uk/ac/sanger/artemis/components/RunBlastAtNCBI.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/uk/ac/sanger/artemis/components/RunBlastAtNCBI.java b/uk/ac/sanger/artemis/components/RunBlastAtNCBI.java index 1c4055e76..2ae2b6abd 100644 --- a/uk/ac/sanger/artemis/components/RunBlastAtNCBI.java +++ b/uk/ac/sanger/artemis/components/RunBlastAtNCBI.java @@ -42,7 +42,7 @@ import javax.swing.JTextField; import uk.ac.sanger.artemis.editor.BrowserControl; /** - * Used to POST data to the NCBI qBLAST web services. + * Used to POST data to the NCBI URLAPI (qBLAST) web services. */ class RunBlastAtNCBI extends Thread { @@ -94,7 +94,8 @@ class RunBlastAtNCBI extends Thread int waitTime = Integer.parseInt(eta); ProgressBarFrame progress = new ProgressBarFrame(waitTime, "BLAST"); Thread.sleep(waitTime * 1000); - BrowserControl.displayURL(urlResults + "&CMD=Get"); + BrowserControl.displayURL(urlResults + "&CMD=Get&OLD_BLAST=false"); + progress.dispose(); } catch (Exception e) -- GitLab