An open API service indexing awesome lists of open source software.

https://github.com/aaronwolen/metafiler

Taxonomic profile visualizations
https://github.com/aaronwolen/metafiler

metagenomics

Last synced: 7 months ago
JSON representation

Taxonomic profile visualizations

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = TRUE,
collapse = TRUE,
comment = "#>",
fig.height = 3
)
knitr::opts_knit$set(upload.fun = knitr::imgur_upload)
```

## metafiler

Taxonomic profile visualizations.

[![Travis-CI Build Status](https://travis-ci.org/aaronwolen/metafiler.svg?branch=master)](https://travis-ci.org/aaronwolen/metafiler)
[![codecov](https://codecov.io/gh/aaronwolen/metafiler/branch/master/graph/badge.svg)](https://codecov.io/gh/aaronwolen/metafiler)

## Installation

```{r install, eval=FALSE}
# install.packages(c("devtools", "knitr", "rmarkdown"))
source("http://www.bioconductor.org/biocLite.R")
biocLite("Biobase")
devtools::install_github("aaronwolen/metafiler", build_vignettes = TRUE)
```

## Demo

```{r load-data}
library(metafiler)
data(profiles)
```

```{r profile-plot, message=FALSE}
profiles <- add_max_feature(profiles)
profile_barplot(profiles)
```

More information can be found in the vignette:

```{r vignette, eval=FALSE}
vignette("metafiler-intro", package = "metafiler")
```