-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path3_gnn.py
More file actions
30 lines (21 loc) · 744 Bytes
/
3_gnn.py
File metadata and controls
30 lines (21 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
"""
Step 3: GNN File Discovery and Parsing (Thin Orchestrator)
Delegates discovery, parsing, and multi-format serialization to
`gnn/multi_format_processor.py` using the standardized pipeline wrapper.
"""
import sys
from pathlib import Path
# Add src to path for imports
sys.path.insert(0, str(Path(__file__).parent))
from gnn.multi_format_processor import process_gnn_multi_format
from utils.pipeline_template import create_standardized_pipeline_script
run_script = create_standardized_pipeline_script(
"3_gnn.py",
process_gnn_multi_format,
"GNN discovery, parsing, and multi-format serialization",
)
def main() -> int:
return run_script()
if __name__ == "__main__":
raise SystemExit(main())