Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Bioconductor/useR2015
Course material for useR 2015 workshop -- Bioconductor for High Throughput Sequence Analysis
https://github.com/Bioconductor/useR2015
Last synced: about 1 month ago
JSON representation
Course material for useR 2015 workshop -- Bioconductor for High Throughput Sequence Analysis
- Host: GitHub
- URL: https://github.com/Bioconductor/useR2015
- Owner: Bioconductor
- Created: 2015-06-22T01:14:19.000Z (over 9 years ago)
- Default Branch: devel
- Last Pushed: 2023-03-15T20:26:21.000Z (over 1 year ago)
- Last Synced: 2024-08-02T11:22:39.908Z (4 months ago)
- Language: R
- Homepage:
- Size: 21.6 MB
- Stars: 3
- Watchers: 15
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-bacteria - useR2015 - Course material for useR 2015 workshop -- Bioconductor for High Throughput Sequence Analysis (2015). (Educational resources / Bioconductor)
README
## Overview
DNA sequence analysis generates large volumes of data presenting
challenging bioinformatic and statistical problems. This tutorial
introduces established and new
[_Bioconductor_](http://bioconductor.org) packages and work flows for
the analysis of sequence data. We learn about approaches for
efficiently manipulating sequences and alignments, and introduce
common work flows and the unique statistical challenges associated
with 'RNAseq', variant annotation, and other experiments. The emphasis
is on exploratory analysis, and the analysis of designed
experiments. The workshop emphasizes orientation within the
_Bioconductor_ milieu; we will touch on the [AnnotationHub][],
[Biostrings][], [GenomicRanges][], [GenomicAlignments][], [DESeq2][],
and other packages, with short exercises to illustrate the
functionality of each package.## Goals
- Gain overall familiarity with _Bioconductor_ packages for
high-throughput sequence analysis, including _Bioconductor_
vignettes and classes.- Obtain experience running bioninformatic work flows for data quality
assessment, RNA-seq differential expression, and manipulating
variant call format files- Appreciate the importance of ranges and range-based manipulation for
modern genomic analysis- Learn 'best practices' for working with large data
## Outline
- Introduction to _Bioconductor_ -- packages and classes
- Short work flows
- Exploring sequences and alignments
- RNA-seq: a high-level tour
- Annotating variants## Prerequisites
The workshop assumes an intermediate level of familiarity with R, and
basic understanding of biological and technological aspects of
high-throughput sequence analysis. Participants should come prepared
with a modern wireless-enabled laptop and web browser installed.We will use pre-configured Amazon machine instances during the course,
so no package installation is necessary. For use after the course,
install necessary software with the following commandssource("http://bioconductor.org/biocLite.R")
biocLite(c("shiny", "airway", "AnnotationHub", "Biostrings",
"DESeq2", "GenomicAlignments", " GenomicFiles", "GenomicRanges",
"Rsamtools", "TxDb.Hsapiens.UCSC.hg19.knownGene", "org.Hs.eg.db",
"Homo.sapiens", "RNAseqData.HNRNPC.bam.chr14"))
biocLite("Bioconductor/useR2015")## Intended Audience
This workshop is for professional bioinformaticians and statisticians
intending to use _R_ / _Bioconductor_ for analysis and comprehension
of high-throughput sequence data.[AnnotationHub]: http://bioconductor.org/packages/AnnotationHub
[Biostrings]: http://bioconductor.org/packages/Biostrings
[GenomicAlignments]: http://bioconductor.org/packages/GenomicAlignments
[GenomicRanges]: http://bioconductor.org/packages/GenomicRanges
[DESeq2]: http://bioconductor.org/packages/DESeq2