Commit fce7c6e5 authored by smorabit's avatar smorabit
Browse files

testing code

parent d719849f
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
Package: hdWGCNA
Title: hdWGCNA
Version: 0.2.16
Version: 0.2.17
Authors@R: c(
    person("Sam", "Morabito", , "smorabit@uci.edu", role = c("aut", "cre"),
           comment = c(ORCID = "0000-0002-7768-4856")),
@@ -15,4 +15,8 @@ LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
URL: https://smorabit.github.io/hdWGCNA/
Imports: WGCNA, Seurat, Matrix, harmony
Imports: WGCNA, Seurat, Matrix, harmony, igraph, ggplot2, dplyr
Suggests: testthat (>= 3.0.0)
Config/testthat/edition: 3
Depends: 
    R (>= 2.10)
 No newline at end of file
+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@

export(AvgModuleExpr)
export(BinPseudotime)
export(ComputeModuleEigengene)
export(ConstructMetacells)
export(ConstructMetaspots)
export(ConstructNetwork)
+8 −1
Original line number Diff line number Diff line
# hdWGCNA 0.2.16 (2023-03-02)
# hdWGCNA 0.2.16 (2023-03-27)
## Added
- None.

## Changes
- New error checks in `SetupForWGCNA` and `SelectNetworkGenes`

# hdWGCNA 0.2.16 (2023-03-020)
## Added
- `PlotDMEsLollipop` function to visualize differential module eigengenes.

+0 −1
Original line number Diff line number Diff line
@@ -14,7 +14,6 @@
#' @param wgcna_name name of the WGCNA experiment
#' @import Seurat
#' @import harmony
#' @export
ComputeModuleEigengene <- function(
  seurat_obj,
  cur_mod,
+1 −0
Original line number Diff line number Diff line
@@ -65,6 +65,7 @@ ModulePreservation <- function(
  print(dim(datExpr_query))

  print('Run Module Preservation')
  print(ref_modules)

  # run the module preservation test:
  mp <- WGCNA::modulePreservation(
Loading