Update app.py
Browse files
app.py
CHANGED
|
@@ -39,6 +39,15 @@ def run():
|
|
| 39 |
hf_writer = gr.HuggingFaceDatasetSaver(os.environ.get("HF_API_TOKEN"), "sincfold-sequences-check")
|
| 40 |
|
| 41 |
demo = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
fn=fold,
|
| 43 |
inputs=[
|
| 44 |
gr.Textbox(label="ID",
|
|
|
|
| 39 |
hf_writer = gr.HuggingFaceDatasetSaver(os.environ.get("HF_API_TOKEN"), "sincfold-sequences-check")
|
| 40 |
|
| 41 |
demo = gr.Interface(
|
| 42 |
+
title='sincFold: an end-to-end deep learning approach for RNA structure prediction',
|
| 43 |
+
description='sincFold is an end-to-end deep learning approach that predicts the nucleotides contact matrix using only the RNA sequence as input. This demo provides a sincFold model pre-trained with known RNAs secondary structures.
|
| 44 |
+
Input RNA sequences of up to 512 nucleotides can be processed with this demo. To process sequences longer than 512 nucleotides you can either install the package (via pip) or clone the entire repository.
|
| 45 |
+
|
| 46 |
+
source-code: https://github.com/sinc-lab/sincFold
|
| 47 |
+
|
| 48 |
+
bioRxiv: https://www.biorxiv.org/content/10.1101/2023.10.10.561771v1
|
| 49 |
+
|
| 50 |
+
'
|
| 51 |
fn=fold,
|
| 52 |
inputs=[
|
| 53 |
gr.Textbox(label="ID",
|