https://github.com/jefferis/rflyem
Tools for working with Janelia FlyEM data
https://github.com/jefferis/rflyem
Last synced: 3 months ago
JSON representation
Tools for working with Janelia FlyEM data
- Host: GitHub
- URL: https://github.com/jefferis/rflyem
- Owner: jefferis
- Created: 2017-08-21T21:46:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-21T21:53:08.000Z (over 7 years ago)
- Last Synced: 2025-01-16T03:33:17.346Z (4 months ago)
- Language: R
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rflyem
The goal of rflyem is to provide R access to connectomic data shared by the
Janelia FlyEM project at http://emdata.janelia.org## Example
This is a basic example which shows you how to solve a common problem:
``` r
## basic example code
library(rflyem)
u="http://emdata.janelia.org/api/node/822524777d3048b8bd520043f90c1d28/.files/key/synapse.json"
s=read_synapse(u)library(nat)
points3d(xyzmatrix(s$tbars))```
## Installation
``` r
if(!require('devtools')) install.packages('devtools')
devtools::install_github('jefferis/rflyem')
```