--- title: "Lab 1: Introduction to _R_ and _Bioconductor_" output: BiocStyle::html_document: toc: true vignette: > % \VignetteIndexEntry{Lab 1: Introduction to R and Bioconductor} % \VignetteEngine{knitr::rmarkdown} --- ```{r style, echo = FALSE, results = 'asis'} BiocStyle::markdown() ``` ```{r setup, echo=FALSE} knitr::opts_chunk$set( eval=as.logical(Sys.getenv("KNITR_EVAL", "TRUE")), cache=as.logical(Sys.getenv("KNITR_CACHE", "TRUE")) ) ``` Original Authors: Martin Morgan, Sonali Arora
Presenting Authors: [Martin Morgan][], [Lori Shepherd][]
Date: 22 July, 2019 Back: [Monday labs](lab-1-intro-to-r-bioc.html) [Martin Morgan]: mailto: Martin.Morgan@RoswellPark.org [Lori Shepherd]: mailto: Lori.Shepherd@RoswellPark.org This lab has four (five!) parts. Each part consists of informative material followed by short or intermediate length exercises and case studies. The material introduces or refreshes your knowledge of _R_, and walks through some of the central classes and annotation resources for working with high-throughput sequence data in _Bioconductor_. It's recommended that you choose two or three of the following sections, and spend about 45 minutes to an hour on each. Take time to work through the code in the material as well as the exercises, asking questions of your colleagues and the TAs as needed. If you're relatively new to _R_, then consider doing sections 1 and 3. If you're new to _Bioconductor_, then skim the second and focus on the third and fourth sections. Section 1.5 was added during the lectures this morning, representing one idea of 'fun'! Download these files: - [ALLphenoData.tsv](./ALLphenoData.tsv) - [BRFSS-subset.csv](./BRFSS-subset.csv) - [airway-sample-sheet.csv](./airway-sample-sheet.csv) - [airway-read-counts.csv](./airway-read-counts.csv) - [symgo.csv](./symgo.csv) Choose the material you'd like to cover: 1.1 [Introduction to _R_](L1.1-r-intro.html) -- Gain confidence working with base R commands and data structures. 1.2 [Introduction to tidy _R_](L1.2-tidy-r-intro.html) -- Gain confidence working with base R commands and data structures. 1.3 [Starting an anlysis](L1.3-starting-an-analysis.html) -- Finding _R_ and _Bioconductor_ packages and resources to start an analysis. 1.4 [Data Representations](L1.4-bioc-data-representation.html) -- Learn the essentials of _Bioconductor_ data structures 1.5 [Annotation](L1.5-bioc-annotation.html) -- Learn about _Bioconductor_ resources for gene and genome annotation. 1.6 [Lecture Activities](L1.6-lect-1-4-activities.html) -- short challenges that came up during the morning lectures.