-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
47 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,26 @@ | ||
```@meta | ||
CurrentModule = ISCHIA | ||
``` | ||
|
||
# Functions | ||
|
||
## Index | ||
|
||
```@index | ||
Pages = ["functions.md"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [ISCHIA] | ||
Filter = t -> typeof(t) !== CooccurOutput | ||
## Co-occurrence Analysis | ||
|
||
```@docs | ||
calculate_cooccurrence_stats | ||
summarize_cooccur | ||
``` | ||
|
||
## LR-Enrichment Analysis | ||
|
||
```@docs | ||
find_enriched_LR_pairs | ||
find_differentially_cooccurring_LR_pairs | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CurrentModule = ISCHIA | ||
``` | ||
|
||
# Utility Functions | ||
|
||
These functions are for internal use. They can be accessed by appending the package name and a dot before the function name, e.g. `ISCHIA.calculate_cooccurrence_matrix`. Keep in mind that these functions can change their signature without warnings. | ||
|
||
```@docs | ||
ISCHIA.calculate_cooccurrence_matrix | ||
ISCHIA.effect_sizes | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
```@meta | ||
CurrentModule = ISCHIA | ||
``` | ||
|
||
# Types | ||
|
||
```@index | ||
Pages = ["types.md"] | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters