view DESeq_03.Rmd @ 1:b81ab8b769f0 draft

update
author mingchen0919
date Tue, 27 Feb 2018 23:55:18 -0500
parents
children
line wrap: on
line source

---
output: html_document
---

```{r setup, include=FALSE, warning=FALSE, message=FALSE}
knitr::opts_chunk$set(
  echo = as.logical(opt$X_e),
  error = TRUE
)
```


# Peek at data {.tabset}

## Count Data

```{r 'count data'}
datatable(head(counts(dds), 100), style="bootstrap", 
          class="table-condensed", options = list(dom = 'tp', scrollX = TRUE))
```

## Sample Table 

```{r 'sample table'}
datatable(sample_table, style="bootstrap",
          class="table-condensed", options = list(dom = 'tp', scrollX = TRUE))
```