Last data update: 2014.03.03

R: create_sd_matrix
create_sd_matrixR Documentation

create_sd_matrix

Description

We observed that the standard deviation of the oligos that share the same seed do change relative to their average score. In principle we could plot this information on a graph (x-axis = average of the oligos that share the same seed, y-axes = standard deviation of the oligos). We do provide this utility method to condense this information in a matrix (that reports the quantiles of the standard deviation for every score interval).

Usage

create_sd_matrix(screen, seedColName="seed7", scoreColName="score")

Arguments

screen

data frame containing the results of the siRNA experiment.

seedColName

name of the column that contains the seeds sequences of the screen (character vector)

scoreColName

name of the column that contains the score of the screen (character vector)

Value

matrix that reports the quantiles of the standard deviation for every score interval.

Author(s)

Andrea Franceschini

Examples

	data(uuk_screen)
	
	
	# to speed up the example we use only the first 100 rows
	uuk_screen_reduced = uuk_screen[1:100,]

	screen = add_seed(uuk_screen_reduced)
	sd_matrix = create_sd_matrix(screen)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(scsR)
Error in library(scsR) : there is no package called 'scsR'
Execution halted