@aleph-ai/tinyaleph 1.2.1 → 1.3.0

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.
package/modular.js CHANGED
@@ -97,7 +97,18 @@ const {
97
97
  Backend,
98
98
  SemanticBackend,
99
99
  CryptographicBackend,
100
- ScientificBackend
100
+ ScientificBackend,
101
+ BioinformaticsBackend,
102
+ TranscriptionOperator,
103
+ TranslationOperator,
104
+ FoldingTransform,
105
+ BindingAffinityCalculator,
106
+ MolecularDocker,
107
+ DNAStrand,
108
+ DNACircuit,
109
+ ANDGate,
110
+ ORGate,
111
+ NOTGate
101
112
  } = backends;
102
113
 
103
114
  // Unified engine
@@ -123,6 +134,12 @@ function createEngine(backendType, config = {}) {
123
134
  case 'quantum':
124
135
  backend = new ScientificBackend(config);
125
136
  break;
137
+ case 'bioinformatics':
138
+ case 'bio':
139
+ case 'dna':
140
+ case 'protein':
141
+ backend = new BioinformaticsBackend(config);
142
+ break;
126
143
  default:
127
144
  throw new Error(`Unknown backend type: ${backendType}`);
128
145
  }
@@ -156,6 +173,21 @@ module.exports = {
156
173
  SemanticBackend,
157
174
  CryptographicBackend,
158
175
  ScientificBackend,
176
+ BioinformaticsBackend,
177
+
178
+ // Bioinformatics operators
179
+ TranscriptionOperator,
180
+ TranslationOperator,
181
+ FoldingTransform,
182
+ BindingAffinityCalculator,
183
+ MolecularDocker,
184
+
185
+ // DNA Computing
186
+ DNAStrand,
187
+ DNACircuit,
188
+ ANDGate,
189
+ ORGate,
190
+ NOTGate,
159
191
 
160
192
  // Core math
161
193
  Hypercomplex,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aleph-ai/tinyaleph",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "description": "Prime-resonant semantic computing framework - hypercomplex algebra, oscillator dynamics, and entropy-minimizing reasoning",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",