Skip to content

Commit

Permalink
Merge pull request #35 from jackbibby1/v1.5.1
Browse files Browse the repository at this point in the history
V1.5.1
  • Loading branch information
jackbibby1 authored Feb 7, 2023
2 parents 5e31362 + 28a0d2f commit e0ea6ee
Show file tree
Hide file tree
Showing 35 changed files with 72 additions and 50 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: SCPA
Title: Single Cell Pathway Analysis
Version: 1.5.0
Version: 1.5.1
Authors@R:
c(person("Jack", "Bibby", , "jack.bibby@nih.gov", role = c("aut", "cre")),
person("Divyansh", "Agarwal", role = c("aut")))
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## SCPA v1.5.1

### Minor changes

Fix downsample so it isn't forcing 500 cells [#34](https://github.com/jackbibby1/SCPA/issues/34)

## SCPA v1.5.0

#### Major changes
Expand All @@ -7,6 +13,10 @@ and `compare_sce()` functions. Users just
need to specify `parallel = TRUE` and `cores = x` to use parallel processing instead of calling
`compare_pathways_parallel()`

#### Minor changes

- Fix downsample [#31](https://github.com/jackbibby1/SCPA/pull/31/commits/da5b7bf3a11abbf071ca5e2a9c5743a3a9f320fb)

## SCPA v1.4.0

#### Major changes
Expand Down
8 changes: 4 additions & 4 deletions R/ComparePathways.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#' Use SCPA to compare gene sets
#' Internal function for compare_pathways()
#'
#' This function takes an input of samples and pathways
#' to compare gene set perturbations over different conditions with SCPA.
Expand Down Expand Up @@ -164,7 +164,7 @@ single_comparison <- function(samples,

}

#' Use SCPA to compare gene sets
#' Internal function for compare_pathways()
#'
#' This function takes an input of samples and pathways
#' to compare gene set perturbations over different conditions with SCPA.
Expand Down Expand Up @@ -381,15 +381,15 @@ compare_pathways <- function(samples,

mcm_output <- single_comparison(samples,
pathways,
downsample = 500,
downsample = downsample,
min_genes = 15,
max_genes = 500)

} else {

mcm_output <- parallel_comparison(samples,
pathways,
downsample = 500,
downsample = downsample,
min_genes = 15,
max_genes = 500,
cores = cores)
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

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

2 changes: 1 addition & 1 deletion docs/LICENSE.html

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

4 changes: 2 additions & 2 deletions docs/articles/comparing_two_populations.html

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

6 changes: 3 additions & 3 deletions docs/articles/disease_comparison.html

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

2 changes: 1 addition & 1 deletion docs/articles/index.html

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

2 changes: 1 addition & 1 deletion docs/articles/interpreting_scpa_output.html

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

2 changes: 1 addition & 1 deletion docs/articles/parallel_implementation.html

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

4 changes: 2 additions & 2 deletions docs/articles/pseudotime.html

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

4 changes: 2 additions & 2 deletions docs/articles/quick_start.html

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

4 changes: 2 additions & 2 deletions docs/articles/seurat_comparison.html

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

Loading

0 comments on commit e0ea6ee

Please sign in to comment.