LoslegenKostenlos loslegen

BiocManager to install packages

BSgenome is a Bioconductor data package that contains representations of several genomes. This package has already been installed for you, as installing the dependencies usually takes some time, using the following code:

# Install BSgenome
BiocManager::install("BSgenome")

Diese Übung ist Teil des Kurses

Introduction to Bioconductor in R

Kurs anzeigen

Anleitung zur Übung

  • Use library() to load the package BSgenome. Note that BSgenome has already been installed for you.
  • Read the output messages and view the required packages.
  • Check the versions of all the packages loaded in the session.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Load the BSgenome package
___

# Check the versions of the packages loaded in the session
___
Code bearbeiten und ausführen