The Bioconductor Project

Pengantar Bioconductor di R

James Chapman

Curriculum Manager, DataCamp

Bioconductor

Bioconductor

1 Bioconductor (www.bioconductor.org)
Pengantar Bioconductor di R

What do we measure and why?

  • Structure: elements, regions, size, order, relationships

structure-parts

  • Function: expression, levels, regulation, phenotypes

function

Pengantar Bioconductor di R

How to install Bioconductor packages?

  • Bioconductor has its own repository and way to install packages
# Install BiocManager
install.packages("BiocManager")

# Install the GenomicRanges package
BiocManager::install("GenomicRanges")
Pengantar Bioconductor di R

Bioconductor version and package version

# Load BiocManager
library(BiocManager)


# Check Bioconductor version version()
Pengantar Bioconductor di R

Checking package versions

# Load GenomicRanges
library(GenomicRanges)


# Check versions for reproducibility sessionInfo()
Pengantar Bioconductor di R

Package updates

# Check for package updates
valid()
Pengantar Bioconductor di R

Let's practice!

Pengantar Bioconductor di R

Preparing Video For Download...