biolect 0.0.0.dev1__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.
- biolect/__init__.py +27 -0
- biolect/core/__init__.py +0 -0
- biolect/core/definitions/__init__.py +0 -0
- biolect/core/dtypes.py +62 -0
- biolect/core/errors/__init__.py +26 -0
- biolect/core/errors/etypes.py +55 -0
- biolect/core/errors/handlers.py +76 -0
- biolect/core/errors/monadic.py +0 -0
- biolect/core/errors/recovery.py +0 -0
- biolect/core/operations.py +0 -0
- biolect/core/pipeline.py +0 -0
- biolect/core/validation.py +0 -0
- biolect/formats/fasta.py +0 -0
- biolect/formats/fastq.py +0 -0
- biolect/formats/gff.py +0 -0
- biolect/formats/parsers/__init__.py +0 -0
- biolect/formats/parsers/safe_parsers.py +0 -0
- biolect/formats/parsers/validators.py +0 -0
- biolect/formats/phylip.py +0 -0
- biolect/formats/sambam.py +0 -0
- biolect/formats/vcf.py +0 -0
- biolect/integrations/__init__.py +0 -0
- biolect/integrations/blast.py +0 -0
- biolect/integrations/clustal.py +0 -0
- biolect/integrations/external.py +0 -0
- biolect/integrations/muscle.py +0 -0
- biolect/integrations/raxml.py +0 -0
- biolect/integrations/safe/__init__.py +0 -0
- biolect/integrations/safe/blast_safe.py +0 -0
- biolect/integrations/safe/tools_safe.py +0 -0
- biolect/operations/__init__.py +26 -0
- biolect/operations/alignment/__init__.py +0 -0
- biolect/operations/alignment/consensus.py +0 -0
- biolect/operations/alignment/multiple.py +0 -0
- biolect/operations/alignment/pairwise.py +0 -0
- biolect/operations/alignment/safe/__init__.py +0 -0
- biolect/operations/alignment/safe/monadic_ops.py +0 -0
- biolect/operations/analysis/__init__.py +0 -0
- biolect/operations/analysis/clustering.py +0 -0
- biolect/operations/analysis/quality.py +0 -0
- biolect/operations/analysis/safe/__init__.py +0 -0
- biolect/operations/analysis/safe/monadic_ops.py +0 -0
- biolect/operations/analysis/statistics.py +0 -0
- biolect/operations/analysis/visualization.py +0 -0
- biolect/operations/annotation/__init__.py +0 -0
- biolect/operations/annotation/comparative.py +0 -0
- biolect/operations/annotation/functional.py +0 -0
- biolect/operations/annotation/gene_calling.py +0 -0
- biolect/operations/annotation/safe/__init__.py +0 -0
- biolect/operations/annotation/safe/monadic_ops.py +0 -0
- biolect/operations/phylogenetics/__init__.py +0 -0
- biolect/operations/phylogenetics/distance.py +0 -0
- biolect/operations/phylogenetics/safe/__init__.py +0 -0
- biolect/operations/phylogenetics/safe/monadic_ops.py +0 -0
- biolect/operations/phylogenetics/trees.py +0 -0
- biolect/operations/phylogenetics/visualization.py +0 -0
- biolect/operations/sequencing/__init__.py +28 -0
- biolect/operations/sequencing/analysis.py +16 -0
- biolect/operations/sequencing/encoding.py +193 -0
- biolect/operations/sequencing/manipulation.py +0 -0
- biolect/operations/sequencing/safe/__init__.py +0 -0
- biolect/operations/sequencing/safe/monadic_ops.py +0 -0
- biolect/operations/sequencing/search.py +0 -0
- biolect/operations/sequencing/translation.py +0 -0
- biolect/utilities/__init__.py +0 -0
- biolect/utilities/caching.py +0 -0
- biolect/utilities/config.py +0 -0
- biolect/utilities/memory.py +0 -0
- biolect/utilities/parallel.py +0 -0
- biolect/utilities/progress.py +0 -0
- biolect/visualization/__init__.py +0 -0
- biolect/visualization/alignments.py +0 -0
- biolect/visualization/genomics.py +0 -0
- biolect/visualization/sequences.py +0 -0
- biolect/visualization/trees.py +0 -0
- biolect-0.0.0.dev1.dist-info/METADATA +40 -0
- biolect-0.0.0.dev1.dist-info/RECORD +79 -0
- biolect-0.0.0.dev1.dist-info/WHEEL +4 -0
- biolect-0.0.0.dev1.dist-info/licenses/LICENSE +661 -0
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: biolect
|
3
|
+
Version: 0.0.0.dev1
|
4
|
+
Summary: An embedded bioinformatics DSL framework.
|
5
|
+
Author-email: "K. LeBryce" <k.lebryce@pm.me>
|
6
|
+
License-File: LICENSE
|
7
|
+
Requires-Python: >=3.11
|
8
|
+
Requires-Dist: biopython>=1.85
|
9
|
+
Requires-Dist: matplotlib>=3.10.3
|
10
|
+
Requires-Dist: numpy>=2.2.6
|
11
|
+
Requires-Dist: pandas>=2.2.3
|
12
|
+
Requires-Dist: polars>=1.30.0
|
13
|
+
Requires-Dist: python-dotenv>=1.1.0
|
14
|
+
Requires-Dist: returns>=0.25.0
|
15
|
+
Requires-Dist: scipy>=1.15.3
|
16
|
+
Requires-Dist: seaborn>=0.13.2
|
17
|
+
Requires-Dist: sympy>=1.14.0
|
18
|
+
Description-Content-Type: text/markdown
|
19
|
+
|
20
|
+
# Biolect
|
21
|
+
|
22
|
+
`v0.0.0`, "_Adenine_"
|
23
|
+
|
24
|
+

