View source: R/qtool_functions.R
getTopHit | R Documentation |
This function get the top hit for each comparison per sample
getTopHit(samples, measure, method = "all")
samples |
vector with name of samples |
measure |
dataframe with similarity metrics |
method |
similarity metric to use for ordering. Default is all |
dataframe with similarity metrics for all comparisons
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]) colnames(exp_cell)<-unique(cells_segcn$sample)[1] measures<-getSimilarities(dat1=exp_cell,dat2=ccle_cn,method="pearson") tophits<-getTopHit(samples=unique(cells_segcn$sample)[1],measure=measures,method="pearson")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.