Files
macrolactone-toolkit/scripts/generate_sdf_and_statistics.py
lingyuzeng 5e7b236f31 feat(toolkit): ship macro_lactone_toolkit package
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
2026-03-18 22:06:45 +08:00

13 lines
304 B
Python

from macro_lactone_toolkit import FragmentationResult
def main() -> None:
raise SystemExit(
"Legacy helper retired. Use 'macro-lactone-toolkit fragment' to export fragments, "
"then generate SDF/statistics in downstream analysis code."
)
if __name__ == "__main__":
main()