devtools::source_gist("bbaf5d53353b3944c090", filename="FlyCircuitStartupNat.R") # This creates a neuronlistfh called dps
nblast(query, target = dps)
trying URL 'http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/flycircuit/data/e92f2755df1f3c9d8b2622fdec8750b2'
InternetOpenUrl failed: 'The operation timed out'Error in download.file(url = paste0(attr(fh, "remote"), missing[i]), destfile = file.path(objDir, :
However, this produces the following error which terminates the execution of the code abovetrying URL 'http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/flycircuit/data/e92f2755df1f3c9d8b2622fdec8750b2'InternetOpenUrl failed: 'The operation timed out'Error in download.file(url = paste0(attr(fh, "remote"), missing[i]), destfile = file.path(objDir, :
dps<-read.neuronlistfh("http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/flycircuit/dpscanon.rds", localdir=getOption('flycircuit.datadir')) remotesync(dps,download.missing = TRUE)
I use as reference the following pages: https://gist.github.com/jefferis/bbaf5d53353b3944c090, http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/www/nblast_desktop/, http://jefferislab.github.io/nat.nblast/reference/nblast.htmlHowever, since these references only use the kcs20 dataset as an example, I was wondering if I'm missing something in how to use the FlyCircuit database as my target instead?Many thanks,Shruthi
--
You received this message because you are subscribed to the Google Groups "nat-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nat-user+u...@googlegroups.com.
Visit this group at https://groups.google.com/group/nat-user.
To view this discussion on the web, visit https://groups.google.com/d/msgid/nat-user/c57cefa7-3d05-449d-8035-1cf53d9f4dae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
flyCircuit_db = read.neurons('path/to/flycircuit.datadir')
nblast(query, flyCircuit_db)
Dear Shruthi,
What happens if you try to access that url directly in your web browser? It works ok from here.
However, this produces the following error which terminates the execution of the code abovetrying URL 'http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/flycircuit/data/e92f2755df1f3c9d8b2622fdec8750b2'InternetOpenUrl failed: 'The operation timed out'Error in download.file(url = paste0(attr(fh, "remote"), missing[i]), destfile = file.path(objDir, :The gist page (listed below) suggests doing this the first time you download these data:Did you try that yet?dps<-read.neuronlistfh("http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/flycircuit/dpscanon.rds", localdir=getOption('flycircuit.datadir')) remotesync(dps,download.missing = TRUE)Best,Greg.
--I use as reference the following pages: https://gist.github.com/jefferis/bbaf5d53353b3944c090, http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/www/nblast_desktop/, http://jefferislab.github.io/nat.nblast/reference/nblast.htmlHowever, since these references only use the kcs20 dataset as an example, I was wondering if I'm missing something in how to use the FlyCircuit database as my target instead?Many thanks,Shruthi
You received this message because you are subscribed to the Google Groups "nat-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nat-...@googlegroups.com.
devtools::source_gist("bbaf5d53353b3944c090", filename="FlyCircuitStartupNat.R") # This creates a neuronlistfh called dps
nblast(query, target = dps)
dps<-read.neuronlistfh("http://flybrain.mrc-lmb.cam.ac.uk/si/nblast/flycircuit/dpscanon.rds", localdir=getOption('flycircuit.datadir'))
nblast(query, target = dps)