|
a |
|
b/README.md |
|
|
1 |
|
|
|
2 |
[] |
|
|
3 |
(https://travis-ci.com/abodein/netOmics) |
|
|
4 |
|
|
|
5 |
[] |
|
|
6 |
(https://www.gnu.org/licenses/gpl-3.0) |
|
|
7 |
|
|
|
8 |
# netOmics |
|
|
9 |
|
|
|
10 |
With netOmics, we go beyond integration by introducing an interpretation tool. |
|
|
11 |
netOmics is a package for the creation and exploration of multi-omics networks. |
|
|
12 |
|
|
|
13 |
Depending on the provided dataset, it allows to create inference networks from |
|
|
14 |
expression data but also interaction networks from knowledge databases. |
|
|
15 |
After merging the sub-networks to obtain a global multi-omics network, |
|
|
16 |
we propose network exploration methods using propoagation techniques to perform |
|
|
17 |
functional prediction or identification of molecular mechanisms. |
|
|
18 |
|
|
|
19 |
Furthermore, the package has been developed for longitudinal multi-omics data |
|
|
20 |
and can be used in conjunction with our previously published package timeOmics. |
|
|
21 |
|
|
|
22 |
for more examples, please visite |
|
|
23 |
https://github.com/abodein/netOmics-case-studies |
|
|
24 |
|
|
|
25 |
## Installation |
|
|
26 |
|
|
|
27 |
### Latest `BioConductor` Release |
|
|
28 |
|
|
|
29 |
To install this package, start R (version "4.1") and enter: |
|
|
30 |
|
|
|
31 |
```r |
|
|
32 |
if (!requireNamespace("BiocManager", quietly = TRUE)) |
|
|
33 |
install.packages("BiocManager") |
|
|
34 |
|
|
|
35 |
BiocManager::install("netOmics") |
|
|
36 |
``` |
|
|
37 |
|
|
|
38 |
|
|
|
39 |
### Latest `GitHub` Version |
|
|
40 |
|
|
|
41 |
Install the devtools package in R, then load it and install the latest stable |
|
|
42 |
version of `netOmics` from `GitHub` |
|
|
43 |
|
|
|
44 |
```r |
|
|
45 |
## install devtools if not installed |
|
|
46 |
if (!requireNamespace("devtools", quietly = TRUE)) |
|
|
47 |
install.packages("devtools") |
|
|
48 |
## install netOmics |
|
|
49 |
devtools::install_github("abodein/netOmics") |
|
|
50 |
``` |
|
|
51 |
|
|
|
52 |
## Citing |
|
|
53 |
|
|
|
54 |
*"Bodein, A., Scott-Boyer, M. P., Perin, O., Le Cao, K. A., & Droit, A. (2020). |
|
|
55 |
Interpretation of network-based integration from multi-omics longitudinal data. |
|
|
56 |
bioRxiv."* |
|
|
57 |
|
|
|
58 |
## Maintainer |
|
|
59 |
Antoine Bodein (<antoine.bodein.1@ulaval.ca>) |
|
|
60 |
|
|
|
61 |
## Bugs/Feature requests |
|
|
62 |
|
|
|
63 |
If you have any bugs or feature requests, |
|
|
64 |
[let us know](https://github.com/abodein/netOmics/issues). |
|
|
65 |
Thanks! |
|
|
66 |
|