Browse code

Updating documentation

Former-commit-id: 3916a9874ea8b506ed6e9270a56d47a0696a9371

Sean Corbett authored on 03/12/2018 21:18:30
Showing 4 changed files

... ...
@@ -1,5 +1,74 @@
1 1
 # Generated by roxygen2: do not edit by hand
2 2
 
3
+export("completeLogLik<-")
4
+export("countChecksum<-")
5
+export("finalLogLik<-")
6
+export("initialSeed<-")
7
+export("matrixNames<-")
8
+export("resList<-")
9
+export("runParams<-")
10
+export("sampleLabel<-")
11
+export("setPerplexity<-")
12
+export(DeconX)
13
+export(available_models)
14
+export(celda)
15
+export(celdaGridSearch)
16
+export(celdaHeatmap)
17
+export(celdaProbabilityMap)
18
+export(celdaTsne)
19
+export(celda_C)
20
+export(celda_CG)
21
+export(celda_G)
22
+export(clusterProbability)
23
+export(compareCountMatrix)
24
+export(completeLogLik)
25
+export(countChecksum)
26
+export(differentialExpression)
27
+export(distinct_colors)
28
+export(factorizeMatrix)
29
+export(featureModuleLookup)
30
+export(finalLogLik)
31
+export(getPerplexity)
32
+export(initialSeed)
33
+export(logLikelihood)
34
+export(logLikelihood.celda_C)
35
+export(logLikelihood.celda_CG)
36
+export(logLikelihood.celda_G)
37
+export(matrixNames)
38
+export(moduleHeatmap)
39
+export(normalizeCounts)
40
+export(perplexity)
41
+export(plotDimReduceCluster)
42
+export(plotDimReduceFeature)
43
+export(plotDimReduceGrid)
44
+export(plotDimReduceModule)
45
+export(plotGridSearchPerplexity)
46
+export(plotGridSearchPerplexity.celda_C)
47
+export(plotGridSearchPerplexity.celda_CG)
48
+export(plotGridSearchPerplexity.celda_G)
49
+export(plotHeatmap)
50
+export(recodeClusterY)
51
+export(recodeClusterZ)
52
+export(resList)
53
+export(resamplePerplexity)
54
+export(runParams)
55
+export(sampleLabel)
56
+export(selectBestModel)
57
+export(semi_pheatmap)
58
+export(simulateCells)
59
+export(simulateCells.celda_C)
60
+export(simulateCells.celda_CG)
61
+export(simulateCells.celda_G)
62
+export(simulateObservedMatrix)
63
+export(subsetCeldaList)
64
+export(topRank)
65
+exportMethods(celdaHeatmap)
66
+exportMethods(celdaProbabilityMap)
67
+exportMethods(celdaTsne)
68
+exportMethods(clusterProbability)
69
+exportMethods(factorizeMatrix)
70
+exportMethods(featureModuleLookup)
71
+exportMethods(perplexity)
3 72
 import(RColorBrewer)
4 73
 import(data.table)
5 74
 import(foreach)
... ...
@@ -29,7 +29,7 @@
29 29
 #' @title celda.CG.grid.search.res
30 30
 #' @format An object as returned from celdaGridSearch()
31 31
 #' @examples
32
-#' cgs = celdaGridSearch(celda.CG.sim$counts, model="celda_CG", 
32
+#' cgs = celda::celdaGridSearch(celda.CG.sim$counts, model="celda_CG", 
33 33
 #'                       params.test=list(K=4:6, L=9:11), 
34 34
 #'                       params.fixed=list(sample.label=celda.CG.sim$sample.label),
35 35
 #'                       best.only=TRUE, nchains=1)
... ...
@@ -12,7 +12,7 @@ celda.CG.grid.search.res
12 12
 Example results of celdaGridSearch on celda.CG.sim
13 13
 }
14 14
 \examples{
15
-cgs = celdaGridSearch(celda.CG.sim$counts, model="celda_CG", 
15
+cgs = celda::celdaGridSearch(celda.CG.sim$counts, model="celda_CG", 
16 16
                       params.test=list(K=4:6, L=9:11), 
17 17
                       params.fixed=list(sample.label=celda.CG.sim$sample.label),
18 18
                       best.only=TRUE, nchains=1)
... ...
@@ -81,5 +81,5 @@ list A list containing dendrogram information and the heatmap grob
81 81
 Renders a heatmap based on a matrix of counts where rows are features and columns are cells.
82 82
 }
83 83
 \examples{
84
-plotHeatmap(celda.CG.sim$counts, z=celda.CG.mod@z, y=celda.CG.mod@y)
84
+plotHeatmap(celda.CG.sim$counts, z=clustering(celda.CG.mod)$z, y=clustering(celda.CG.mod)$y)
85 85
 }