Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling #94

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions src/SOPRANO/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,17 +360,17 @@ def with_tab_info(tab: DeltaGenerator):
"""
)
st.divider()
st.write("**Licence and help**")
st.write("**License and help**")
st.caption(
"""
SOPRANO is licensed under the [GNU General Public License]
(https://github.com/instituteofcancerresearch/SOPRANO/blob/python/LICENSE)
SOPRANO is licensed under the
[GNU General Public License](https://github.com/instituteofcancerresearch/SOPRANO/blob/python/LICENSE)
"""
)
st.caption(
"""
Any technical issues can be raised [here on
GitHub](https://github.com/instituteofcancerresearch/SOPRANO/issues)
Any technical issues can be raised
[here on GitHub](https://github.com/instituteofcancerresearch/SOPRANO/issues)
"""
)
st.divider()
Expand Down Expand Up @@ -480,6 +480,21 @@ def with_tab_immunopeptidome(tab: DeltaGenerator):

if __name__ == "__main__":
st.set_page_config(layout="wide")
header = """
The Institute of Cancer Research - **SOPRANO** -
<span style="color:grey">S</span><span style=
"color:yellowgreen">election </span><span style=
"color:grey">O</span><span style=
"color:gold">n </span><span style=
"color:grey">PR</span><span style=
"color:orange">otein </span><span style=
"color:grey">AN</span><span style=
"color:hotpink">notated </span><span style=
"color:hotpink">regi</span><span style=
"color:grey">O</span><span style=
"color:darkred">ns</span>
"""
# st.markdown(header, unsafe_allow_html=True)
(
welcome_tab,
genome_tab,
Expand Down
Loading