txnova 0.1.1__tar.gz

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.
Files changed (53) hide show
  1. txnova-0.1.1/Cargo.lock +1042 -0
  2. txnova-0.1.1/Cargo.toml +3 -0
  3. txnova-0.1.1/LICENSE +202 -0
  4. txnova-0.1.1/PKG-INFO +32 -0
  5. txnova-0.1.1/README.md +53 -0
  6. txnova-0.1.1/pyproject.toml +66 -0
  7. txnova-0.1.1/python/txnova/__init__.py +7 -0
  8. txnova-0.1.1/python/txnova/__main__.py +4 -0
  9. txnova-0.1.1/python/txnova/assemble.py +131 -0
  10. txnova-0.1.1/python/txnova/assembly_evidence.py +145 -0
  11. txnova-0.1.1/python/txnova/cli.py +106 -0
  12. txnova-0.1.1/python/txnova/config.py +133 -0
  13. txnova-0.1.1/python/txnova/data/Mouse_Hexamer.tsv +4097 -0
  14. txnova-0.1.1/python/txnova/data/SOURCE.txt +4 -0
  15. txnova-0.1.1/python/txnova/errors.py +2 -0
  16. txnova-0.1.1/python/txnova/fold.py +366 -0
  17. txnova-0.1.1/python/txnova/function.py +184 -0
  18. txnova-0.1.1/python/txnova/gates.py +596 -0
  19. txnova-0.1.1/python/txnova/gene_score.py +422 -0
  20. txnova-0.1.1/python/txnova/init_files.py +88 -0
  21. txnova-0.1.1/python/txnova/leak.py +48 -0
  22. txnova-0.1.1/python/txnova/logging.py +26 -0
  23. txnova-0.1.1/python/txnova/naming.py +135 -0
  24. txnova-0.1.1/python/txnova/orchestrator.py +822 -0
  25. txnova-0.1.1/python/txnova/orphan.py +383 -0
  26. txnova-0.1.1/python/txnova/preflight.py +67 -0
  27. txnova-0.1.1/python/txnova/provenance.py +87 -0
  28. txnova-0.1.1/python/txnova/report.py +636 -0
  29. txnova-0.1.1/python/txnova/residual.py +651 -0
  30. txnova-0.1.1/python/txnova/samples.py +91 -0
  31. txnova-0.1.1/python/txnova/staging.py +82 -0
  32. txnova-0.1.1/python/txnova/stamps.py +103 -0
  33. txnova-0.1.1/python/txnova/stats.py +118 -0
  34. txnova-0.1.1/python/txnova/templates/report.html.j2 +234 -0
  35. txnova-0.1.1/rust/txnova-core/Cargo.toml +24 -0
  36. txnova-0.1.1/rust/txnova-core/src/bam.rs +343 -0
  37. txnova-0.1.1/rust/txnova-core/src/classcode.rs +325 -0
  38. txnova-0.1.1/rust/txnova-core/src/coding.rs +271 -0
  39. txnova-0.1.1/rust/txnova-core/src/coverage.rs +392 -0
  40. txnova-0.1.1/rust/txnova-core/src/error.rs +19 -0
  41. txnova-0.1.1/rust/txnova-core/src/fasta.rs +156 -0
  42. txnova-0.1.1/rust/txnova-core/src/gtf.rs +400 -0
  43. txnova-0.1.1/rust/txnova-core/src/interval.rs +109 -0
  44. txnova-0.1.1/rust/txnova-core/src/leak.rs +512 -0
  45. txnova-0.1.1/rust/txnova-core/src/lib.rs +173 -0
  46. txnova-0.1.1/rust/txnova-core/src/orf.rs +224 -0
  47. txnova-0.1.1/rust/txnova-core/src/preflight.rs +323 -0
  48. txnova-0.1.1/rust/txnova-core/src/quantify.rs +379 -0
  49. txnova-0.1.1/rust/txnova-core/src/splice.rs +77 -0
  50. txnova-0.1.1/rust/txnova-core/src/structure.rs +436 -0
  51. txnova-0.1.1/rust/txnova-core/src/sys_mem.rs +316 -0
  52. txnova-0.1.1/rust/txnova-core/src/terminal.rs +313 -0
  53. txnova-0.1.1/rust/txnova-core/src/types.rs +84 -0
