Bioconductor: Difference between revisions

From 太極
Jump to navigation Jump to search
Line 41: Line 41:
* https://bioconductor.org/help/course-materials/2017/CSAMA/lectures/1-monday/lecture-04-a-annotation-intro/lecture-04a-annotation-intro.html
* https://bioconductor.org/help/course-materials/2017/CSAMA/lectures/1-monday/lecture-04-a-annotation-intro/lecture-04a-annotation-intro.html
* [http://www.bioconductor.org/packages/release/bioc/vignettes/GenomicFeatures/inst/doc/GenomicFeatures.pdf Making and Utilizing TxDb Objects]
* [http://www.bioconductor.org/packages/release/bioc/vignettes/GenomicFeatures/inst/doc/GenomicFeatures.pdf Making and Utilizing TxDb Objects]
* [https://www.bioconductor.org/help/workflows/annotation/Annotation_Resources/ Genomic Annotation Resources] Introduction to using gene, pathway, gene ontology, homology annotations and the AnnotationHub. Access GO, KEGG, NCBI, Biomart, UCSC, vendor, and other sources.
** AnnotationHub
** OrgDb
** TxDb
** OrganismDb
** BSgenome
** biomaRt


=== Gene centric ===
=== Gene centric ===
Line 47: Line 54:


=== Web based ===
=== Web based ===
== Workflow ==
=== [https://www.bioconductor.org/help/workflows/high-throughput-sequencing/ Using Bioconductor for Sequence Data] ===

Revision as of 12:47, 1 October 2017

Github Mirrors

NIH mirror

We can safely replace http://www.bioconductor.org/ with http://watson.nci.nih.gov/bioc_mirror/.

For example, the 'Biobase' url in the original and nih mirror can be found in

http://www.bioconductor.org/packages/release/bioc/html/Biobase.html 
-> 
http://watson.nci.nih.gov/bioc_mirror/packages/release/bioc/html/Biobase.html

and the hgu133plusdb is

http://www.bioconductor.org/packages/release/data/annotation/html/hgu133plus2.db.html
->
http://watson.nci.nih.gov/bioc_mirror/packages/release/data/annotation/html/hgu133plus2.db.html

and the experiment data package like pasilla

http://www.bioconductor.org/packages/release/data/experiment/html/pasilla.html
->
http://watson.nci.nih.gov/bioc_mirror/packages/release/data/experiment/html/pasilla.html

For R software, the NIH mirror is http://watson.nci.nih.gov/cran_mirror. So for example, the R v3.2.1 url in main CRAN and NIH is

http://cran.r-project.org/bin/windows/base/R-3.2.1-win.exe
->
http://watson.nci.nih.gov/cran_mirror/bin/windows/base/R-3.2.1-win.exe

and the 'MASS' package is

http://cran.r-project.org/web/packages/MASS/index.html
->
http://watson.nci.nih.gov/cran_mirror/web/packages/MASS/index.html

Annotation packages

Gene centric

Genomic centric

Web based

Workflow

Using Bioconductor for Sequence Data