Update app.py
Browse files
app.py
CHANGED
@@ -13,10 +13,31 @@ from huggingface_hub import hf_hub_download
|
|
13 |
|
14 |
def main(input_file_path, species):
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
# clone and cd into UCE repo
|
17 |
os.system('git clone https://github.com/minwoosun/UCE.git')
|
18 |
os.chdir('/home/user/app/UCE')
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
##############
|
21 |
# UCE #
|
22 |
##############
|
|
|
13 |
|
14 |
def main(input_file_path, species):
|
15 |
|
16 |
+
# Get the current working directory
|
17 |
+
current_working_directory = os.getcwd()
|
18 |
+
|
19 |
+
# Print the current working directory
|
20 |
+
print("Current Working Directory:", current_working_directory)
|
21 |
+
|
22 |
# clone and cd into UCE repo
|
23 |
os.system('git clone https://github.com/minwoosun/UCE.git')
|
24 |
os.chdir('/home/user/app/UCE')
|
25 |
|
26 |
+
# Get the current working directory
|
27 |
+
current_working_directory = os.getcwd()
|
28 |
+
|
29 |
+
# Print the current working directory
|
30 |
+
print("Current Working Directory:", current_working_directory)
|
31 |
+
|
32 |
+
# import sys
|
33 |
+
|
34 |
+
# # Specify the path to the directory you want to add
|
35 |
+
# new_directory = "/path/to/new/directory"
|
36 |
+
|
37 |
+
# # Add the directory to the Python path
|
38 |
+
# sys.path.append(new_directory)
|
39 |
+
|
40 |
+
|
41 |
##############
|
42 |
# UCE #
|
43 |
##############
|