Skip to content

Release mulea 1.1.0 #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: mulea
Type: Package
Title: Enrichment Analysis using Multiple Ontologies and False Discovery Rate
Version: 1.0.2
Date: 2024-08-27
Version: 1.1.0
Date: 2024-09-24
Authors@R: c(
person("Cezary", "Turek", role = "aut",
comment = c(ORCID = "0000-0002-1445-5378")),
Expand Down
7 changes: 5 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# # mulea 1.0.2
# mulea 1.1.0

## Minor Improvements

- Random seed argument was introduced to the ora function.
- Range in internal function `addExtraParamsToPlt()` was updated from 0 to 0.2.

# mulea 1.0.1

## BUGS
## Bug Fixes

- CRAN check results indicated some OS dependent behaviour. This is now fixed.

Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if (!require("BiocManager", quietly = TRUE))
BiocManager::install("fgsea")
```

To install `mulea` from [CRAN](https://cran.rstudio.com/web/packages/mulea/index.html):
To install `mulea` from [CRAN](https://cran.r-project.org/package=mulea):

```{r 'install2', eval=FALSE, message=FALSE, warning=FALSE}
install.packages("mulea")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ BiocManager::install("fgsea")
```

To install `mulea` from
[CRAN](https://cran.rstudio.com/web/packages/mulea/index.html):
[CRAN](https://cran.r-project.org/package=mulea):

``` r
install.packages("mulea")
Expand Down
10 changes: 7 additions & 3 deletions vignettes/mulea.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ if (!require("BiocManager", quietly = TRUE))
BiocManager::install("fgsea")
```

To install `mulea` from [CRAN](https://cran.rstudio.com/web/packages/mulea/index.html):
To install `mulea` from [CRAN](https://cran.r-project.org/package=mulea):

```{r 'install2', eval=FALSE, message=FALSE, warning=FALSE}
install.packages("mulea")
Expand Down Expand Up @@ -387,7 +387,9 @@ BH_ora_model <- ora(gmt = tf_ontology_filtered,
# Background set variable
background_element_names = background_set,
# p-value adjustment method
p_value_adjustment_method = "BH")
p_value_adjustment_method = "BH",
# Number of processor threads to use
nthreads = 2)

# Running the ORA
BH_results <- run_test(BH_ora_model)
Expand All @@ -399,7 +401,9 @@ Bonferroni_ora_model <- ora(gmt = tf_ontology_filtered,
# Background set variable
background_element_names = background_set,
# p-value adjustment method
p_value_adjustment_method = "bonferroni")
p_value_adjustment_method = "bonferroni",
# Number of processor threads to use
nthreads = 2)

# Running the ORA
Bonferroni_results <- run_test(Bonferroni_ora_model)
Expand Down
Loading