@@ -0,0 +1,1042 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
19
+
20
+ [[package]]
21
+ name = "bindgen"
22
+ version = "0.72.1"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
25
+ dependencies = [
26
+ "bitflags",
27
+ "cexpr",
28
+ "clang-sys",
29
+ "itertools",
30
+ "proc-macro2",
31
+ "quote",
32
+ "regex",
33
+ "rustc-hash",
34
+ "shlex 1.3.0",
35
+ "syn 2.0.119",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "bio-types"
40
+ version = "1.0.4"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "f4dcf54f8b7f51450207d54780bab09c05f30b8b0caa991545082842e466ad7e"
43
+ dependencies = [
44
+ "derive-new 0.6.0",
45
+ "lazy_static",
46
+ "regex",
47
+ "strum_macros",
48
+ "thiserror 1.0.69",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "bitflags"
53
+ version = "2.13.1"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
56
+
57
+ [[package]]
58
+ name = "block-buffer"
59
+ version = "0.10.4"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
62
+ dependencies = [
63
+ "generic-array",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "byteorder"
68
+ version = "1.5.0"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
71
+
72
+ [[package]]
73
+ name = "cc"
74
+ version = "1.4.2"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e"
77
+ dependencies = [
78
+ "find-msvc-tools",
79
+ "jobserver",
80
+ "libc",
81
+ "shlex 2.0.1",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "cexpr"
86
+ version = "0.6.0"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
89
+ dependencies = [
90
+ "nom",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "cfg-if"
95
+ version = "1.0.4"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
98
+
99
+ [[package]]
100
+ name = "clang-sys"
101
+ version = "1.9.1"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
104
+ dependencies = [
105
+ "glob",
106
+ "libc",
107
+ "libloading",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "cmake"
112
+ version = "0.1.58"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
115
+ dependencies = [
116
+ "cc",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "cpufeatures"
121
+ version = "0.2.17"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
124
+ dependencies = [
125
+ "libc",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "crypto-common"
130
+ version = "0.1.7"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
133
+ dependencies = [
134
+ "generic-array",
135
+ "typenum",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "custom_derive"
140
+ version = "0.1.7"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9"
143
+
144
+ [[package]]
145
+ name = "derive-new"
146
+ version = "0.5.9"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535"
149
+ dependencies = [
150
+ "proc-macro2",
151
+ "quote",
152
+ "syn 1.0.109",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "derive-new"
157
+ version = "0.6.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad"
160
+ dependencies = [
161
+ "proc-macro2",
162
+ "quote",
163
+ "syn 2.0.119",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "digest"
168
+ version = "0.10.7"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
171
+ dependencies = [
172
+ "block-buffer",
173
+ "crypto-common",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "displaydoc"
178
+ version = "0.2.7"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
181
+ dependencies = [
182
+ "proc-macro2",
183
+ "quote",
184
+ "syn 3.0.3",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "either"
189
+ version = "1.17.0"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
192
+
193
+ [[package]]
194
+ name = "find-msvc-tools"
195
+ version = "0.1.10"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de"
198
+
199
+ [[package]]
200
+ name = "form_urlencoded"
201
+ version = "1.2.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
204
+ dependencies = [
205
+ "percent-encoding",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "fs-utils"
210
+ version = "1.1.4"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "6fc7a9dc005c944c98a935e7fd626faf5bf7e5a609f94bc13e42fc4a02e52593"
213
+ dependencies = [
214
+ "quick-error",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "generic-array"
219
+ version = "0.14.7"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
222
+ dependencies = [
223
+ "typenum",
224
+ "version_check",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "getrandom"
229
+ version = "0.4.3"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
232
+ dependencies = [
233
+ "cfg-if",
234
+ "libc",
235
+ "r-efi",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "glob"
240
+ version = "0.3.4"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
243
+
244
+ [[package]]
245
+ name = "heck"
246
+ version = "0.5.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
249
+
250
+ [[package]]
251
+ name = "hts-sys"
252
+ version = "2.2.1"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "fc7e68eb880b02c80cfb41e8dc7904062a3ea7e27b7c4556e88d648dd2f038da"
255
+ dependencies = [
256
+ "bindgen",
257
+ "cc",
258
+ "fs-utils",
259
+ "glob",
260
+ "libz-sys",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "icu_collections"
265
+ version = "2.3.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
268
+ dependencies = [
269
+ "displaydoc",
270
+ "potential_utf",
271
+ "utf8_iter",
272
+ "yoke",
273
+ "zerofrom",
274
+ "zerovec",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "icu_locale_core"
279
+ version = "2.3.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
282
+ dependencies = [
283
+ "displaydoc",
284
+ "litemap",
285
+ "tinystr",
286
+ "writeable",
287
+ "zerovec",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "icu_normalizer"
292
+ version = "2.3.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
295
+ dependencies = [
296
+ "icu_collections",
297
+ "icu_normalizer_data",
298
+ "icu_properties",
299
+ "icu_provider",
300
+ "smallvec",
301
+ "zerovec",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "icu_normalizer_data"
306
+ version = "2.3.0"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
309
+
310
+ [[package]]
311
+ name = "icu_properties"
312
+ version = "2.3.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
315
+ dependencies = [
316
+ "displaydoc",
317
+ "icu_collections",
318
+ "icu_locale_core",
319
+ "icu_properties_data",
320
+ "icu_provider",
321
+ "zerotrie",
322
+ "zerovec",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "icu_properties_data"
327
+ version = "2.3.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
330
+
331
+ [[package]]
332
+ name = "icu_provider"
333
+ version = "2.3.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
336
+ dependencies = [
337
+ "displaydoc",
338
+ "icu_locale_core",
339
+ "writeable",
340
+ "yoke",
341
+ "zerofrom",
342
+ "zerotrie",
343
+ "zerovec",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "idna"
348
+ version = "1.1.0"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
351
+ dependencies = [
352
+ "idna_adapter",
353
+ "smallvec",
354
+ "utf8_iter",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "idna_adapter"
359
+ version = "1.2.2"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
362
+ dependencies = [
363
+ "icu_normalizer",
364
+ "icu_properties",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "ieee754"
369
+ version = "0.2.6"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
372
+
373
+ [[package]]
374
+ name = "indoc"
375
+ version = "2.0.7"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
378
+ dependencies = [
379
+ "rustversion",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "itertools"
384
+ version = "0.13.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
387
+ dependencies = [
388
+ "either",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "itoa"
393
+ version = "1.0.18"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
396
+
397
+ [[package]]
398
+ name = "jobserver"
399
+ version = "0.1.35"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
402
+ dependencies = [
403
+ "getrandom",
404
+ "libc",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "lazy_static"
409
+ version = "1.5.0"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
412
+
413
+ [[package]]
414
+ name = "libc"
415
+ version = "0.2.189"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
418
+
419
+ [[package]]
420
+ name = "libloading"
421
+ version = "0.8.9"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
424
+ dependencies = [
425
+ "cfg-if",
426
+ "windows-link",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "libz-sys"
431
+ version = "1.1.29"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
434
+ dependencies = [
435
+ "cc",
436
+ "cmake",
437
+ "libc",
438
+ "pkg-config",
439
+ "vcpkg",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "linear-map"
444
+ version = "1.2.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "bfae20f6b19ad527b550c223fddc3077a547fc70cda94b9b566575423fd303ee"
447
+
448
+ [[package]]
449
+ name = "litemap"
450
+ version = "0.8.3"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
453
+
454
+ [[package]]
455
+ name = "memchr"
456
+ version = "2.8.3"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
459
+
460
+ [[package]]
461
+ name = "memoffset"
462
+ version = "0.9.1"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
465
+ dependencies = [
466
+ "autocfg",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "minimal-lexical"
471
+ version = "0.2.1"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
474
+
475
+ [[package]]
476
+ name = "newtype_derive"
477
+ version = "0.1.6"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "ac8cd24d9f185bb7223958d8c1ff7a961b74b1953fd05dba7cc568a63b3861ec"
480
+ dependencies = [
481
+ "rustc_version",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "nom"
486
+ version = "7.1.3"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
489
+ dependencies = [
490
+ "memchr",
491
+ "minimal-lexical",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "once_cell"
496
+ version = "1.21.4"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
499
+
500
+ [[package]]
501
+ name = "percent-encoding"
502
+ version = "2.3.2"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
505
+
506
+ [[package]]
507
+ name = "pkg-config"
508
+ version = "0.3.33"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
511
+
512
+ [[package]]
513
+ name = "portable-atomic"
514
+ version = "1.15.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
517
+
518
+ [[package]]
519
+ name = "potential_utf"
520
+ version = "0.1.6"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
523
+ dependencies = [
524
+ "zerovec",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "proc-macro2"
529
+ version = "1.0.107"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
532
+ dependencies = [
533
+ "unicode-ident",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "pyo3"
538
+ version = "0.23.5"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
541
+ dependencies = [
542
+ "cfg-if",
543
+ "indoc",
544
+ "libc",
545
+ "memoffset",
546
+ "once_cell",
547
+ "portable-atomic",
548
+ "pyo3-build-config",
549
+ "pyo3-ffi",
550
+ "pyo3-macros",
551
+ "unindent",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "pyo3-build-config"
556
+ version = "0.23.5"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
559
+ dependencies = [
560
+ "once_cell",
561
+ "target-lexicon",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "pyo3-ffi"
566
+ version = "0.23.5"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
569
+ dependencies = [
570
+ "libc",
571
+ "pyo3-build-config",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "pyo3-macros"
576
+ version = "0.23.5"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
579
+ dependencies = [
580
+ "proc-macro2",
581
+ "pyo3-macros-backend",
582
+ "quote",
583
+ "syn 2.0.119",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "pyo3-macros-backend"
588
+ version = "0.23.5"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
591
+ dependencies = [
592
+ "heck",
593
+ "proc-macro2",
594
+ "pyo3-build-config",
595
+ "quote",
596
+ "syn 2.0.119",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "quick-error"
601
+ version = "1.2.3"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
604
+
605
+ [[package]]
606
+ name = "quote"
607
+ version = "1.0.47"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
610
+ dependencies = [
611
+ "proc-macro2",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "r-efi"
616
+ version = "6.0.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
619
+
620
+ [[package]]
621
+ name = "regex"
622
+ version = "1.13.1"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
625
+ dependencies = [
626
+ "aho-corasick",
627
+ "memchr",
628
+ "regex-automata",
629
+ "regex-syntax",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "regex-automata"
634
+ version = "0.4.18"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
637
+ dependencies = [
638
+ "aho-corasick",
639
+ "memchr",
640
+ "regex-syntax",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "regex-syntax"
645
+ version = "0.8.11"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
648
+
649
+ [[package]]
650
+ name = "rust-htslib"
651
+ version = "0.47.1"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "f62b46e47d8b025589565f0eefe83e8646faf0faf74d17014b1b6ea2c1504930"
654
+ dependencies = [
655
+ "bio-types",
656
+ "byteorder",
657
+ "custom_derive",
658
+ "derive-new 0.5.9",
659
+ "hts-sys",
660
+ "ieee754",
661
+ "lazy_static",
662
+ "libc",
663
+ "libz-sys",
664
+ "linear-map",
665
+ "newtype_derive",
666
+ "regex",
667
+ "thiserror 1.0.69",
668
+ "url",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "rustc-hash"
673
+ version = "2.1.3"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
676
+
677
+ [[package]]
678
+ name = "rustc_version"
679
+ version = "0.1.7"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "c5f5376ea5e30ce23c03eb77cbe4962b988deead10910c372b226388b594c084"
682
+ dependencies = [
683
+ "semver",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "rustversion"
688
+ version = "1.0.23"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
691
+
692
+ [[package]]
693
+ name = "semver"
694
+ version = "0.1.20"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "d4f410fedcf71af0345d7607d246e7ad15faaadd49d240ee3b24e5dc21a820ac"
697
+
698
+ [[package]]
699
+ name = "serde"
700
+ version = "1.0.229"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
703
+ dependencies = [
704
+ "serde_core",
705
+ "serde_derive",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "serde_core"
710
+ version = "1.0.229"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
713
+ dependencies = [
714
+ "serde_derive",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "serde_derive"
719
+ version = "1.0.229"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
722
+ dependencies = [
723
+ "proc-macro2",
724
+ "quote",
725
+ "syn 3.0.3",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "serde_json"
730
+ version = "1.0.151"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
733
+ dependencies = [
734
+ "itoa",
735
+ "memchr",
736
+ "serde",
737
+ "serde_core",
738
+ "zmij",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "sha2"
743
+ version = "0.10.9"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
746
+ dependencies = [
747
+ "cfg-if",
748
+ "cpufeatures",
749
+ "digest",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "shlex"
754
+ version = "1.3.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
757
+
758
+ [[package]]
759
+ name = "shlex"
760
+ version = "2.0.1"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
763
+
764
+ [[package]]
765
+ name = "smallvec"
766
+ version = "1.15.2"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
769
+
770
+ [[package]]
771
+ name = "stable_deref_trait"
772
+ version = "1.2.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
775
+
776
+ [[package]]
777
+ name = "strum_macros"
778
+ version = "0.26.4"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
781
+ dependencies = [
782
+ "heck",
783
+ "proc-macro2",
784
+ "quote",
785
+ "rustversion",
786
+ "syn 2.0.119",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "syn"
791
+ version = "1.0.109"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
794
+ dependencies = [
795
+ "proc-macro2",
796
+ "quote",
797
+ "unicode-ident",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "syn"
802
+ version = "2.0.119"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
805
+ dependencies = [
806
+ "proc-macro2",
807
+ "quote",
808
+ "unicode-ident",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "syn"
813
+ version = "3.0.3"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
816
+ dependencies = [
817
+ "proc-macro2",
818
+ "quote",
819
+ "unicode-ident",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "synstructure"
824
+ version = "0.13.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
827
+ dependencies = [
828
+ "proc-macro2",
829
+ "quote",
830
+ "syn 2.0.119",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "target-lexicon"
835
+ version = "0.12.16"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
838
+
839
+ [[package]]
840
+ name = "thiserror"
841
+ version = "1.0.69"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
844
+ dependencies = [
845
+ "thiserror-impl 1.0.69",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "thiserror"
850
+ version = "2.0.20"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
853
+ dependencies = [
854
+ "thiserror-impl 2.0.20",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "thiserror-impl"
859
+ version = "1.0.69"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
862
+ dependencies = [
863
+ "proc-macro2",
864
+ "quote",
865
+ "syn 2.0.119",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "thiserror-impl"
870
+ version = "2.0.20"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
873
+ dependencies = [
874
+ "proc-macro2",
875
+ "quote",
876
+ "syn 3.0.3",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "tinystr"
881
+ version = "0.8.4"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
884
+ dependencies = [
885
+ "displaydoc",
886
+ "zerovec",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "txnova-core"
891
+ version = "0.1.0"
892
+ dependencies = [
893
+ "pyo3",
894
+ "rust-htslib",
895
+ "serde",
896
+ "serde_json",
897
+ "sha2",
898
+ "thiserror 2.0.20",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "typenum"
903
+ version = "1.20.1"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
906
+
907
+ [[package]]
908
+ name = "unicode-ident"
909
+ version = "1.0.24"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
912
+
913
+ [[package]]
914
+ name = "unindent"
915
+ version = "0.2.4"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
918
+
919
+ [[package]]
920
+ name = "url"
921
+ version = "2.5.8"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
924
+ dependencies = [
925
+ "form_urlencoded",
926
+ "idna",
927
+ "percent-encoding",
928
+ "serde",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "utf8_iter"
933
+ version = "1.0.4"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
936
+
937
+ [[package]]
938
+ name = "vcpkg"
939
+ version = "0.2.15"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
942
+
943
+ [[package]]
944
+ name = "version_check"
945
+ version = "0.9.5"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
948
+
949
+ [[package]]
950
+ name = "windows-link"
951
+ version = "0.2.1"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
954
+
955
+ [[package]]
956
+ name = "writeable"
957
+ version = "0.6.4"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
960
+
961
+ [[package]]
962
+ name = "yoke"
963
+ version = "0.8.3"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
966
+ dependencies = [
967
+ "stable_deref_trait",
968
+ "yoke-derive",
969
+ "zerofrom",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "yoke-derive"
974
+ version = "0.8.2"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
977
+ dependencies = [
978
+ "proc-macro2",
979
+ "quote",
980
+ "syn 2.0.119",
981
+ "synstructure",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "zerofrom"
986
+ version = "0.1.8"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
989
+ dependencies = [
990
+ "zerofrom-derive",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "zerofrom-derive"
995
+ version = "0.1.7"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
998
+ dependencies = [
999
+ "proc-macro2",
1000
+ "quote",
1001
+ "syn 2.0.119",
1002
+ "synstructure",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "zerotrie"
1007
+ version = "0.2.5"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
1010
+ dependencies = [
1011
+ "displaydoc",
1012
+ "yoke",
1013
+ "zerofrom",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "zerovec"
1018
+ version = "0.11.7"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
1021
+ dependencies = [
1022
+ "yoke",
1023
+ "zerofrom",
1024
+ "zerovec-derive",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "zerovec-derive"
1029
+ version = "0.11.4"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
1032
+ dependencies = [
1033
+ "proc-macro2",
1034
+ "quote",
1035
+ "syn 3.0.3",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "zmij"
1040
+ version = "1.0.23"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"