@datagrok/bio 2.27.7 → 2.27.8
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/CREDITS.md +246 -0
- package/dist/package-test.js +2 -2
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/files/tests/to-atomic-level-dna-fasta-output.csv +7152 -7152
- package/package.json +2 -2
- package/src/tests/to-atomic-level-tests.ts +58 -0
- package/test-console-output-1.log +579 -591
- package/test-record-1.mp4 +0 -0
package/CREDITS.md
ADDED
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
# Bio — Third-Party Libraries
|
|
2
|
+
|
|
3
|
+
The `@datagrok/bio` package is distributed under the MIT license that covers the
|
|
4
|
+
rest of the `public/` repository (see [`../../LICENSE.md`](../../LICENSE.md)). It
|
|
5
|
+
incorporates the open-source components listed below; this file reproduces the
|
|
6
|
+
attribution and notices required by their respective licenses.
|
|
7
|
+
|
|
8
|
+
All runtime JavaScript dependencies bundled into the published artifact are
|
|
9
|
+
under permissive licenses (MIT, Apache-2.0, BSD-3-Clause). No copyleft
|
|
10
|
+
(GPL/LGPL/MPL) component is bundled into the published Bio plugin.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## 1. Bundled in the published artifact (`dist/`)
|
|
15
|
+
|
|
16
|
+
### immunum (1.1.0)
|
|
17
|
+
|
|
18
|
+
ENPICOM's antibody/TCR numbering library, compiled to WebAssembly. The
|
|
19
|
+
WASM binary is bundled into `dist/`; the wasm-bindgen JS glue is reused from
|
|
20
|
+
[`src/utils/antibody-numbering/immunum-glue.js`](src/utils/antibody-numbering/immunum-glue.js),
|
|
21
|
+
which is a port of the upstream `node_modules/immunum/immunum.js` modified
|
|
22
|
+
only to replace the Node-only `require('fs').readFileSync` top-level loader
|
|
23
|
+
with an explicit `initImmunum(bytes)` entry point so it works in browsers and
|
|
24
|
+
web workers. The modification is noted in the file header per MIT terms.
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/ENPICOM/immunum — https://immunum.enpicom.com
|
|
27
|
+
- License: **MIT**
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
MIT License
|
|
31
|
+
|
|
32
|
+
Copyright (c) 2026 ENPICOM
|
|
33
|
+
|
|
34
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
35
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
36
|
+
in the Software without restriction, including without limitation the rights
|
|
37
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
38
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
39
|
+
furnished to do so, subject to the following conditions:
|
|
40
|
+
|
|
41
|
+
The above copyright notice and this permission notice shall be included in all
|
|
42
|
+
copies or substantial portions of the Software.
|
|
43
|
+
|
|
44
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
45
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
46
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
47
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
48
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
49
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
50
|
+
SOFTWARE.
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### @biowasm/aioli (3.x)
|
|
54
|
+
|
|
55
|
+
WebAssembly runtime that drives multiple sequence alignment (kalign). The
|
|
56
|
+
aioli library itself is bundled; the kalign tool it loads is fetched at
|
|
57
|
+
runtime — see Section 3 below.
|
|
58
|
+
|
|
59
|
+
- Upstream: https://github.com/biowasm/aioli
|
|
60
|
+
- License: **MIT**
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
MIT License
|
|
64
|
+
|
|
65
|
+
Copyright (c) 2018 Robert Aboukhalil
|
|
66
|
+
|
|
67
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
68
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
69
|
+
in the Software without restriction, including without limitation the rights
|
|
70
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
71
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
72
|
+
furnished to do so, subject to the following conditions:
|
|
73
|
+
|
|
74
|
+
The above copyright notice and this permission notice shall be included in all
|
|
75
|
+
copies or substantial portions of the Software.
|
|
76
|
+
|
|
77
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
78
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
79
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
80
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
81
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
82
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
83
|
+
SOFTWARE.
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Ajv (8.x) and ajv-errors (3.x)
|
|
87
|
+
|
|
88
|
+
JSON-schema validator used for monomer-library JSON validation.
|
|
89
|
+
|
|
90
|
+
- Upstream: https://ajv.js.org/ — https://github.com/ajv-validator/ajv-errors
|
|
91
|
+
- License: **MIT**
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
The MIT License (MIT)
|
|
95
|
+
|
|
96
|
+
Copyright (c) 2015-2021 Evgeny Poberezkin
|
|
97
|
+
|
|
98
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
99
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
100
|
+
in the Software without restriction, including without limitation the rights
|
|
101
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
102
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
103
|
+
furnished to do so, subject to the following conditions:
|
|
104
|
+
|
|
105
|
+
The above copyright notice and this permission notice shall be included in all
|
|
106
|
+
copies or substantial portions of the Software.
|
|
107
|
+
|
|
108
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
109
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
110
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
111
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
112
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
113
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
114
|
+
SOFTWARE.
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
(`ajv-errors` carries an analogous MIT notice — *Copyright (c) 2017 Evgeny
|
|
118
|
+
Poberezkin*.)
|
|
119
|
+
|
|
120
|
+
### fastest-levenshtein (1.0.x)
|
|
121
|
+
|
|
122
|
+
Levenshtein-distance implementation used in sequence comparison code paths.
|
|
123
|
+
|
|
124
|
+
- Upstream: https://github.com/ka-weihe/fastest-levenshtein
|
|
125
|
+
- License: **MIT**
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
MIT License
|
|
129
|
+
|
|
130
|
+
Copyright (c) 2020 Kasper Unn Weihe
|
|
131
|
+
|
|
132
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
133
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
134
|
+
in the Software without restriction, including without limitation the rights
|
|
135
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
136
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
137
|
+
furnished to do so, subject to the following conditions:
|
|
138
|
+
|
|
139
|
+
The above copyright notice and this permission notice shall be included in all
|
|
140
|
+
copies or substantial portions of the Software.
|
|
141
|
+
|
|
142
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
143
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
144
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
145
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
146
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
147
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
148
|
+
SOFTWARE.
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### umap-js (1.4.x)
|
|
152
|
+
|
|
153
|
+
UMAP dimensionality reduction used by sequence-space and similarity viewers.
|
|
154
|
+
The npm package metadata declares MIT but the LICENSE file shipped in the
|
|
155
|
+
tarball is **Apache-2.0**, so we comply with the more conservative Apache-2.0
|
|
156
|
+
terms (preserve copyright/attribution; mark modifications, of which there are
|
|
157
|
+
none).
|
|
158
|
+
|
|
159
|
+
- Upstream: https://github.com/PAIR-code/umap-js
|
|
160
|
+
- Author: Andy Coenen (Google PAIR)
|
|
161
|
+
- License: **Apache-2.0**
|
|
162
|
+
|
|
163
|
+
> Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
164
|
+
> use this file except in compliance with the License. You may obtain a copy of
|
|
165
|
+
> the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
166
|
+
>
|
|
167
|
+
> Unless required by applicable law or agreed to in writing, software
|
|
168
|
+
> distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
169
|
+
> WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
170
|
+
> License for the specific language governing permissions and limitations
|
|
171
|
+
> under the License.
|
|
172
|
+
|
|
173
|
+
The full Apache-2.0 license text is available at the URL above and in
|
|
174
|
+
`node_modules/umap-js/LICENSE`.
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## 2. Linked at runtime via the Datagrok platform (webpack externals)
|
|
179
|
+
|
|
180
|
+
These libraries are not bundled into Bio's `dist/` — they are provided once
|
|
181
|
+
by the platform host and shared across all packages.
|
|
182
|
+
|
|
183
|
+
| Component | Version | License | Upstream |
|
|
184
|
+
|----------------------------------|---------|--------------|---------------------------------------------------|
|
|
185
|
+
| OpenChemLib JS | 7.x | BSD-3-Clause | https://github.com/cheminfo/openchemlib-js |
|
|
186
|
+
| RxJS | 6.x | Apache-2.0 | https://github.com/ReactiveX/rxjs |
|
|
187
|
+
| cash-dom | 8.x | MIT | https://github.com/fabiospampinato/cash |
|
|
188
|
+
| Day.js | 1.x | MIT | https://github.com/iamkun/dayjs |
|
|
189
|
+
| wu.js | 2.x | MIT | https://github.com/fitzgen/wu.js |
|
|
190
|
+
|
|
191
|
+
OpenChemLib JS is also referenced by Bio's `package.json` `sources`. The
|
|
192
|
+
upstream `openchemlib-js` npm package is distributed under BSD-3-Clause:
|
|
193
|
+
*Copyright (c) 2015-2017, cheminfo.*
|
|
194
|
+
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
## 3. Fetched at runtime from third-party CDNs (not bundled)
|
|
198
|
+
|
|
199
|
+
### kalign (via @biowasm/aioli)
|
|
200
|
+
|
|
201
|
+
`@biowasm/aioli` loads the **kalign** multiple-sequence-alignment tool from
|
|
202
|
+
the public biowasm CDN (`https://biowasm.com/cdn/v3/...`) on demand. kalign
|
|
203
|
+
itself is **not** bundled into Bio's `dist/` and is **not** redistributed by
|
|
204
|
+
the Datagrok platform. Users that load it transitively are subject to
|
|
205
|
+
kalign's upstream license (GPLv3).
|
|
206
|
+
|
|
207
|
+
- Upstream: https://github.com/TimoLassmann/kalign
|
|
208
|
+
- License: GPLv3 (used as a runtime-fetched, non-bundled dependency)
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
## 4. Docker container (`dockerfiles/`) — PepSeA service
|
|
213
|
+
|
|
214
|
+
The Bio package ships a single Docker image (`dockerfiles/Dockerfile`) that
|
|
215
|
+
provides a PepSeA-based MSA service for HELM peptide sequences. The image is
|
|
216
|
+
built from `datagrok/python` and pulls third-party software at build time:
|
|
217
|
+
|
|
218
|
+
| Component | Source | License |
|
|
219
|
+
|---------------|-------------------------------------------------|------------------------|
|
|
220
|
+
| PepSeA | https://github.com/Merck/PepSeA (main branch) | MIT (Merck & Co.) |
|
|
221
|
+
| MAFFT | https://mafft.cbrc.jp/ (`mafft_7.520-1` .deb) | MAFFT license (BSD-style, free for any use with attribution) |
|
|
222
|
+
| FastAPI | https://github.com/tiangolo/fastapi | MIT |
|
|
223
|
+
| uvicorn | https://www.uvicorn.org/ | BSD-3-Clause |
|
|
224
|
+
| ujson | https://github.com/ultrajson/ultrajson | BSD-3-Clause |
|
|
225
|
+
| Python stdlib | https://www.python.org/ | PSF License |
|
|
226
|
+
|
|
227
|
+
The `Dockerfile` patches a few lines of PepSeA's `api.py` at build time to
|
|
228
|
+
add a `/distout` endpoint and JSON error-handling middleware; per MIT terms
|
|
229
|
+
those modifications are noted here.
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## 5. Development-only dependencies
|
|
234
|
+
|
|
235
|
+
Tools used during the build/test cycle (not in the runtime tree, not bundled):
|
|
236
|
+
the `datagrok-tools` CLI transitively pulls in `puppeteer-screen-recorder`,
|
|
237
|
+
which references `@ffmpeg-installer/ffmpeg` (LGPL-2.1) and
|
|
238
|
+
`@ffmpeg-installer/win32-x64` (GPLv3). These binaries are **not**
|
|
239
|
+
redistributed as part of the published Bio plugin and impose no obligation on
|
|
240
|
+
users of the plugin.
|
|
241
|
+
|
|
242
|
+
The peer/devDependencies on other Datagrok plugins (`@datagrok/chem`,
|
|
243
|
+
`@datagrok/dendrogram`, `@datagrok/eda`, `@datagrok/helm`,
|
|
244
|
+
`@datagrok/peptides`) are MIT — covered by the repo-wide `LICENSE.md`. Each
|
|
245
|
+
of those plugins maintains its own `CREDITS.md` (or will) for its own
|
|
246
|
+
third-party content.
|