pav3 3.0.0.dev3__tar.gz → 3.0.0.dev4__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 (81) hide show
  1. {pav3-3.0.0.dev3/src/pav3.egg-info → pav3-3.0.0.dev4}/PKG-INFO +2 -2
  2. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/README.md +1 -1
  3. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/pyproject.toml +3 -5
  4. pav3-3.0.0.dev4/src/pav3/__init__.py +60 -0
  5. pav3-3.0.0.dev4/src/pav3/__main__.py +6 -0
  6. pav3-3.0.0.dev4/src/pav3/align/__init__.py +17 -0
  7. pav3-3.0.0.dev4/src/pav3/align/features.py +565 -0
  8. pav3-3.0.0.dev4/src/pav3/align/lcmodel/__init__.py +30 -0
  9. pav3-3.0.0.dev4/src/pav3/align/lcmodel/_lcmodel.py +276 -0
  10. pav3-3.0.0.dev4/src/pav3/align/lcmodel/_lcmodel_logistic.py +105 -0
  11. pav3-3.0.0.dev4/src/pav3/align/lcmodel/_lcmodel_null.py +55 -0
  12. pav3-3.0.0.dev4/src/pav3/align/lcmodel/_util.py +233 -0
  13. pav3-3.0.0.dev4/src/pav3/align/lift.py +462 -0
  14. pav3-3.0.0.dev4/src/pav3/align/op.py +359 -0
  15. pav3-3.0.0.dev4/src/pav3/align/records.py +336 -0
  16. pav3-3.0.0.dev4/src/pav3/align/score.py +471 -0
  17. pav3-3.0.0.dev4/src/pav3/align/tables.py +812 -0
  18. pav3-3.0.0.dev4/src/pav3/align/trim.py +1122 -0
  19. pav3-3.0.0.dev4/src/pav3/call/__init__.py +18 -0
  20. pav3-3.0.0.dev4/src/pav3/call/expr.py +88 -0
  21. pav3-3.0.0.dev4/src/pav3/call/integrate.py +503 -0
  22. pav3-3.0.0.dev4/src/pav3/call/intra.py +539 -0
  23. pav3-3.0.0.dev4/src/pav3/call/util.py +49 -0
  24. pav3-3.0.0.dev4/src/pav3/cli/__init__.py +16 -0
  25. pav3-3.0.0.dev4/src/pav3/cli/_cli.py +84 -0
  26. pav3-3.0.0.dev4/src/pav3/cli/_common_opt.py +38 -0
  27. pav3-3.0.0.dev4/src/pav3/cli/_subcommand_call.py +180 -0
  28. pav3-3.0.0.dev4/src/pav3/cli/_subcommand_license.py +53 -0
  29. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/workflow/rules/call.smk +4 -4
  30. pav3-3.0.0.dev4/src/pav3/dev/__init__.py +17 -0
  31. pav3-3.0.0.dev4/src/pav3/dev/imports.py +334 -0
  32. pav3-3.0.0.dev4/src/pav3/dev/sm.py +92 -0
  33. pav3-3.0.0.dev4/src/pav3/dev/tables.py +37 -0
  34. pav3-3.0.0.dev4/src/pav3/lgsv/__init__.py +21 -0
  35. pav3-3.0.0.dev4/src/pav3/lgsv/call.py +332 -0
  36. pav3-3.0.0.dev4/src/pav3/lgsv/chain.py +265 -0
  37. pav3-3.0.0.dev4/src/pav3/lgsv/interval.py +486 -0
  38. pav3-3.0.0.dev4/src/pav3/lgsv/io.py +273 -0
  39. pav3-3.0.0.dev4/src/pav3/lgsv/region_kde.py +208 -0
  40. pav3-3.0.0.dev4/src/pav3/lgsv/resources.py +152 -0
  41. pav3-3.0.0.dev4/src/pav3/lgsv/struct.py +473 -0
  42. pav3-3.0.0.dev4/src/pav3/lgsv/variant.py +983 -0
  43. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/params.py +1 -1
  44. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4/src/pav3.egg-info}/PKG-INFO +2 -2
  45. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3.egg-info/SOURCES.txt +39 -2
  46. pav3-3.0.0.dev4/src/pav3.egg-info/entry_points.txt +2 -0
  47. pav3-3.0.0.dev3/src/pav3/__init__.py +0 -30
  48. pav3-3.0.0.dev3/src/pav3.egg-info/entry_points.txt +0 -2
  49. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/LICENSE +0 -0
  50. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/setup.cfg +0 -0
  51. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/anno.py +0 -0
  52. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/const.py +0 -0
  53. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/default/model.json +0 -0
  54. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/human_95_80/model.json +0 -0
  55. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/human_95_80/model_info.tar.gz +0 -0
  56. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/human_95_80/weights.npz +0 -0
  57. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/human_98_80/model.json +0 -0
  58. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/human_98_80/model_info.tar.gz +0 -0
  59. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/human_98_80/weights.npz +0 -0
  60. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/prim_90_50/model.json +0 -0
  61. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/prim_90_50/model_info.tar.gz +0 -0
  62. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/prim_90_50/weights.npz +0 -0
  63. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/primdiv_85_50/model.json +0 -0
  64. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/primdiv_85_50/model_info.tar.gz +0 -0
  65. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/lcmodel/primdiv_85_50/weights.npz +0 -0
  66. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/workflow/Snakefile +0 -0
  67. {pav3-3.0.0.dev3/src/pav3/data/workflow/profiles/mm2 → pav3-3.0.0.dev4/src/pav3/data/workflow/profiles/pav_default}/config.yaml +0 -0
  68. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/workflow/rules/align.smk +0 -0
  69. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/workflow/rules/data.smk +0 -0
  70. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/data/workflow/rules/pipeline.smk +0 -0
  71. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/inv.py +0 -0
  72. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/io.py +0 -0
  73. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/kde.py +0 -0
  74. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/pipeline.py +0 -0
  75. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/region.py +0 -0
  76. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/schema.py +0 -0
  77. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/seq.py +0 -0
  78. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3/util.py +0 -0
  79. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3.egg-info/dependency_links.txt +0 -0
  80. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3.egg-info/requires.txt +0 -0
  81. {pav3-3.0.0.dev3 → pav3-3.0.0.dev4}/src/pav3.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pav3
