美文网首页
Installing and Managing Biocondu

Installing and Managing Biocondu

作者: 我是聪 | 来源:发表于2018-12-27 13:50 被阅读0次

Marcel Ramos1 and Martin Morgan1

1Roswell Park Comprehensive Cancer Center, Buffalo, NY


1 Introduction

    Use the BiocManager package to install and manage packages from the Bioconductor project for the statistical analysis and comprehension of high-throughput genomic data.

    Current Bioconductor packages are available on a 'relaease' version intended for every-day use, and a 'devel' version where new features are introduced.A new release version is created every six months. Using the BiocManager package helps users install packages from the same release.

2 Basic use 

    install.packages("BiocManager")

install Bioconductor (or CRAN) packages with

BiocManager::install(c("GenomicRanges", "Organism.dplyr"))

installed packages canbe updated to their current version with

BiocManager::install()

Use version() to discover the version of Bioconductor currently in use

BiocManager::version()

Bioconductor packages work best when they are from same release.Use valid() to identify packages that are out-of -date or from unexpected version.

BiocManager::valid()

valid() returns an objects that can be queried for detailed information about invalid packages

相关文章

网友评论

      本文标题:Installing and Managing Biocondu

      本文链接:https://www.haomeiwen.com/subject/zfyrlqtx.html