-
|
I am trying to run Blast on Jupyter notebooks, but when I try to open the code I was given here: https://owl.fish.washington.edu/halfshell/genomic-databank/hemat_transcriptome_v1.5.fasta using !curl https://owl.fish.washington.edu/halfshell/genomic-databank/hemat_transcriptome_v1.5.fasta I keep getting an SSL certificate problem. This is probably because I haven't figured out how to tell the Jupyter command line how to log into a uw account. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Change your command to one of the following:
OR
The problem has to do with the server certificate which is installed on that server (owl). Removing the Sorry for the hassle! |
Beta Was this translation helpful? Give feedback.
Change your command to one of the following:
!curl http://owl.fish.washington.edu/halfshell/genomic-databank/hemat_transcriptome_v1.5.fastaOR
!curl --insecure https://owl.fish.washington.edu/halfshell/genomic-databank/hemat_transcriptome_v1.5.fastaThe problem has to do with the server certificate which is installed on that server (owl). Removing the
sfromhttpseliminates the certificate requirement when fetching files. Alternatively, tellingcurlthat the site is "insecure" tellscurlto ignore any certificate junk.Sorry for the hassle!