Skip to content

Commit

Permalink
re-roxygenize and devtools::document
Browse files Browse the repository at this point in the history
  • Loading branch information
kollo97 committed Oct 31, 2024
1 parent 6b3f960 commit 653bc7a
Show file tree
Hide file tree
Showing 34 changed files with 1,121 additions and 141 deletions.
23 changes: 12 additions & 11 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
Package: anglemania
Title: What the Package Does (One Line, Title Case)
Title: Feature Extraction for scRNA-seq Dataset Integration
Version: 0.0.0.9000
Authors@R:
person("First", "Last", email = "[email protected]", role = c("aut", "cre"))
Description: What the package does (one paragraph).
Authors@R: c(
person("Aaron", "Kollotzek", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0009-0009-7142-4015")),
person("Vedran", "Franke", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-3606-6792")),
person("Artem", "Baranovskii", , "[email protected]", role = c("aut", "cre")),
person("Altuna", "Akalin", , "[email protected]", role = "ctb")
)
Description: anglemania extracts genes from multi-batch scRNA-seq experiments for downstream dataset integration. It improves conventional usage of highly-variable genes for integration tasks.
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
Expand All @@ -12,12 +18,11 @@ Imports:
Rcpp,
Matrix,
Seurat,
data.table,
SeuratObject,
bigstatsr,
dplyr,
magrittr,
purrr,
tidyr,
bigstatsr,
glmGamPoi,
pbapply
LinkingTo:
Expand All @@ -28,7 +33,3 @@ Suggests:
knitr,
rmarkdown
VignetteBuilder: knitr
Config/testthat/edition: 3
Depends:
R (>= 2.10)
LazyData: true
41 changes: 36 additions & 5 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,19 +1,50 @@
# Generated by roxygen2: do not edit by hand

export("%>%")
export("intersect_genes<-")
export("list_stats<-")
export("weights<-")
export(add_unique_batch_key)
export(batch_key)
export(big_anglemanise)
export(big_extract_corr)
export(big_factorise)
export(create_anglem)
export(data_info)
export(dataset_key)
export(extract_integration_genes)
export(get_list_stats)
export(integrate_by_features)
import(Seurat)
importFrom(Matrix,Matrix)
export(integrate_seurat_list)
export(intersect_genes)
export(list_stats)
export(matrix_list)
export(select_genes)
export(weights)
exportClasses(anglem)
importFrom(Matrix,rowSums)
importFrom(Seurat,DefaultAssay)
importFrom(Seurat,FindIntegrationAnchors)
importFrom(Seurat,IntegrateData)
importFrom(Seurat,NormalizeData)
importFrom(Seurat,RunPCA)
importFrom(Seurat,RunUMAP)
importFrom(Seurat,ScaleData)
importFrom(Seurat,SplitObject)
importFrom(SeuratObject,LayerData)
importFrom(bigstatsr,FBM)
importFrom(bigstatsr,as_FBM)
importFrom(bigstatsr,big_apply)
importFrom(bigstatsr,big_cor)
importFrom(bigstatsr,big_transpose)
importFrom(bigstatsr,nb_cores)
importFrom(dplyr,add_count)
importFrom(dplyr,distinct)
importFrom(dplyr,group_by)
importFrom(dplyr,mutate)
importFrom(dplyr,n_groups)
importFrom(dplyr,select)
importFrom(magrittr,"%>%")
importFrom(pbapply,pblapply)
importFrom(pbapply,pboptions)
importFrom(purrr,map)
useDynLib(anglemania, .registration=TRUE)
importFrom(tidyr,unite)
importMethodsFrom(methods,show)
1 change: 0 additions & 1 deletion R/big_factorise.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
#' z-score-transformed angle matrix.
#'
#' @importFrom bigstatsr FBM big_apply
#' @importFrom stats set.seed
#'
#' @seealso
#' \code{\link{big_extract_corr}},
Expand Down
1 change: 0 additions & 1 deletion R/objects.R
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ setMethod("extract_integration_genes", "anglem", function(object) {
#' column containing the unique batch key.
#'
#' @importFrom tidyr unite
#' @importFrom SeuratObject "%>%"
#'
#' @examples
#' \dontrun{
Expand Down
48 changes: 48 additions & 0 deletions man/add_unique_batch_key.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions man/anglem-class.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/anglemania-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions man/batch_key.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 66 additions & 26 deletions man/big_anglemanise.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 653bc7a

Please sign in to comment.