-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcome.py
More file actions
54 lines (42 loc) · 2.48 KB
/
Welcome.py
File metadata and controls
54 lines (42 loc) · 2.48 KB
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
49
50
51
52
53
# MAVISp - Streamlit application
# Copyright (C) 2022 Matteo Tiberti, Danish Cancer Society
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from streamlit_utils import *
import streamlit as st
st.set_page_config(layout="wide",
page_title="MAVISp - Welcome",
page_icon="👋")
add_mavisp_logo("static/logo_small.png", image_width='50%')
add_affiliation_logo()
st.header("Welcome to MAVISp!")
st.write("""MAVISp includes different types of predictions for the effect of mutations
on protein function, structure or more. Its final goal is to predict the effect of
relevant variants of unknown significance and identify their mechanism of action.
MAVISp has been designed by the Cancer Structural Biology (Danish Cancer Institute, Denmark)
and the Cancer Systems Biology (Department of Health and Technology at the Technical University of Demark)
groups, headed by Dr. Elena Papaleo
Please use the menu on the left to navigate the website.
If you use data from MAVISp from your research, please cite
[our preprint](https://www.biorxiv.org/content/10.1101/2022.10.22.513328v6):""")
st.code("""MAVISp: A Modular Structure-Based Framework for Genomic Variant Interpretation
Matteo Arnaudi, Mattia Utichi, Kristine Degn, Ludovica Beltrame, Simone Scrima, Karolina Krzesińska,
Pablo Sánchez-Izquierdo Besora, Katrine Meldgård, Laura Bauer, Terézia Dorčaková, Anna Melidi,
Lorenzo Favaro, Eleni Kiachaki, Anu Oswal, Alberte Heering Estad, Joachim Breitenstein, Jordan Safer,
Paraskevi Saridaki, Francesca Maselli, Burcu Aykac Fas, Guglielmo Tedeschi, Philipp Becker,
Jérémy Vinhas, Alberto Pettenella, Peter Wad Sackett, Claudia Cava, Anna Rohlin, Mef Nilbert,
Sumaiya Iqbal, Matteo Lambrughi, Matteo Tiberti, Elena Papaleo
bioRxiv (2025), 10.1101/2022.10.22.513328""", language=None)
st.write("""Please see the "Acknowledgement and data usage" section for information about our data
sources, data license terms and data reuse""")