Bioconductor: Difference between revisions

From 太極
Jump to navigation Jump to search
Line 41: Line 41:
== Some packages ==
== Some packages ==
=== Biostrings ===
=== Biostrings ===
Find the location of a particular sequence. [https://www.rdocumentation.org/packages/Biostrings/versions/2.40.2/topics/matchPattern ?vmatchPattern]
* Find the location of a particular sequence. [https://www.rdocumentation.org/packages/Biostrings/versions/2.40.2/topics/matchPattern ?vmatchPattern]
* https://www.bioconductor.org/help/course-materials/2011/BioC2011/LabStuff/BiostringsBSgenomeOverview.pdf
 
<syntaxhighlight lang='rsplus'>
<syntaxhighlight lang='rsplus'>
library(Biostrings)  
library(Biostrings)  

Revision as of 13:42, 17 April 2018

Github Mirrors

BioCExplorer

Explore Bioconductor packages more nicely

source("https://bioconductor.org/biocLite.R")
biocLite("BiocUpgrade")
biocLite("biocViews")
devtools::install_github("seandavi/BiocPkgTools")
devtools::install_github("shians/BioCExplorer")
library(BioCExplorer)
bioc_explore()

BiocExplorer.png

Annotation packages

Gene centric

Genomic centric

Web based

Workflow

Using Bioconductor for Sequence Data

Some packages

Biostrings

library(Biostrings) 
library(BSgenome.Hsapiens.UCSC.hg19) 
vmatchPattern("GCGATCGC", Hsapiens)

Misc

Package release history

https://support.bioconductor.org/p/69657/

Search the DESCRIPTION file (eg. VariantAnnotation package) in github and the release information can be found there.