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 1e25583 commit 1182e49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
fetched_sequence = ''.join(response.text.split('\n')[1:])
raw_sequence = fetched_sequence

raw_sequence = st.text_area(label="Protein sequence",
raw_sequence = st.text_area(label="Protein sequence (Proforma2.0 Notation)",
value=raw_sequence,
help='An amino acid sequence to digest. Any modifications will be preserved.',
max_chars=MAX_PROTEIN_INPUT_LENGTH,
Expand Down 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'##### [Analysis URL]({url}) (copy me and send to your friends!)')
st.write(f'##### [Sharable URL]({url})')

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

Expand Down

0 comments on commit 1182e49

Please sign in to comment.