Skip to content

Commit

Permalink
url
Browse files Browse the repository at this point in the history
  • Loading branch information
pgarrett-scripps committed Mar 27, 2024
1 parent 1182e49 commit 6ca5fb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def add_variable_modification(r):
cov = pt.calculate_span_coverage(spans, protein_length)
protein_cov_at_mass.append(sum(cov) / len(cov) * 100)

st.write(f'##### [Sharable URL]({url})')
st.write(f'##### :link: [Sharable URL]({url})')

t1, t2, t3, t4, t5 = st.tabs(['Digestion Metrics', 'Cleavage & Coverage', 'Motif Analysis', 'Wiki', 'Help'])

Expand Down
4 changes: 2 additions & 2 deletions constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import copy
import os

from peptacular.constants import PROTEASES
import peptacular as pt


def get_env_int(var_name, default):
Expand Down Expand Up @@ -77,7 +77,7 @@ def get_env_str(var_name, default):

LINK = get_env_str('LINK', 'https://peptidefragmenter.streamlit.app/')

VALID_PROTEASES = copy.deepcopy(PROTEASES)
VALID_PROTEASES = copy.deepcopy(pt.PROTEASES)
VALID_PROTEASES.pop('non-specific', None)
VALID_PROTEASES = {k.replace(' ', '_'): v for k, v in VALID_PROTEASES.items()}

Expand Down

0 comments on commit 6ca5fb6

Please sign in to comment.