clusterExperiment icon indicating copy to clipboard operation
clusterExperiment copied to clipboard

giving paramMatrix gives error.

Open epurdom opened this issue 9 years ago • 3 comments

From vignette, gives error:

se<-fluidigm[,colData(fluidigm)[,"Coverage_Type"]=="High"] whLow<-which(rowSums(assay(se))<100) se<-se[-whLow,]

checkParam<-clusterMany(se, clusterFunction="pam",ks=2:10,findBestK=TRUE,removeSil=c(TRUE), isCount=TRUE,dimReduce=c("PCA","mostVar"),nVarDims=c(100,500,1000),nPCADims=c(5,15,50),run=FALSE) ce<-clusterMany(se, paramMatrix=checkParam$paramMatrix, clusterDArgs=checkParam$clusterDArgs, seqArgs=checkParam$seqArgs,subsampleArgs=checkParam$subsampleArgs)

epurdom avatar Apr 22 '16 18:04 epurdom

Problem is that dimensionality reduction is done BEFORE giving param Matrix to the most basic version. Need to read paramMatrix and figure out dimReduce parameters... And, column of paramMatrix does NOT include that information (because done before hand, so in list). This is actually really tricky...

epurdom avatar Apr 26 '16 22:04 epurdom

This also has some urgency because vignette talks about doing this, but it doesn't work. Might need to delete out of vignette for now and some back to this.

epurdom avatar Apr 27 '16 22:04 epurdom

For now, remove functionality and comment out in vignette.

epurdom avatar Apr 28 '16 22:04 epurdom