Downloading mbcdata.rda

Hi, I’m running through the miRNetR package vignette mapping microRNAs to multiple targets ( 3.1.2 Mapping to multiple targets) and it usually works. However, today I keep getting the below error in R when running the function QueryMultiListMir()

error:

> QueryMultiListMir()
[1] "Downloading https://www.xialab.ca/resources/sqlite/mir2gene.sqlite"
trying URL 'https://www.xialab.ca/resources/sqlite/mir2gene.sqlite'
Content type 'unknown' length 219815936 bytes (209.6 MB)
downloaded 209.6 MB

[1] "Converting ids for different miRBase versions ...."
trying URL 'https://www.mirnet.ca/resources/data/libs//mbcdata.rda'
Error in download.file(mbcdata.rda, destfile, mode = "wb") : 
  cannot open URL 'https://www.mirnet.ca/resources/data/libs//mbcdata.rda'
In addition: Warning message:
In download.file(mbcdata.rda, destfile, mode = "wb") :
  URL 'https://www.mirnet.ca/resources/data/libs//mbcdata.rda': status was 'SSL connect error'

So basically the mbcdata.rda file can’t be found.
Please advise.

Thanks

The “//” before the mbcdata.rda are quite unusual . Try the the following: https://www.mirnet.ca/resources/data/libs/mbcdata.rda

Yeah I saw that, but can it be fixed in the function Query.miRNetDB ?
There’s a line

mbcdata.rda <- paste(lib.path, "/mbcdata.rda", sep="");

The lib.path is stated as “https://www.mirnet.ca/resources/data/libs/

so maybe the above line can be re-written to:

mbcdata.rda <- paste(lib.path, "mbcdata.rda", sep="");

Its also funny that it works sometimes even without changing anything.

Thanks