Whitehead_Library: Genome-wide annotation for the Whitehead sgRNA library

Whitehead_LibraryR Documentation

Genome-wide annotation for the Whitehead sgRNA library

Description

A data frame with a named row for each sgRNA of the Whitehead sgRNA library [1] including annotations such as targeted genes, and genomic coordinates.

Usage

data(Whitehead_Library)

Format

A a row named data frame with 181131 observations of the following variables (among others)

CODE

alphanumerical identifier of the sgRNAs;

GENES

targeted gene;

STARTpos

starting genomic coordinate of the targeted genomic region (numeric);

STRAND

targeted DNA strand ('sense' or 'antisense')

EXONE

exone of the targeted genomic region (exone number);

CHRM

chromosome of where the targeted region resides (string)

ENDpos

ending genomic coordinate of the targeted genomic region (numeric).

seq

nucelotidic sequence of the sgRNAs without the PAM. (string).

Source

Discontinued by Addgene

References

[1] Wang T, Birsoy K, Hughes NW, et al. Identification and characterization of essential genes in the human genome. Science. 2015;350(6264):1096-1101. doi:10.1126/science.aac7041

Examples

## Not run: 
## Loading sgRNA Whitehead library annotation file
data(Whitehead_Library)
## Visualising first entries
head(Whitehead_Library)

## Deriving the path of an example count file
## from screening the HT-29 cell line with the Whitehead library
## [2]
fn<-paste(system.file('extdata', package = 'CRISPRcleanR'),
          '/HT-29-Whitehead_counts.tsv',sep='')

expName<-'HT29-Whitehead'

## Loading, median-normalizing and computing fold-changes
normANDfcs<-
    ccr.NormfoldChanges(filename = fn,
                        display = TRUE,
                        min_reads = 30,
                        EXPname = expName,
                        libraryAnnotation = Whitehead_Library)

## Genome-sorting the fold changes
gwSortedFCs<-
    ccr.logFCs2chromPos(foldchanges = normANDfcs$logFCs,
                        libraryAnnotation = Whitehead_Library)

## Identifying and correcting biased sgRNAs' fold changes
correctedFCs_and_segments<-
    ccr.GWclean(gwSortedFCs = gwSortedFCs,
                display=TRUE,
                label=expName)

## End(Not run)

francescojm/CRISPRcleanR documentation built on April 30, 2023, 5:41 a.m.