|
25
|
+
|
26
|
+

|
27
|
+
|
28
|
+
A bioinformatics-oriented DSL framework.
|
29
|
+
|
30
|
+
---
|
31
|
+
|
32
|
+
> [!NOTE]
|
33
|
+
> This project is a work in progress. Because it is in such early stages of
|
34
|
+
> development, virtually every aspect of its API is subject to change. Use
|
35
|
+
> at your own risk.
|
36
|
+
|
37
|
+
|
38
|
+
## Overview
|
39
|
+
|
40
|
+
(Coming soon.)
|
@@ -0,0 +1,79 @@
|
|
1
|
+
biolect/__init__.py,sha256=Yx2GaqtcrCmS39GJgyEid1T-iHm3AahlXrU_D6YEd-w,1453
|
2
|
+
biolect/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
biolect/core/dtypes.py,sha256=10j5tC-dQlfAW0G2W37Hst71xr9HSN42fYGJyR30wK0,1602
|
4
|
+
biolect/core/operations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
biolect/core/pipeline.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
biolect/core/validation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
biolect/core/definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
biolect/core/errors/__init__.py,sha256=LCemZwTQx8V7zl8_RD8cEk50pZVXPjVkZVXErZV0K4s,1002
|
9
|
+
biolect/core/errors/etypes.py,sha256=tVs5fWC9tY_YFfjgIj8wsapRK0uMBcq7UEqu6A7PBwc,1673
|
10
|
+
biolect/core/errors/handlers.py,sha256=yaYmIZzI3-rz3boWThcI7St14ES5cyanLTfd0Q4eYp0,1957
|
11
|
+
biolect/core/errors/monadic.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
+
biolect/core/errors/recovery.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
biolect/formats/fasta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
+
biolect/formats/fastq.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
+
biolect/formats/gff.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
biolect/formats/phylip.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
biolect/formats/sambam.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
+
biolect/formats/vcf.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
+
biolect/formats/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
+
biolect/formats/parsers/safe_parsers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
+
biolect/formats/parsers/validators.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
biolect/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
+
biolect/integrations/blast.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
+
biolect/integrations/clustal.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
+
biolect/integrations/external.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
+
biolect/integrations/muscle.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
+
biolect/integrations/raxml.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
+
biolect/integrations/safe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
+
biolect/integrations/safe/blast_safe.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
+
biolect/integrations/safe/tools_safe.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
+
biolect/operations/__init__.py,sha256=scWh3tVkWm7m8uKKNr0hH9t7SOME6YNBCPfy5rFhQ1M,1180
|
32
|
+
biolect/operations/alignment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
+
biolect/operations/alignment/consensus.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
+
biolect/operations/alignment/multiple.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
+
biolect/operations/alignment/pairwise.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
+
biolect/operations/alignment/safe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
+
biolect/operations/alignment/safe/monadic_ops.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
|
+
biolect/operations/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
+
biolect/operations/analysis/clustering.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
+
biolect/operations/analysis/quality.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
+
biolect/operations/analysis/statistics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
+
biolect/operations/analysis/visualization.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
+
biolect/operations/analysis/safe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
|
+
biolect/operations/analysis/safe/monadic_ops.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
+
biolect/operations/annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
+
biolect/operations/annotation/comparative.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
+
biolect/operations/annotation/functional.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
+
biolect/operations/annotation/gene_calling.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
+
biolect/operations/annotation/safe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
+
biolect/operations/annotation/safe/monadic_ops.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
|
+
biolect/operations/phylogenetics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
+
biolect/operations/phylogenetics/distance.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
|
+
biolect/operations/phylogenetics/trees.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
+
biolect/operations/phylogenetics/visualization.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
+
biolect/operations/phylogenetics/safe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
+
biolect/operations/phylogenetics/safe/monadic_ops.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
|
+
biolect/operations/sequencing/__init__.py,sha256=d3BeoAzZKzAlOEeSCSAGiVQGMdyPCbqEZ7h4h9J0Uus,1646
|
58
|
+
biolect/operations/sequencing/analysis.py,sha256=w7fj40XGDJ2BXYgA_IM9ct4Cy9xoR0d4P7A2QZqaqp4,434
|
59
|
+
biolect/operations/sequencing/encoding.py,sha256=KO5GMVMeJShYI_FlrP8GD96mJA4ZxoXYjSun7wGX6RE,6461
|
60
|
+
biolect/operations/sequencing/manipulation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
61
|
+
biolect/operations/sequencing/search.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
|
+
biolect/operations/sequencing/translation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
+
biolect/operations/sequencing/safe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
+
biolect/operations/sequencing/safe/monadic_ops.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
|
+
biolect/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
+
biolect/utilities/caching.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
|
+
biolect/utilities/config.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
|
+
biolect/utilities/memory.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
69
|
+
biolect/utilities/parallel.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
|
+
biolect/utilities/progress.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
|
+
biolect/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
|
+
biolect/visualization/alignments.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
|
+
biolect/visualization/genomics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
|
+
biolect/visualization/sequences.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
|
+
biolect/visualization/trees.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
76
|
+
biolect-0.0.0.dev1.dist-info/METADATA,sha256=43RnZJxe3tEC0VocEfCxGFjod2uGSNDn7VbZkIYMJ5U,1054
|
77
|
+
biolect-0.0.0.dev1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
78
|
+
biolect-0.0.0.dev1.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
79
|
+
biolect-0.0.0.dev1.dist-info/RECORD,,
|