forked from lstmemery/yeast-transcriptomics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
33 lines (27 loc) · 959 Bytes
/
index.Rmd
File metadata and controls
33 lines (27 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
title: "Visualizing the Yeast Transcriptome"
author: "Hackseq Yeast-Omics Collective"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
description: "This is the result of our teamwork at Hackseq Hackathon on October 18-20, 2019 at UBC"
---
# Prerequisites
- [Install R](https://cran.r-project.org/)
- [Install R Bioconductor](https://bioconductor.org/install/)
- [Install RStudio](https://rstudio.com/products/rstudio/download/#download)
The library dependencies for this project include the following and can be installed from CRAN or Github:
```{r eval=FALSE}
install.packages("bookdown")
# or the development version
# devtools::install_github("rstudio/bookdown")
```
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```