View source: R/qtool_functions.R
pair_euclidean | R Documentation |
This function calculates the Euclidean distance
pair_euclidean(cell, ccle, ccle.name, pvalue)
cell |
vector with bin-level copy number values of one sample |
ccle |
vector with bin-level copy number values of the cell model |
ccle.name |
name of the cell model |
pvalue |
a logical value to indicate if the empirical pvalue is calculated or not |
Euclidean distance
posBins<-lapply(1,function(chr) getBinsStartsEnds(window=1000000, chr, lengthChr[chr])) ccle_cn<-getCNbins(posBins=posBins, data=cells_segcn, samples=unique(cells_segcn$sample)[1:2]) exp_cell<-as.matrix(ccle_cn[,1]) mod_cell<-as.matrix(ccle_cn[,2]) e<-pair_euclidean(exp_cell,mod_cell,unique(cells_segcn$sample)[2],pvalue=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.