You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2022. It is now read-only.
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
rflybase
=======
## UPDATE as of 2016-10.15
This package has been rebooted. Access to the flybase Chado database (read only public copy) is done using RPostgreSQL. Functions are based on SQRL queries.
## Info
FlyBase provides public read only access to our Chado database. It is not supposed to get intensive traffic. Please read the flybase instruction to downlaod the database for intense use.
Example of queries: <http://gmod.org/wiki/FlyBase_Field_Mapping_Tables>
## Install
```{r eval=FALSE}
devtools::install_github("ropensci/rflybase")
```
```{r}
library("rflybase")
```
## setup connection to flybase database
```{r}
conn <- fb_connect()
```
## query
```{r}
library("dplyr")
src <- fb_connect(dplyr = TRUE)
orgs <- src %>% tbl("organism")
orgs %>% filter(genus == "Antheraea")
```
## Meta
* Please [report any issues or bugs](https://github.com/ropensci/rflybase/issues).
* License: MIT
* Get citation information for `rflybase` in R doing `citation(package = 'rflybase')`
* Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.