Name Mode Size
..
discretize.Rd 100644 2 kb
dot-get_correlates.Rd 100644 1 kb
fc.Rd 100644 0 kb
fcoex-class.Rd 100644 2 kb
find_cbf_modules.Rd 100644 2 kb
get_nets.Rd 100644 1 kb
idents.Rd 100644 1 kb
mini_pbmc3k.Rd 100644 1 kb
mod_colors.Rd 100644 0 kb
mod_gene_num.Rd 100644 1 kb
mod_names.Rd 100644 1 kb
mod_ora.Rd 100644 1 kb
module_genes.Rd 100644 1 kb
new_fcoex.Rd 100644 1 kb
nmodules.Rd 100644 0 kb
ora_data.Rd 100644 1 kb
plot_one_interaction.Rd 100644 1 kb
plot_ora.Rd 100644 1 kb
plot_ora_single.Rd 100644 1 kb
recluster.Rd 100644 1 kb
save_plots.Rd 100644 1 kb
show-fcoex-method.Rd 100644 0 kb
show_net.Rd 100644 0 kb
show_ora.Rd 100644 1 kb
README.md
# fcoex A package for FCBF-based coexpression analysis of single cell data. The fcoex package implements an easy-to use interface to co-expression analysis based on the FCBF (Fast Correlation-Based Filter) algorithm. The package structure is adapted from the CEMiTool package, relying on visualizations and code designed and written by CEMiTool's authors. ## Installing the package ### Bioconductor fcoex is now on Bioconductor (https://bioconductor.org/packages/fcoex/) To install it, just run:` ``` if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install(version='devel') BiocManager::install("fcoex") ``` ### Development version It is also possible to install the current, development version from source code using devtools. Modifications from version on Bioconductor: * fc@adjacency returned previously a trimmed version of the adjacency matrix. Now it returns a full, weighted adjacency matrix. * fc@adjacency_trimmed now returns the trimmed adjacency matrix. ``` install.packages(devtools) devtools::install_github(repo = "csbl-usp/fcoex", ref="devel") ```