chevreulPlot

Chevreul

This package includes a set of Shiny apps for exploring single cell RNA datasets processed as a SingleCellExperiment

A demo using a human gene transcript dataset from Shayler et al. (link) is available here

There are also convenient functions for:

[!WARNING] Chevreul was designed for full-length smart-seq based single cell data. Default settings may not be appropriate for droplet (10x) data, though most can be adjusted. Keep in mind best practices regarding normalization, dimensional reduction, etc. when using.

Installation

You can install the released version of chevreul from github with:

Install locally and run in three steps:

You can install chevreul locally using the following steps:

install.packages("devtools")
devtools::install_github("whtns/chevreul")
chevreul::create_project_db()

You can also customize the location of the app using these steps:

devtools::install_github("whtns/chevreul")
chevreul::create_project_db(destdir = "/your/path/to/app")

TLDR

Chevreul provides a single command to:

Run clustering on a single object

By default clustering will be run at ten different resolutions between 0.2 and 2.0. Any resolution can be specified by providing the resolution argument as a numeric vector.

clustered_object <- clustering_workflow(chevreul_sce,
    experiment_name = "object_hu_trans",
    organism = "human"
)

Get a first look at a processed dataset using an interactive shiny app

minimalChevreulApp(chevreul_sce)