dayhoff-tools 1.1.12__tar.gz → 1.1.13__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.12 → dayhoff_tools-1.1.13}/PKG-INFO +1 -1
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/processors.py +11 -22
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/pyproject.toml +1 -1
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/README.md +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/__init__.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/chemistry/standardizer.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/chemistry/utils.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/cli/__init__.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/cli/cloud_commands.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/cli/main.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/cli/swarm_commands.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/cli/utility_commands.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/base.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/deploy_aws.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/deploy_gcp.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/deploy_utils.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/job_runner.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/deployment/swarm.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/embedders.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/fasta.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/file_ops.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/h5.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/intake/gcp.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/intake/gtdb.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/intake/kegg.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/intake/mmseqs.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/intake/structure.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/intake/uniprot.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/logs.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/sqlite.py +0 -0
- {dayhoff_tools-1.1.12 → dayhoff_tools-1.1.13}/dayhoff_tools/warehouse.py +0 -0
@@ -406,32 +406,21 @@ class MMSeqsProfileProcessor(Processor):
|
|
406
406
|
run_base_dir,
|
407
407
|
)
|
408
408
|
|
409
|
-
# 9.
|
409
|
+
# 9. Extract hit sequences directly to FASTA using result2flat
|
410
410
|
self._run_mmseqs_command(
|
411
411
|
[
|
412
412
|
"mmseqs",
|
413
|
-
"
|
414
|
-
str(
|
415
|
-
|
416
|
-
), #
|
417
|
-
str(
|
418
|
-
|
419
|
-
"
|
420
|
-
"
|
421
|
-
|
422
|
-
"Create hits subDB from target_db",
|
423
|
-
run_base_dir,
|
424
|
-
)
|
425
|
-
|
426
|
-
# 10. Convert hit sequences to FASTA -> to intermediate file
|
427
|
-
self._run_mmseqs_command(
|
428
|
-
[
|
429
|
-
"mmseqs",
|
430
|
-
"convert2fasta",
|
431
|
-
str(hits_db),
|
432
|
-
str(intermediate_hits_fasta_file),
|
413
|
+
"result2flat",
|
414
|
+
str(profile_db), # queryDB used in search
|
415
|
+
str(target_db), # targetDB
|
416
|
+
str(result_db), # resultDB
|
417
|
+
str(intermediate_hits_fasta_file), # output FASTA
|
418
|
+
"--use-fasta-header",
|
419
|
+
"1",
|
420
|
+
"--threads",
|
421
|
+
self.num_threads,
|
433
422
|
],
|
434
|
-
"
|
423
|
+
"Extract hit sequences to FASTA via result2flat",
|
435
424
|
run_base_dir,
|
436
425
|
)
|
437
426
|
|
@@ -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.13"
|
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"}
|
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
|