Skip to content

Commit 935b92d

Browse files
Improve code readability
1 parent bb6798b commit 935b92d

File tree

10 files changed

+308
-253
lines changed

10 files changed

+308
-253
lines changed

DESCRIPTION

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Package: fast.ssgsea
22
Type: Package
3-
Title: Fast Single-Sample Gene Set Enrichment Analysis (ssGSEA)
4-
Version: 0.1.0.9027
5-
Date: 2026-02-24
3+
Title: High-Performance Gene Set Enrichment Analysis (HP-GSEA)
4+
Version: 0.1.0.9028
5+
Date: 2026-02-26
66
Authors@R:
77
person(given = "Tyler", family = "Sagendorf",
88
email = "tyler.sagendorf@pnnl.gov",
99
role = c("aut", "cre"),
1010
comment = c(ORCID = "0000-0003-1552-4870"))
11-
Description: Highly optimized implementation of Single-Sample Gene Set
12-
Enrichment Analysis (ssGSEA). Supports directional databases such as the
13-
Post-Translational Modification Signatures Database (PTMsigDB).
11+
Description: High-performance variant of Gene Set Enrichment Analysis that is
12+
capable of testing gene sets where each gene has an expected direction of
13+
change.
1414
License: file LICENSE
1515
Encoding: UTF-8
1616
LinkingTo:

R/fast_ssgsea.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#' @title High-Performance Variant of Pre-Ranked Gene Set Enrichment Analysis
1+
#' @title High-Performance Pre-Ranked Gene Set Enrichment Analysis
22
#'
33
#' @description A high-Performance variant of pre-ranked Gene Set Enrichment
44
#' Analysis (GSEA) that is capable of testing gene sets where each gene has an

R/globals.R

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
utils::globalVariables(
22
c(
33
"adj_p_value",
4+
"directional_sets",
45
"ES",
56
"ES_d",
67
"ES_end",
@@ -16,13 +17,17 @@ utils::globalVariables(
1617
"max_size",
1718
"n_as_extreme",
1819
"n_same_sign",
19-
"r",
20-
"sum_ES_perm",
21-
"sum_ranks",
20+
"n_sets",
2221
"NES",
2322
"p_value",
23+
"r",
24+
"set_indices",
25+
"set_indices_down",
2426
"set_size",
2527
"sets",
28+
"sum_ES_perm",
29+
"sum_ranks",
30+
"unique_genes",
2631
"y"
2732
)
2833
)

0 commit comments

Comments
 (0)