Get startedGet started for free

Bioconductor version

In the video, you learned about the Bioconductor project. One advantage of this fantastic resource is its continuous improvements, reflected in scheduled releases. Hence, checking the current version is important for the reproducibility of your analysis.

BiocManager has already been installed using install.packages("BiocManager").

This exercise is part of the course

Introduction to Bioconductor in R

View Course

Exercise instructions

  • Load the BiocManager package.
  • Use a function to check the version of Bioconductor.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Load the BiocManager package
library(___)

# Explicitly check the Bioconductor version
___
Edit and Run Code