glycoforge 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
glycoforge/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """GlycoForge - Simulation and batch correction pipeline for glycomics data"""
2
+
3
+ __version__ = "0.1.0"
4
+
5
+ # Core simulation interface
6
+ from .pipeline import simulate
7
+
8
+ # Utility functions
9
+ from .utils import clr, invclr, parse_simulation_config, plot_pca
10
+
11
+ # Expose core API
12
+ __all__ = [
13
+ 'simulate',
14
+ 'clr',
15
+ 'invclr',
16
+ 'parse_simulation_config',
17
+ 'plot_pca'
18
+ ]