- Add src/splicing/ module with scaffold_prep, fragment_prep, and engine - Add tylosin_splicer.py entry script - Add unit tests for splicing components Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
165 B
Python
11 lines
165 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Tylosin Splicing System - Main Entry Point
|
|
"""
|
|
|
|
def main():
|
|
print("Hello from Tylosin Splicer")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|