mosses commited on
Commit
06d9229
1 Parent(s): 40c0cef

Update construct.py

Browse files
Files changed (1) hide show
  1. construct.py +2 -2
construct.py CHANGED
@@ -19,8 +19,8 @@ def LabFusion(name, file , uni_seq , orientation:str="NC", gfp:bool=False, sol_t
19
  dick[name] = build(uni_seq, sol_tag, gfp, orientation)
20
  table = pd.DataFrame.from_dict(dick)
21
 
22
- table.to_csv(f"./gradio_projects/constructs_{name}.csv")
23
- return table, f"./gradio_projects/constructs_{name}.csv"
24
 
25
 
26
  int_align = gr.Interface(fn=LabFusion,
 
19
  dick[name] = build(uni_seq, sol_tag, gfp, orientation)
20
  table = pd.DataFrame.from_dict(dick)
21
 
22
+ table.to_csv(f"/tmp/constructs_{name}.csv")
23
+ return table, f"/tmp/constructs_{name}.csv"
24
 
25
 
26
  int_align = gr.Interface(fn=LabFusion,