Unify macrolactone detection, numbering, fragmentation, and splicing under the installable macro_lactone_toolkit package. - replace legacy src.* modules with the new package layout - add analyze/number/fragment CLI entrypoints and pixi tasks - migrate tests, README, and scripts to the new package API
11 lines
198 B
Python
11 lines
198 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from macro_lactone_toolkit.cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.argv = ["macro-lactone-toolkit", "analyze", *sys.argv[1:]]
|
|
main()
|