Skip to content

Commit

Permalink
edit for BioC resubmission
Browse files Browse the repository at this point in the history
  • Loading branch information
Jieun Kim committed Oct 11, 2021
1 parent 0516389 commit 1ef90bd
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 22 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: Cepo
Title: Cepo for the identification of differentially stable genes
Version: 0.99.2
Version: 0.99.3
Authors@R:
c(
person(given = "Hani Jieun",
Expand Down Expand Up @@ -51,4 +51,5 @@ Suggests:
patchwork
VignetteBuilder: knitr
Depends:
GSEABase,
R (>= 4.1)
8 changes: 8 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ using the `remotes` package:
remotes::install_github("PYangLab/Cepo")
```

You can install the Bioconductor version of _Cepo_ from:

``` r
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("Cepo")
```

To also build the vignettes use:

``` r
Expand Down
43 changes: 29 additions & 14 deletions man/Cepo.Rd

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

9 changes: 6 additions & 3 deletions man/setCepoBPPARAM.Rd

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

8 changes: 4 additions & 4 deletions vignettes/cepo.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ citation("Cepo")
## Package installation
The development version of *Cepo* can be installed with the following command:
```
install.packages("remotes")
remotes::install_github("PYangLab/Cepo")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("Cepo")
```

# Differential stability analysis using Cepo
Expand Down Expand Up @@ -255,8 +256,7 @@ library(escape)
library(fgsea)
hallmark <- getGeneSets(species = "Homo sapiens",
library = "H")
hallmarkList <- lapply(hallmark@.Data, function(x) x@geneIds)
names(hallmarkList) <- lapply(hallmark@.Data, function(x) x@setName)
hallmarkList <- geneIds(hallmark)
fgseaRes <- fgsea(pathways = hallmarkList,
stats = sort(ds_res_batches$average$stats[,"beta"]),
Expand Down

0 comments on commit 1ef90bd

Please sign in to comment.