File size: 343 Bytes
055707a
 
 
dd512e6
 
547d93a
429bf81
055707a
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from gradio_fasta import FASTA

with gr.Blocks() as demo:
    gr.Markdown("### Zoonotica File Viewer")
    fasta_viewer = FASTA(label="zoonotica-orthologs",value="TP53_protein_sequences.fasta")
    # fasta_viewer.render()  # Render the FASTA component without requiring inputs

if __name__ == "__main__":
    demo.launch()