It has always has columns:
biocviews
: the corresponding field from DESCRIPTION
, it must be
present for all Bioconductor packages, other packages typically don't
have it.built
: the Built
field from DESCRIPTION
.depends
, suggests
, Imports
, linkingto
, enhances
: the corresponding
fields from the DESCRIPTION
files.deps
: A list or data frames, the dependencies of the package. It has
columns: ref
, type
(dependency type in lowercase), package
(dependent package, or R
), op
and version
, for last two are for
version requirement. op
can be >=
, >
, ==
or <=
, although the
only the first one is common in practice.library
: path to the package library containing the package.license
: from DESCRIPTION
.md5sum
: from DESCTIPTION
, typically NA
, except on Windows.needscompilation
: from DESCRIPTION
, this column is logical.package
: package name.platform
: from the Built
field in DESCRIPTION
, the current platform
if missing from DESCRIPTION
.priority
: from DESCRIPTION
, usually base
, recommended
, or missing.ref
: the corresponding installed::*
package reference.repository
: from DESCRIPTION
. For packages from a CRAN repository this
is CRAN
, some other repositories, e.g. R-universe adds the repository
URL here.repotype
: cran
, bioc
or missing.rversion
: from the Built
field. If no such field, then the current
R version.sysreqs
: the SystemRequirements
field from DESCRIPTION
.title
: package title.type
: always installed
.version
: package version (as string).Most of these columns are unchanged from DESCRIPTION
, but
r pak_or_pkgdepends()
also adds a couple.
remote*
and config/needs/*
entries from
the DESCRIPTION
files. (Case insensitive.)character
, except for needscompilation
, which
is logical and deps
, which is a list columns.NA
.DESCRIPTION
.r pak_or_pkgdepends()
and should not be used in user code.Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.