Skip to content
Snippets Groups Projects
Commit d5bb1dc1 authored by tjc's avatar tjc
Browse files

use RunBlastAtNCBI

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@12265 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 31feb746
Branches
Tags
No related merge requests found
......@@ -27,7 +27,6 @@ package uk.ac.sanger.artemis.components;
import uk.ac.sanger.artemis.*;
import uk.ac.sanger.artemis.util.ReadOnlyException;
import uk.ac.sanger.artemis.editor.BrowserControl;
import uk.ac.sanger.artemis.io.EntryInformationException;
import uk.ac.sanger.artemis.io.InvalidKeyException;
......@@ -167,7 +166,13 @@ public class RunMenu extends SelectionMenu
else
residues = features.elementAt(0).getBases();
BrowserControl.displayURL(program.getProgramOptions()+residues);
String data = RunBlastAtNCBI.setData(programName, residues);
if(data != null)
{
RunBlastAtNCBI blastSearch = new RunBlastAtNCBI(data);
blastSearch.start();
}
//BrowserControl.displayURL(program.getProgramOptions()+residues);
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment