Skip to content
Snippets Groups Projects
Commit ae1aa71a authored by andrewjpage's avatar andrewjpage Committed by GitHub
Browse files

Merge pull request #226 from aslett1/master

Updated NCBI blast URL to https
parents 17958dc8 5cfe2073
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ class RunBlastAtNCBI extends Thread
try
{
// Send data
URL url = new URL("http://blast.ncbi.nlm.nih.gov/Blast.cgi");
URL url = new URL("https://blast.ncbi.nlm.nih.gov/Blast.cgi");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
......@@ -258,4 +258,4 @@ class RunBlastAtNCBI extends Thread
RunBlastAtNCBI blast= new RunBlastAtNCBI(data);
blast.start();
}
}
\ No newline at end of file
}
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