--
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.
To view this discussion on the web, visit https://groups.google.com/d/msgid/nat-user/5ab7cc98-a22f-4c8a-9509-d3e729d08a55n%40googlegroups.com.
On 21 Nov 2020, at 16:53, Li Guo <li_...@ucsb.edu> wrote:
Hi Greg,Thanks for your information! Before I changed the Renviron, the python R pointed to is :> library('reticulate')> repl_python()Python 3.6.11 (/Users/liguo/Library/r-miniconda/envs/r-reticulate/bin/python)Reticulate 1.16 REPL -- A Python interpreter in R.After modification, the python R used is :> repl_python()Python 3.8.5 (/Library/Frameworks/Python.framework/Versions/3.8/bin/python3)Reticulate 1.16 REPL -- A Python interpreter in R.Looks like the system one and what I installed were both python3, but the versions were different.After I chose the flywire segmentation, I still got the error:
> choose_segmentation("flywire31")> gf.flywire=read_cloudvolume_meshes("720575940615763227")
downloading meshes
Error in py_call_impl(callable, dots$args, dots$keywords) :
AuthenticationError: No Graphene authentication token was provided. Does ~/.cloudvolume/secrets/chunkedgraph-secret.json exist?Detailed traceback:File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/cloudvolume.py", line 207, in __new__return REGISTERED_PLUGINS[path.format](**kwargs)File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/datasource/graphene/__init__.py", line 43, in create_graphenemeta = GrapheneMetadata(File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/datasource/graphene/metadata.py", line 92, in __init__"Authorization": "Bearer %s" % self.parse_token(auth_token)File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/datasource/graphene/metadata.py", line 120, in parse_tokenraise exceptions.AuthenticationError(Do you have any suggestions to solve this?BestsLiOn Nov 21, 2020, at 8:53 AM, Li Guo <li_...@ucsb.edu> wrote:Hi Greg,Thanks for your information! Before I changed the Renviron, the python R pointed to is :> library('reticulate')> repl_python()Python 3.6.11 (/Users/liguo/Library/r-miniconda/envs/r-reticulate/bin/python)Reticulate 1.16 REPL -- A Python interpreter in R.After modification, the python R used is :> repl_python()Python 3.8.5 (/Library/Frameworks/Python.framework/Versions/3.8/bin/python3)Reticulate 1.16 REPL -- A Python interpreter in R.Looks like the system one and what I installed were both python3, but the versions were different.After I chose the flywire segmentation, I still got the error:
> choose_segmentation("flywire31")> gf.flywire=read_cloudvolume_meshes("720575940615763227")
downloading meshes
Error in py_call_impl(callable, dots$args, dots$keywords) :
AuthenticationError: No Graphene authentication token was provided. Does ~/.cloudvolume/secrets/chunkedgraph-secret.json exist?Detailed traceback:File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/cloudvolume.py", line 207, in __new__return REGISTERED_PLUGINS[path.format](**kwargs)File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/datasource/graphene/__init__.py", line 43, in create_graphenemeta = GrapheneMetadata(File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/datasource/graphene/metadata.py", line 92, in __init__"Authorization": "Bearer %s" % self.parse_token(auth_token)File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/cloudvolume/datasource/graphene/metadata.py", line 120, in parse_tokenraise exceptions.AuthenticationError(Do you have any suggestions to solve this?BestsLi
On 22 Nov 2020, at 19:41, Li Guo <li_...@ucsb.edu> wrote:
Hi Greg,Thanks for your suggestions! I have another question for synapses plotting. If I got all the synapse information and saved them in (x,y,z) format according to the flywire segmentation:
(136174, 77325, 5392) (136195, 77358, 5393) (136170, 77360, 5394) (136178, 77400, 5397) (136336, 77300, 5402) (146779, 71264, 4424) (146848, 71171, 4433) (146880, 71155, 4435) (146760, 71204, 4434) (146864, 71146, 4437) (146894, 71150, 4436) (146840, 71170, 4436) (146890, 71148, 4436) (146886, 71146, 4436) (146842, 71160, 4436) (146844, 71157, 4439) (146863, 71141, 4441) (146829, 71161, 4442) (146796, 71177, 4441)How can I show these dots with neuron in the natverse?BestsLiOn Nov 21, 2020, at 10:55 AM, Gregory Jefferis <jeff...@gmail.com> wrote:That is the correct template although you can convert it to FlyWire space if you want. SeeFor details.To avoid the axes, doplot3d(gf.flywire[1], col='red', lwd=3)Orwire3d(gf.flywire[[1]], col='red', lwd=3)shade3d(gf.flywire[[1]], col='red', lwd=3)This has to do with whether you are plotting a neuronlist or an individual mesh3d object.All the best,Greg.Sent from my iPhone
On 21 Nov 2020, at 18:17, Li Guo <li_...@ucsb.edu> wrote:
Hi Greg,I think I figure out how to solve this problem by myself. I am excited to get my plot by:gf.flywire=read_cloudvolume_meshes("720575940615763227”)plot3d(gf.flywire[[1]], col='red', lwd=3)plot3d(FAFB14,alpha=0.1)<Screen Shot 2020-11-21 at 10.15.09 AM.png>Did I use the right template? If it is possible, can you show a example how to remove the axis on the figure? And can I save the plot into PDF?