Package 'crisprVerse'

Title: Easily install and load the crisprVerse ecosystem for CRISPR gRNA design
Description: The crisprVerse is a modular ecosystem of R packages developed for the design and manipulation of CRISPR guide RNAs (gRNAs). All packages share a common language and design principles. This package is designed to make it easy to install and load the crisprVerse packages in a single step. To learn more about the crisprVerse, visit <https://www.github.com/crisprVerse>.
Authors: Jean-Philippe Fortin [aut, cre]
Maintainer: Jean-Philippe Fortin <[email protected]>
License: MIT + file LICENSE
Version: 1.7.0
Built: 2024-07-20 05:14:02 UTC
Source: https://github.com/bioc/crisprVerse

Help Index


List all crisprVerse dependencies

Description

List all crisprVerse dependencies

Usage

crisprVerse_deps(recursive = FALSE)

Arguments

recursive

If TRUE, will also list all dependencies of crisprVerse packages.

Value

A data.frame describing crisprVerse dependencies

Examples

if (interactive()){
    crisprVerse_deps()
}

List all packages in the crisprVerse

Description

List all packages in the crisprVerse

Usage

crisprVerse_packages(include_self = TRUE)

Arguments

include_self

Include crisprVerse in the list?

Value

A character vector of packages in the crisprVerse

Examples

crisprVerse_packages()

Update crisprVerse packages

Description

This will check to see if all crisprVerse packages (and optionally, their dependencies) are up-to-date, and will install after an interactive confirmation.

Usage

crisprVerse_update(recursive = FALSE)

Arguments

recursive

If TRUE, will also list all dependencies of crisprVerse packages.

Value

Print messages to console as a side effect.

Examples

if (interactive()){
    crisprVerse_update()
}