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.
10 lines
139 B
Python
10 lines
139 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from scripts.batch_process import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv[1:])
|