Skip to content

Commit

Permalink
Merge pull request #39 from ELTEbioinformatics/new_release
Browse files Browse the repository at this point in the history
Release mulea 1.1.0
  • Loading branch information
stitam authored Sep 24, 2024
2 parents d6b2dde + 7ba6b77 commit 47dcc28
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
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

0 comments on commit 47dcc28

Please sign in to comment.