-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
75 lines (50 loc) · 2.46 KB
/
index.Rmd
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
title: "Working with DNA sequences and features in R with Bioconductor"
output:
html_document:
theme: cerulean
css: style.css
---
<div style="font-size: 150%">
<br>
This is the old version of this workshop.
[→ Here is the new version.](https://monashdatafluency.github.io/r-bioc-2/)
</div>
## Workshop material
* [Slideshow](slides/slides.html)
* [Workshop](topics/sequences_and_features.html)
## Setup
This workshop is best done using [RStudio](https://rstudio.com/products/rstudio/download/) and [R](https://cran.r-project.org/) on your laptop. We recommend you create a new project to contain the files. Alternatively you can use [RStudio Cloud](https://rstudio.cloud/) over the web (Monash users can log in with their Monash google account).
Optionally, also [download and install IGV](https://software.broadinstitute.org/software/igv/download) on your computer.
Once you've created a new project in RStudio, running the R code below will download files and install packages used in this workshop.
```{r eval=FALSE}
# Download data
download.file(
"https://monashdatafluency.github.io/r-bioc/r-bioc-files.zip",
destfile="r-bioc-files.zip")
unzip("r-bioc-files.zip")
# Install BiocManager package from CRAN:
install.packages("BiocManager")
# Install some Bioconductor packages:
BiocManager::install(c(
"Biostrings",
"BSgenome",
"GenomicRanges",
"GenomicFeatures",
"ensembldb",
"rtracklayer",
"seqLogo",
"AnnotationHub"
), INSTALL_opts="--no-byte-compile")
```
## Workshop files
The above code will download and unzip the files for this workshop. You can also download them from:
* [r-bioc-files.zip](r-bioc-files.zip)
## Author
This course has been developed for the [Monash Bioinformatics Platform](https://www.monash.edu/researchinfrastructure/bioinformatics) and [Monash Data Fluency](https://www.monash.edu/data-fluency) by Paul Harrison.
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="figures/CC-BY.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
## Source code
* [GitHub repository](https://github.com/MonashDataFluency/r-bioc)
<p style="margin-top: 5em; text-align: right">
<a href="https://www.monash.edu/researchinfrastructure/bioinformatics"><img src="figures/MBP-banner.png" width="675"></a>
</p>