move git clone repo
Browse files
app.py
CHANGED
@@ -16,8 +16,6 @@ from huggingface_hub import hf_hub_download
|
|
16 |
def main(input_file_path, species):
|
17 |
|
18 |
# clone and cd into UCE repo
|
19 |
-
os.system('git clone https://github.com/minwoosun/UCE.git')
|
20 |
-
os.chdir('UCE')
|
21 |
|
22 |
##############
|
23 |
# UCE #
|
@@ -83,6 +81,9 @@ def main(input_file_path, species):
|
|
83 |
|
84 |
|
85 |
if __name__ == "__main__":
|
|
|
|
|
|
|
86 |
|
87 |
# Define Gradio inputs and outputs
|
88 |
file_input = gr.File(label="Upload a .h5ad single cell gene expression file")
|
|
|
16 |
def main(input_file_path, species):
|
17 |
|
18 |
# clone and cd into UCE repo
|
|
|
|
|
19 |
|
20 |
##############
|
21 |
# UCE #
|
|
|
81 |
|
82 |
|
83 |
if __name__ == "__main__":
|
84 |
+
|
85 |
+
os.system('git clone https://github.com/minwoosun/UCE.git')
|
86 |
+
os.chdir('UCE')
|
87 |
|
88 |
# Define Gradio inputs and outputs
|
89 |
file_input = gr.File(label="Upload a .h5ad single cell gene expression file")
|