|
a |
|
b/README.md |
|
|
1 |
|
|
|
2 |
|
|
|
3 |
# maui |
|
|
4 |
|
|
|
5 |
[](https://pepy.tech/project/maui-tools) [](https://codecov.io/gh/bimsbbioinfo/maui) [](https://www.codacy.com/app/jonathanronen/maui?utm_source=github.com&utm_medium=referral&utm_content=BIMSBbioinfo/maui&utm_campaign=Badge_Grade) [](https://badge.fury.io/py/maui-tools) [](https://maui.readthedocs.io/en/latest/?badge=latest) [](https://github.com/python/black) |
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
<!-- [](https://travis-ci.com/BIMSBbioinfo/maui) --> |
|
|
10 |
|
|
|
11 |
|
|
|
12 |
Multi-omics Autoencoder Integration (**maui**) is a python package for multi-omics data analysis. It is based on a bayesian latent factor model, with inference done using artificial neural networks. For details, check out our LSA paper: https://www.life-science-alliance.org/content/2/6/e201900517 |
|
|
13 |
|
|
|
14 |
## Installation |
|
|
15 |
|
|
|
16 |
maui works with Python 3.6 and TensorFlow 1.1 (does not yet support the yet unreleased TensorFlow 2.0). The easiest way to install is from pypi: |
|
|
17 |
|
|
|
18 |
pip install -U maui-tools |
|
|
19 |
|
|
|
20 |
This will install all necessary dependencies including keras an tensorflow. The default tensorflow (cpu) will be installed. If tensorflow GPU is needed, please install it prior to installation of maui. |
|
|
21 |
|
|
|
22 |
The development version may be installed by cloning this repo and running `python setup.py install`, or, using `pip` directly from github: |
|
|
23 |
|
|
|
24 |
pip install -e git+https://github.com/BIMSBbioinfo/maui.git#egg=maui |
|
|
25 |
|
|
|
26 |
|
|
|
27 |
#### Optional dependencies |
|
|
28 |
|
|
|
29 |
Survival analysis functionality supplied by lifelines [1]. It may be installed directly from pip using `pip install lifelines`. |
|
|
30 |
|
|
|
31 |
## Usage |
|
|
32 |
|
|
|
33 |
See [the vignette](vignette/maui_vignette.ipynb), and check out [the documentation](https://maui.readthedocs.io/en/latest/). |
|
|
34 |
|
|
|
35 |
|
|
|
36 |
## Citation |
|
|
37 |
|
|
|
38 |
> Evaluation of colorectal cancer subtypes and cell lines using deep learning. Jonathan Ronen, Sikander Hayat, Altuna Akalin. Life Science Alliance Dec 2019, 2 (6) e201900517; DOI: 10.26508/lsa.201900517 |
|
|
39 |
|
|
|
40 |
## Contributing |
|
|
41 |
|
|
|
42 |
Open an issue, send us a pull request, or shoot us an e-mail. |
|
|
43 |
|
|
|
44 |
## License |
|
|
45 |
|
|
|
46 |
maui is released under the [GNU General Public License v3.0](LICENSE) or later. |
|
|
47 |
|
|
|
48 |
--------------------- |
|
|
49 |
@jonathanronen, BIMSBbioinfo, 2018 |
|
|
50 |
|
|
|
51 |
|
|
|
52 |
[1]: https://github.com/CamDavidsonPilon/lifelines |