Table of Contents generated with DocToc
.Rmd
srefine.bio is a collection of ready-to-use transcriptomic data! Publicly available gene expression data is uniformly processed and made available for easy download. This tutorial has follow-along examples for use with refine.bio downloads.
This tutorial contains follow-along analysis examples for refine.bio gene expression data. The analysis examples are organized by technology: “Microarray” or “RNA-seq”, in addition to an “Advanced Topics” section. Each analysis is self-contained and provides information with how to obtain the dataset used in the example from refine.bio. We encourage you to download the .Rmd
and follow the “getting started” section in the example before diving into our analysis examples.
Each analysis contains:
.Rmd
) file(s) that you can use in RStudio to run the analysis and contains it’s own “getting started” section which describes how to download the example dataset from refine.bio..Rmd
file rendered as an HTML file.Our tutorial module requires you to install the following software to be able to run the examples. These requirements can be installed by following the instructions at these links in the section below. We recommend installing devtools
from CRAN (e.g. running install.packages("devtools")
in R).
Each example analysis has additional required packages but will check if they are installed and will install them if they are not. Depending on your particular configuration, sometimes problems occur (here’s a list of the most common R package installation errors and what they mean). Each example module directory will include further instructions for how to follow along with the examples.
Each analysis will include a link to the example dataset’s page on refine.bio as well as step-by-step instructions of how to set up your data and folders for your analysis. As you become more comfortable with the analysis, we encourage you to switch out this example dataset for another that may better suit your interests and scientific questions. We’ve placed comments where the code will absolutely need to be changed for a different dataset, but you may find other parts of the analysis you will want to alter to fit your needs. Each analysis also includes links to resources and documentation that we hope helps you make useful alterations to the analysis. You will likely encounter errors and bugs as you make changes; don’t let this discourage you, it is all a part of the process. See this debugging guide for our list of the most common R errors and how you might be able to address them.
We use R Markdown throughout this tutorial. R Markdown documents are helpful for scientific code by allowing you to keep detailed notes, code, and output in one place.
When you execute code within the notebook, the results appear beneath the code. Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Cmd+Shift+Enter.
print("The output from the code in this chunk will print below!")
## [1] "The output from the code in this chunk will print below!"
R Markdown documents also have the added benefit of producing HTML file output that is nicely rendered and easy to read. Saving one of our R Markdowns (the files that end in .Rmd
) on your computer will create an HTML file containing the code and output to be saved alongside it (will end in .nb.html
).
See this guide using to R Notebooks for more information about inserting and executing code chunks.
.Rmd
sA current directory
refers to where R will look for files or otherwise operate. Directories are the folders of files on your computer; a file path is the series of folders leading to the file you are referring to. R Markdown documents have the current directory
always set as wherever the .Rmd
file itself is saved. This means all file paths specified in the .Rmd
must be specified relative to the location of the .Rmd
.
For more practice with setting file paths in .Rmd
files see these: