dayhoff-tools 1.1.6__tar.gz → 1.1.8__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.
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/PKG-INFO +12 -16
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/processors.py +1 -1
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/pyproject.toml +7 -11
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/README.md +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/__init__.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/chemistry/standardizer.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/chemistry/utils.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/cli/__init__.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/cli/cloud_commands.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/cli/main.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/cli/swarm_commands.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/cli/utility_commands.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/base.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/deploy_aws.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/deploy_gcp.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/deploy_utils.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/job_runner.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/deployment/swarm.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/embedders.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/fasta.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/file_ops.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/h5.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/intake/gcp.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/intake/gtdb.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/intake/kegg.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/intake/mmseqs.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/intake/structure.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/intake/uniprot.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/logs.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/sqlite.py +0 -0
- {dayhoff_tools-1.1.6 → dayhoff_tools-1.1.8}/dayhoff_tools/warehouse.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: dayhoff-tools
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.8
|
4
4
|
Summary: Common tools for all the repos at Dayhoff Labs
|
5
5
|
Author: Daniel Martin-Alarcon
|
6
6
|
Author-email: dma@dayhofflabs.com
|
@@ -10,27 +10,23 @@ Classifier: Programming Language :: Python :: 3.10
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
13
|
-
Provides-Extra:
|
14
|
-
Requires-Dist: biopython (>=1.84)
|
15
|
-
Requires-Dist: boto3 (>=1.36.8)
|
16
|
-
Requires-Dist: docker (>=7.1.0)
|
17
|
-
Requires-Dist: fair-esm (>=2.0.0)
|
13
|
+
Provides-Extra: full
|
14
|
+
Requires-Dist: biopython (>=1.84) ; extra == "full"
|
15
|
+
Requires-Dist: boto3 (>=1.36.8) ; extra == "full"
|
16
|
+
Requires-Dist: docker (>=7.1.0) ; extra == "full"
|
17
|
+
Requires-Dist: fair-esm (>=2.0.0) ; extra == "full"
|
18
18
|
Requires-Dist: firebase-admin (>=6.5.0)
|
19
|
-
Requires-Dist:
|
20
|
-
Requires-Dist:
|
21
|
-
Requires-Dist: pandas (>=2.2.3)
|
19
|
+
Requires-Dist: h5py (>=3.11.0) ; extra == "full"
|
20
|
+
Requires-Dist: pandas (>=2.2.3) ; extra == "full"
|
22
21
|
Requires-Dist: pyyaml (>=6.0)
|
23
|
-
Requires-Dist: pyyaml (>=6.0) ; extra == "lite"
|
24
22
|
Requires-Dist: questionary (>=2.0.1)
|
25
|
-
Requires-Dist: rdkit-pypi (>=2022.9.5)
|
23
|
+
Requires-Dist: rdkit-pypi (>=2022.9.5) ; extra == "full"
|
26
24
|
Requires-Dist: requests (>=2.31.0)
|
27
|
-
Requires-Dist:
|
28
|
-
Requires-Dist:
|
29
|
-
Requires-Dist: sqlalchemy (>=2.0.40,<3.0.0)
|
25
|
+
Requires-Dist: sentencepiece (>=0.2.0) ; extra == "full"
|
26
|
+
Requires-Dist: sqlalchemy (>=2.0.40,<3.0.0) ; extra == "full"
|
30
27
|
Requires-Dist: toml (>=0.10)
|
31
|
-
Requires-Dist: transformers (==4.36.2)
|
28
|
+
Requires-Dist: transformers (==4.36.2) ; extra == "full"
|
32
29
|
Requires-Dist: typer (>=0.9.0)
|
33
|
-
Requires-Dist: typer (>=0.9.0) ; extra == "lite"
|
34
30
|
Description-Content-Type: text/markdown
|
35
31
|
|
36
32
|
# dayhoff-tools
|
@@ -160,7 +160,7 @@ class MMSeqsProfileProcessor(Processor):
|
|
160
160
|
self.num_threads = str(num_threads) # MMseqs2 expects string for threads
|
161
161
|
|
162
162
|
default_mmseqs_args = {
|
163
|
-
"memory_limit_gb": "
|
163
|
+
"memory_limit_gb": "25",
|
164
164
|
"evalue": "10",
|
165
165
|
"sensitivity": "7.5",
|
166
166
|
"max_seqs_search": "300",
|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
|
|
5
5
|
|
6
6
|
[project]
|
7
7
|
name = "dayhoff-tools"
|
8
|
-
version = "1.1.
|
8
|
+
version = "1.1.8"
|
9
9
|
description = "Common tools for all the repos at Dayhoff Labs"
|
10
10
|
authors = [
|
11
11
|
{name = "Daniel Martin-Alarcon", email = "dma@dayhofflabs.com"}
|
@@ -18,27 +18,23 @@ dependencies = [
|
|
18
18
|
"requests>=2.31.0",
|
19
19
|
"typer>=0.9.0",
|
20
20
|
"toml>=0.10",
|
21
|
+
"questionary>=2.0.1",
|
22
|
+
]
|
23
|
+
requires-python = ">=3.10,<4.0"
|
24
|
+
|
25
|
+
[project.optional-dependencies]
|
26
|
+
full = [
|
21
27
|
"biopython>=1.84",
|
22
28
|
"boto3>=1.36.8",
|
23
29
|
"docker>=7.1.0",
|
24
30
|
"fair-esm>=2.0.0",
|
25
31
|
"h5py>=3.11.0",
|
26
32
|
"pandas>=2.2.3",
|
27
|
-
"questionary>=2.0.1",
|
28
33
|
"rdkit-pypi>=2022.9.5",
|
29
34
|
"sqlalchemy (>=2.0.40,<3.0.0)",
|
30
35
|
"transformers==4.36.2",
|
31
36
|
"sentencepiece>=0.2.0",
|
32
37
|
]
|
33
|
-
requires-python = ">=3.10,<4.0"
|
34
|
-
|
35
|
-
[project.optional-dependencies]
|
36
|
-
lite = [
|
37
|
-
"firebase-admin>=6.5.0",
|
38
|
-
"pyyaml>=6.0",
|
39
|
-
"requests>=2.31.0",
|
40
|
-
"typer>=0.9.0",
|
41
|
-
]
|
42
38
|
|
43
39
|
[[tool.uv.index]]
|
44
40
|
name = "torch-cuda"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|