Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jefferis/vfbr
R Package to Access the Virtual Fly Brain project API
https://github.com/jefferis/vfbr
drosophila neuronanatomy r virtualflybrain
Last synced: 11 days ago
JSON representation
R Package to Access the Virtual Fly Brain project API
- Host: GitHub
- URL: https://github.com/jefferis/vfbr
- Owner: jefferis
- Created: 2015-04-21T23:33:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T12:28:36.000Z (about 2 months ago)
- Last Synced: 2024-10-12T21:29:44.900Z (26 days ago)
- Topics: drosophila, neuronanatomy, r, virtualflybrain
- Language: R
- Homepage: http://jefferis.github.io/vfbr/
- Size: 1.21 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vfbr
[![R-CMD-check](https://github.com/jefferis/vfbr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jefferis/vfbr/actions/workflows/R-CMD-check.yaml)
[![Docs](https://img.shields.io/badge/docs-100%25-brightgreen.svg)](https://jefferis.github.io/vfbr/reference/)
vfbr provides programmatic access to the [virtualflybrain.org](http://virtualflybrain.org)
website.## Installation
Currently there isn't a released version on [CRAN](http://cran.r-project.org/),
but you can use the **devtools** [1] package to install the development version:```r
if (!require("devtools")) install.packages("devtools")
devtools::install_github("jefferis/vfbr")
```## Use
```r
library(vfbr)# generic SOLR queries
example(vfb_solr_query)
# queries to find terms matching a synonym
example(vfb_synonym_query)# package help
?vfbr
```[1] Note: Windows users need [Rtools](http://www.murdoch-sutherland.com/Rtools/) and [devtools](http://CRAN.R-project.org/package=devtools) to install via devtools.