Spaces:
Sleeping
Sleeping
Update biopython/mcp_output/mcp_plugin/mcp_service.py
Browse files
biopython/mcp_output/mcp_plugin/mcp_service.py
CHANGED
|
@@ -1,7 +1,10 @@
|
|
| 1 |
import os
|
| 2 |
import sys
|
| 3 |
import re
|
|
|
|
|
|
|
| 4 |
from io import StringIO
|
|
|
|
| 5 |
|
| 6 |
# Ensure Biopython source is importable when running the MCP service
|
| 7 |
source_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), "source")
|
|
|
|
| 1 |
import os
|
| 2 |
import sys
|
| 3 |
import re
|
| 4 |
+
import time
|
| 5 |
+
import threading
|
| 6 |
from io import StringIO
|
| 7 |
+
from typing import Optional, Dict, Any
|
| 8 |
|
| 9 |
# Ensure Biopython source is importable when running the MCP service
|
| 10 |
source_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), "source")
|