forked from AAnzel/MOVIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.py
48 lines (37 loc) · 1.69 KB
/
home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import streamlit as st
__author__ = 'Aleksandar Anžel'
__copyright__ = ''
__credits__ = ['Aleksandar Anžel', 'Georges Hattab']
__license__ = 'GNU General Public License v3.0'
__version__ = '1.0'
__maintainer__ = 'Aleksandar Anžel'
__email__ = 'aleksandar.anzel@uni-marburg.de'
__status__ = 'Dev'
def create_home():
st.info('''Welcome to **MOVIS** - a time-series multi-omics visualization
tool. MOVIS allows you to explore multiple time-series omics
data sets at once so that you can easily pinpoint anomalies
and/or patterns in your temporal data.''')
st.markdown('''
Currently, MOVIS supports *genomics*, *proteomics*,
*metabolomics*, *transcriptomics*, and *physico-chemical*
time-series data sets.
You can see the examples of what kind of data sets MOVIS
supports on *Example 1* and *Example 2* pages on the sidebar.
Example 1 consists of genomics, proteomics, metabolomics, and
physico-chemical time-series data. Example 2 contains only
transcriptomics time-series data.
---
If you do not know how to use MOVIS, or want to see how MOVIS
works, check out our documentation (link on the sidebar). If
you want to start exploring your data, head out to the *Upload*
page.
''')
st.markdown('''
---
### Changelog
| Date | Info |
| --- | --- |
| 03.09.2021. | MOVIS v1.0.0 released 🎉 🎈 🍾|
''')
return None