volcano-plot / app.py
Romain Graux
Initial commit
9c88354
raw
history blame
199 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import gradio as gr
CSS = """
"""
with gr.Blocks(css=CSS) as block:
gr.Markdown(
"""
## Volcano plots
"""
)
block.launch()