https://github.com/jefferis/brainbaser
Programmatic Access to the Brainbase Drosophila Neuroanatomy Website
https://github.com/jefferis/brainbaser
Last synced: 3 months ago
JSON representation
Programmatic Access to the Brainbase Drosophila Neuroanatomy Website
- Host: GitHub
- URL: https://github.com/jefferis/brainbaser
- Owner: jefferis
- Created: 2015-08-17T15:29:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-15T19:47:35.000Z (over 7 years ago)
- Last Synced: 2025-01-16T03:33:51.061Z (4 months ago)
- Language: R
- Homepage: http://jefferis.github.io/brainbaser
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brainbaser
## Introduction
[Brainbase Web](brainbase.imp.ac.at) is an interactive website containing
information about neurons in the Drosophila (fruit fly) nervous system. It
includes brain expression patterns of a large collection of genetic driver
lines, the Vienna Tiles (VT) collection. brainbaser enables programmatic queries
of expression levels for different neuropil domains, download of image data and
other utility functions.## Quick Start
For the impatient ...
```r
# install
if (!require("devtools")) install.packages("devtools")
devtools::install_github("jefferis/brainbaser")# use
library(brainbaser)# run examples
example("neuropil_overlaps")# get overview help for package
?brainbaser
# help for functions
?neuropil_overlaps# run tests
library(testthat)
test_package("brainbaser")
```## Installation
Currently there isn't a released version on [CRAN](http://cran.r-project.org/).### Development version
You can use the **devtools** package to install the development version:```r
if (!require("devtools")) install.packages("devtools")
devtools::install_github("jefferis/brainbaser")
```Note: Windows users need [Rtools](http://www.murdoch-sutherland.com/Rtools/) and [devtools](http://CRAN.R-project.org/package=devtools) to install this way.