Graph-based identify the set of references using affinity propagation as the underlying clustering method
1 2 3 4 5 6 7 8 9 10 11 12 | get.references.apcluster(
m,
cor.method = "pearson",
min.size = 10,
min.corr = 0.75,
min.count = 0,
med.quantile = 0.5,
log.base = 2,
debug = FALSE,
verbose.output = FALSE,
...
)
|
m |
expression matrix, genes x samples (which will be transposed internally) |
cor.method |
[="pearson"] the correlation method used to construct edges between genes. Acceptable values are same as those of R base function 'cor()'. |
min.size |
minimum size of the candidate refernece clusters |
min.count |
minimum count of a gene across all samples, for it to be retained in constructing the graph |
med.quantile |
the quantile above which a gene should be expressed in all samples, for it to be retained in constructing the graph |
log.base |
the base to log-transform the expression matrix |
debug |
whether to print additional information when running |
verbose.output |
whether to all clusters (in addition to the reference one) in the output |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.