Update app.py
Browse files
app.py
CHANGED
@@ -68,14 +68,10 @@ def main(input_file_path, species):
|
|
68 |
# Print the command for debugging
|
69 |
print("Running command:", command)
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
print(result.stderr)
|
76 |
-
except subprocess.CalledProcessError as e:
|
77 |
-
print(f"Error executing command: {e}")
|
78 |
-
|
79 |
print("---> FINSIH UCE")
|
80 |
|
81 |
##############
|
|
|
68 |
# Print the command for debugging
|
69 |
print("Running command:", command)
|
70 |
|
71 |
+
print("---> RUNNING UCE")
|
72 |
+
result = subprocess.run(command, capture_output=True, text=True, check=True)
|
73 |
+
print(result.stdout)
|
74 |
+
print(result.stderr)
|
|
|
|
|
|
|
|
|
75 |
print("---> FINSIH UCE")
|
76 |
|
77 |
##############
|