kedimestan commited on
Commit
692e28b
·
verified ·
1 Parent(s): ade1c54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +68 -4
app.py CHANGED
@@ -1,7 +1,71 @@
1
  import gradio as gr
 
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ import fcsparser
3
+ import matplotlib.pyplot as plt
4
+ import io
5
 
6
+ # Function to parse FCS file and extract data and metadata
7
+ def parse_fcs(file):
8
+ meta, data = fcsparser.parse(file.name, reformat_meta=True)
9
+ return data, list(data.columns)
10
 
11
+ # Function to plot the data based on selected x and y parameters
12
+ def plot_dot(file, x_param, y_param):
13
+ if not file:
14
+ return "Please upload an FCS file."
15
+
16
+ try:
17
+ data, columns = parse_fcs(file)
18
+
19
+ if x_param not in columns or y_param not in columns:
20
+ return "Invalid parameters selected. Please choose valid parameters from the dropdown."
21
+
22
+ # Create the plot
23
+ plt.figure(figsize=(8, 6))
24
+ plt.scatter(data[x_param], data[y_param], s=1, alpha=0.5, color="blue")
25
+ plt.xlabel(x_param)
26
+ plt.ylabel(y_param)
27
+ plt.title("Flow Cytometry Dot Plot")
28
+ plt.grid(True)
29
+
30
+ # Save plot to a BytesIO object
31
+ buf = io.BytesIO()
32
+ plt.savefig(buf, format="png")
33
+ buf.seek(0)
34
+ plt.close()
35
+ return buf
36
+ except Exception as e:
37
+ return f"Error: {e}"
38
+
39
+ # Function to dynamically update parameter options after file upload
40
+ def get_parameters(file):
41
+ if not file:
42
+ return [], []
43
+
44
+ try:
45
+ _, columns = parse_fcs(file)
46
+ return gr.Dropdown.update(choices=columns), gr.Dropdown.update(choices=columns)
47
+ except Exception as e:
48
+ return [f"Error: {e}"], [f"Error: {e}"]
49
+
50
+ # Create Gradio interface
51
+ with gr.Blocks() as app:
52
+ gr.Markdown("# Flow Cytometry Dot Plot Viewer")
53
+
54
+ with gr.Row():
55
+ fcs_file = gr.File(label="Upload FCS File")
56
+
57
+ with gr.Row():
58
+ x_param = gr.Dropdown(label="X Parameter", choices=[], interactive=True)
59
+ y_param = gr.Dropdown(label="Y Parameter", choices=[], interactive=True)
60
+
61
+ plot_btn = gr.Button("Generate Plot")
62
+ plot_output = gr.Image(type="file", label="Dot Plot")
63
+
64
+ # Update parameter dropdowns on file upload
65
+ fcs_file.change(get_parameters, inputs=[fcs_file], outputs=[x_param, y_param])
66
+
67
+ # Generate plot on button click
68
+ plot_btn.click(plot_dot, inputs=[fcs_file, x_param, y_param], outputs=plot_output)
69
+
70
+ # Run the app
71
+ app.launch()