uht-tooling 0.1.5__py3-none-any.whl → 0.1.7__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.
- uht_tooling/cli.py +4 -0
- {uht_tooling-0.1.5.dist-info → uht_tooling-0.1.7.dist-info}/METADATA +7 -3
- {uht_tooling-0.1.5.dist-info → uht_tooling-0.1.7.dist-info}/RECORD +6 -6
- {uht_tooling-0.1.5.dist-info → uht_tooling-0.1.7.dist-info}/WHEEL +0 -0
- {uht_tooling-0.1.5.dist-info → uht_tooling-0.1.7.dist-info}/entry_points.txt +0 -0
- {uht_tooling-0.1.5.dist-info → uht_tooling-0.1.7.dist-info}/top_level.txt +0 -0
uht_tooling/cli.py
CHANGED
|
@@ -18,6 +18,10 @@ from uht_tooling.workflows.umi_hunter import (
|
|
|
18
18
|
expand_fastq_inputs as expand_fastq_inputs_umi,
|
|
19
19
|
run_umi_hunter,
|
|
20
20
|
)
|
|
21
|
+
from uht_tooling.workflows.mut_rate import (
|
|
22
|
+
expand_fastq_inputs as expand_fastq_inputs_ep,
|
|
23
|
+
run_ep_library_profile,
|
|
24
|
+
)
|
|
21
25
|
from uht_tooling.workflows.gui import launch_gui
|
|
22
26
|
|
|
23
27
|
app = typer.Typer(help="Command-line interface for the uht-tooling package.")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uht-tooling
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: Tooling for ultra-high throughput screening workflows.
|
|
5
5
|
Author: Matt115A
|
|
6
6
|
License: MIT
|
|
@@ -18,6 +18,8 @@ Requires-Dist: seaborn==0.13.2
|
|
|
18
18
|
Requires-Dist: tabulate==0.9.0
|
|
19
19
|
Requires-Dist: tqdm==4.67.1
|
|
20
20
|
Requires-Dist: typer==0.20.0
|
|
21
|
+
Requires-Dist: mappy==2.30
|
|
22
|
+
Requires-Dist: gradio==5.49.1
|
|
21
23
|
Provides-Extra: gui
|
|
22
24
|
Requires-Dist: gradio==5.49.1; extra == "gui"
|
|
23
25
|
Provides-Extra: dev
|
|
@@ -35,16 +37,18 @@ Automation helpers for ultra-high-throughput molecular biology workflows. The pa
|
|
|
35
37
|
|
|
36
38
|
### Quick install (recommended, easiest file maintainance)
|
|
37
39
|
```bash
|
|
38
|
-
pip install "uht-tooling[gui]
|
|
40
|
+
pip install "uht-tooling[gui]"
|
|
39
41
|
|
|
40
42
|
```
|
|
41
43
|
|
|
42
|
-
This installs the core workflows plus the optional GUI
|
|
44
|
+
This installs the core workflows plus the optional GUI dependency (Gradio). Omit the `[gui]` extras if you only need the CLI:
|
|
43
45
|
|
|
44
46
|
```bash
|
|
45
47
|
pip install uht-tooling
|
|
46
48
|
```
|
|
47
49
|
|
|
50
|
+
You will need a functioning version of mafft - you should install this separately and it should be accessible from your environment.
|
|
51
|
+
|
|
48
52
|
### Development install
|
|
49
53
|
```bash
|
|
50
54
|
git clone https://github.com/Matt115A/uht-tooling-packaged.git
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
uht_tooling/__init__.py,sha256=hf0tJaa4_9y9aYb8OB1FtJh1FOuX08dQ6_MCveWFNAc,242
|
|
2
|
-
uht_tooling/cli.py,sha256=
|
|
2
|
+
uht_tooling/cli.py,sha256=XnpJbMiuB3g5GL-d2bLf4TsDsd9eWDG-tjaAaMnAPTk,13008
|
|
3
3
|
uht_tooling/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
uht_tooling/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
uht_tooling/workflows/design_gibson.py,sha256=SQEThq6dxPMPCsUrwqMUaG5I-diE9jUXPRii9Y7O_7U,13617
|
|
@@ -10,8 +10,8 @@ uht_tooling/workflows/mutation_caller.py,sha256=BczuNATOSUcmlw-x6qTzEQfW8MBbvGcl
|
|
|
10
10
|
uht_tooling/workflows/nextera_designer.py,sha256=8MZ_DyQ0JwPojXH5mZ6bAGAkqki_0qQGac45T_Ll8FQ,6170
|
|
11
11
|
uht_tooling/workflows/profile_inserts.py,sha256=C-SZ10YefiV_4QZbo1oEkI4qYipwaYqPP5jF-MC5O58,16947
|
|
12
12
|
uht_tooling/workflows/umi_hunter.py,sha256=baycWycqVzUfMp5u2WZdHRl0sNuykTjy-iqtj5ahucU,15075
|
|
13
|
-
uht_tooling-0.1.
|
|
14
|
-
uht_tooling-0.1.
|
|
15
|
-
uht_tooling-0.1.
|
|
16
|
-
uht_tooling-0.1.
|
|
17
|
-
uht_tooling-0.1.
|
|
13
|
+
uht_tooling-0.1.7.dist-info/METADATA,sha256=YuHkyuvRdznGgVH111anZaqsOBt9k-szz1vJGF-eWy0,12925
|
|
14
|
+
uht_tooling-0.1.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
15
|
+
uht_tooling-0.1.7.dist-info/entry_points.txt,sha256=t3_bMkEnlnV4vd6nrjNQxHDsHzHHoZenhmxuIYLcRBY,53
|
|
16
|
+
uht_tooling-0.1.7.dist-info/top_level.txt,sha256=iTCCiSn0OjrTx1VOdxXhUlPi1TR9LxaJEZJoMyRcv9c,12
|
|
17
|
+
uht_tooling-0.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|