Files
macrolactone-toolkit/scripts/batch_process_ring16.py
lingyuzeng c0ead42384 feat(toolkit): add classification and migration
Implement the standard/non-standard/not-macrolactone classification layer
and integrate it into analyzer, fragmenter, and CLI outputs.

Port the remaining legacy package capabilities into new visualization and
workflow modules, restore batch/statistics/SDF scripts on top of the flat
CSV workflow, and update active docs to the new package API.
2026-03-18 23:56:41 +08:00

10 lines
163 B
Python

from __future__ import annotations
import sys
from scripts.batch_process import main
if __name__ == "__main__":
main(["--ring-size", "16", *sys.argv[1:]])