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()