You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: webgestalt_lib/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,18 @@ Library for performing different types of enrichment analyses. Serves as the und
6
6
7
7
Supported methods include:
8
8
9
-
- Over-representation analysis (ORA)
9
+
- Over-Representation Analysis (ORA)
10
10
- Gene Set Enrichment Analysis (GSEA)
11
11
12
12
## Installation
13
13
14
14
To use webgestalt_lib in your Rust project, add the following line to your `Cargo.toml`.
15
15
16
16
```toml
17
-
webgestalt_lib = "0.1.0"# change to wanted version
17
+
webgestalt_lib = "0.1.1"# change to wanted version
18
18
```
19
19
20
-
If you are just interested in running an analysis, rather than develop new tools, please use on of the packages mentioned at the beginning of the README.
20
+
If you are just interested in running an analysis, rather than develop new tools, please use one of the packages mentioned at the beginning of the README.
21
21
22
22
## Development Priorities
23
23
@@ -27,7 +27,7 @@ If you are just interested in running an analysis, rather than develop new tools
27
27
3. Fast compilation times
28
28
- Every package install has to build the library from scratch, so the lower number of dependencies, the better
29
29
30
-
This crate does not provide any data formatting, or charts to display the results of the analysis. This work has already been done by the [R package](https://github.com/bzhanglab/webgestaltr), and a limited implementation is provided by the Rust CLI. The focus for this library is purely computational.
30
+
This crate does not provide any data formatting or charts to display the results of the analysis. This work has already been done by the [R package](https://github.com/bzhanglab/webgestaltr), and a limited implementation is provided by the Rust CLI. The focus for this library is purely computational.
/// Get the max median ratio of the analyte from any list
12
16
Max(NormalizationMethod),
13
17
/// Get the average median ratio of analyte from all the lists
@@ -49,7 +53,7 @@ pub enum NormalizationMethod {
49
53
None,
50
54
}
51
55
52
-
/// Run a multiomics analysis, using either the max/mean median ratio or a typical meta analysis
56
+
/// Run a multilist analysis, using either the max/mean median ratio or a typical meta analysis
53
57
/// method
54
58
///
55
59
/// # Parameters
@@ -61,8 +65,8 @@ pub enum NormalizationMethod {
61
65
///
62
66
/// Returns a [`Vec<Vec<FullGSEAResult>>`] containing the results of each analysis. If the method was not meta-analysis, then the outer vector will only have one element.
63
67
/// If the method was meta-analysis, then the first element will be the results of the meta-analysis, and the rest of the elements will be the results of each analysis run individually.
0 commit comments