3
- Version: 3.0.0.dev3
3
+ Version: 3.0.0.dev4
4
4
  Summary: Assembly-based variant discovery
5
5
  License-Expression: MIT
6
6
  Requires-Python: >=3.12
@@ -38,7 +38,7 @@ pip install pav3
38
38
  To run PAV, use the `pav3` command after setting up configuration files.
39
39
 
40
40
  ```
41
- pav3
41
+ python -m pav3
42
42
  ```
43
43
 
44
44
 
@@ -16,7 +16,7 @@ pip install pav3
16
16
  To run PAV, use the `pav3` command after setting up configuration files.
17
17
 
18
18
  ```
19
- pav3
19
+ python -m pav3
20
20
  ```
21
21
 
22
22
 
@@ -26,11 +26,11 @@ dependencies = [
26
26
  ]
27
27
 
28
28
  [project.scripts]
29
- pav3 = "pav3.cli.cli:main"
29
+ pav3 = "pav3.cli:main"
30
30
 
31
31
  [pav.urls]
32
32
  Homepage = "https://github.com/BeckLaboratory/pav"
33
- #Documentation = "https://pav3.readthedocs.io"
33
+ Documentation = "https://pav3.readthedocs.io"
34
34
  Repository = "https://github.com/BeckLaboratory/pav"
35
35
  Issues = "https://github.com/BeckLaboratory/pav/issues"
36
36
  Changelog = "https://github.com/BeckLaboratory/pav/blob/master/CHANGELOG.md"
@@ -51,7 +51,6 @@ classifiers = [
51
51
  "Operating System :: OS Independent",
52
52
  "Programming Language :: Python :: 3",
53
53
  "Programming Language :: Python :: 3.12",
54
- "Private :: Do Not Upload", # Temporary until published
55
54
  ]
56
55
 
57
56
  authors = [
@@ -96,9 +95,8 @@ build-backend = "setuptools.build_meta"
96
95
  include-package-data = true
97
96
 
98
97
  [tool.setuptools.packages.find]
99
- namespaces = true
100
98
  where = ["src"]
101
- include = ["pav3", "data", "workflow"]
99
+ include = ["pav3"]
102
100
  exclude = ["*__pycache__"]
103
101
 
104
102
  [tool.setuptools.package-data]
@@ -0,0 +1,60 @@
1
+ """PAV Python library routines."""
2
+
3
+ __version__ = '3.0.0.dev4'
4
+
5
+ __all__ = [
6
+ 'align',
7
+ 'anno',
8
+ 'call',
9
+ 'cli',
10
+ 'lgsv',
11
+ 'anno',
12
+ 'const',
13
+ 'inv',
14
+ 'io',
15
+ 'kde',
16
+ 'params',
17
+ 'pipeline',
18
+ 'region',
19
+ 'schema',
20
+ 'seq',
21
+ 'util',
22
+ ]
23
+
24
+ __license__ = 'MIT License'
25
+ __author__ = 'Peter Audano'
26
+ __copyright__ = 'Copyright (c) 2024 Peter Audano'
27
+ __credits__ = ['Peter Audano']
28
+ __maintainer__ = 'Peter Audano'
29
+ __email__ = 'peter.audano@jax.org'
30
+ __status__ = 'Development'
31
+
32
+ __license_spdx__ = 'MIT'
33
+
34
+ __license_text__ = """MIT License
35
+
36
+ Copyright (c) 2024 Peter Audano
37
+
38
+ Permission is hereby granted, free of charge, to any person obtaining a copy
39
+ of this software and associated documentation files (the "Software"), to deal
40
+ in the Software without restriction, including without limitation the rights
41
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
42
+ copies of the Software, and to permit persons to whom the Software is
43
+ furnished to do so, subject to the following conditions:
44
+
45
+ The above copyright notice and this permission notice shall be included in all
46
+ copies or substantial portions of the Software.
47
+
48
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
51
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
53
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
54
+ SOFTWARE.
55
+ """
56
+
57
+ import importlib
58
+
59
+ for name in __all__:
60
+ globals()[name] = importlib.import_module(f'.{name}', package=__name__)
@@ -0,0 +1,6 @@
1
+ """Support for direct pav3 execution."""
2
+
3
+ from .cli import main
4
+
5
+ if __name__ == '__main__':
6
+ main()
@@ -0,0 +1,17 @@
1
+ """Alignment handling routines."""
2
+
3
+ import importlib
4
+
5
+ __all__ = [
6
+ 'features',
7
+ 'lcmodel',
8
+ 'lift',
9
+ 'op',
10
+ 'records',
11
+ 'score',
12
+ 'tables',
13
+ 'trim',
14
+ ]
15
+
16
+ for name in __all__:
17
+ globals()[name] = importlib.import_module(f'.{name}', package=__name__)