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

fix

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@5737 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent d021de65
No related branches found
No related tags found
No related merge requests found
......@@ -701,10 +701,12 @@ public class FastaTextPane extends JScrollPane
StringBuffer buff = new StringBuffer();
for(int i=0; i<queryMfetch.length; i++)
{
String mfetch = queryMfetch[i].toString();
if(mfetch.length() == 0)
if(queryMfetch[i] == null ||
queryMfetch[i].toString().length() == 0 )
continue;
String mfetch = queryMfetch[i].toString();
if(fmfetch.exists()) // local
{
String cmd[] = { "mfetch", "-f", "acc org des gen",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment