Skip to content

Commit 47dcc28

Browse files
authored
Merge pull request #39 from ELTEbioinformatics/new_release
Release mulea 1.1.0
2 parents d6b2dde + 7ba6b77 commit 47dcc28

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: mulea
22
Type: Package
33
Title: Enrichment Analysis using Multiple Ontologies and False Discovery Rate
4-
Version: 1.0.2
5-
Date: 2024-08-27
4+
Version: 1.1.0
5+
Date: 2024-09-24
66
Authors@R: c(
77
person("Cezary", "Turek", role = "aut",
88
comment = c(ORCID = "0000-0002-1445-5378")),

NEWS.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
# # mulea 1.0.2
1+
# mulea 1.1.0
2+
3+
## Minor Improvements
24

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

58
# mulea 1.0.1
69

7-
## BUGS
10+
## Bug Fixes
811

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

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if (!require("BiocManager", quietly = TRUE))
4848
BiocManager::install("fgsea")
4949
```
5050

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

5353
```{r 'install2', eval=FALSE, message=FALSE, warning=FALSE}
5454
install.packages("mulea")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ BiocManager::install("fgsea")
6767
```
6868

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

7272
``` r
7373
install.packages("mulea")

vignettes/mulea.Rmd

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if (!require("BiocManager", quietly = TRUE))
5858
BiocManager::install("fgsea")
5959
```
6060

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

6363
```{r 'install2', eval=FALSE, message=FALSE, warning=FALSE}
6464
install.packages("mulea")
@@ -387,7 +387,9 @@ BH_ora_model <- ora(gmt = tf_ontology_filtered,
387387
# Background set variable
388388
background_element_names = background_set,
389389
# p-value adjustment method
390-
p_value_adjustment_method = "BH")
390+
p_value_adjustment_method = "BH",
391+
# Number of processor threads to use
392+
nthreads = 2)
391393
392394
# Running the ORA
393395
BH_results <- run_test(BH_ora_model)
@@ -399,7 +401,9 @@ Bonferroni_ora_model <- ora(gmt = tf_ontology_filtered,
399401
# Background set variable
400402
background_element_names = background_set,
401403
# p-value adjustment method
402-
p_value_adjustment_method = "bonferroni")
404+
p_value_adjustment_method = "bonferroni",
405+
# Number of processor threads to use
406+
nthreads = 2)
403407
404408
# Running the ORA
405409
Bonferroni_results <- run_test(Bonferroni_ora_model)

0 commit comments

Comments
 (0)