Spaces:
Running
Running
gradio
Browse files- Dockerfile +2 -0
- app.py +2 -2
Dockerfile
CHANGED
|
@@ -9,6 +9,8 @@ WORKDIR /app
|
|
| 9 |
RUN pip install --no-cache-dir \
|
| 10 |
"stoic @ git+https://github.com/PickyBinders/stoic.git"
|
| 11 |
|
|
|
|
|
|
|
| 12 |
RUN useradd -m -u 1000 user
|
| 13 |
USER user
|
| 14 |
ENV HOME=/home/user
|
|
|
|
| 9 |
RUN pip install --no-cache-dir \
|
| 10 |
"stoic @ git+https://github.com/PickyBinders/stoic.git"
|
| 11 |
|
| 12 |
+
RUN pip install --no-cache-dir gradio==6.9.0
|
| 13 |
+
|
| 14 |
RUN useradd -m -u 1000 user
|
| 15 |
USER user
|
| 16 |
ENV HOME=/home/user
|
app.py
CHANGED
|
@@ -117,10 +117,10 @@ def build_weights_plot(residue_predictions, chain_labels):
|
|
| 117 |
|
| 118 |
with gr.Blocks(title="Stoic - Protein Stoichiometry Prediction") as app:
|
| 119 |
gr.Markdown(
|
| 120 |
-
"# Stoic\n"
|
| 121 |
"**Fast and accurate protein stoichiometry prediction**\n\n"
|
| 122 |
"Enter one protein sequence per line (one per unique chain type). "
|
| 123 |
-
"Stoic predicts how many copies of each chain are present in the assembled complex."
|
| 124 |
)
|
| 125 |
|
| 126 |
with gr.Row():
|
|
|
|
| 117 |
|
| 118 |
with gr.Blocks(title="Stoic - Protein Stoichiometry Prediction") as app:
|
| 119 |
gr.Markdown(
|
| 120 |
+
"# *Stoic*\n"
|
| 121 |
"**Fast and accurate protein stoichiometry prediction**\n\n"
|
| 122 |
"Enter one protein sequence per line (one per unique chain type). "
|
| 123 |
+
"*Stoic* predicts how many copies of each chain are present in the assembled complex."
|
| 124 |
)
|
| 125 |
|
| 126 |
with gr.Row():
|