uht-tooling 0.1.6__tar.gz → 0.1.7__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 (22) hide show
  1. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/PKG-INFO +2 -1
  2. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/pyproject.toml +2 -1
  3. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/cli.py +4 -0
  4. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling.egg-info/PKG-INFO +2 -1
  5. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling.egg-info/requires.txt +1 -0
  6. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/README.md +0 -0
  7. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/setup.cfg +0 -0
  8. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/__init__.py +0 -0
  9. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/models/__init__.py +0 -0
  10. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/__init__.py +0 -0
  11. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/design_gibson.py +0 -0
  12. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/design_slim.py +0 -0
  13. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/gui.py +0 -0
  14. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/mut_rate.py +0 -0
  15. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/mutation_caller.py +0 -0
  16. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/nextera_designer.py +0 -0
  17. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/profile_inserts.py +0 -0
  18. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling/workflows/umi_hunter.py +0 -0
  19. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling.egg-info/SOURCES.txt +0 -0
  20. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling.egg-info/dependency_links.txt +0 -0
  21. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling.egg-info/entry_points.txt +0 -0
  22. {uht_tooling-0.1.6 → uht_tooling-0.1.7}/src/uht_tooling.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uht-tooling
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Tooling for ultra-high throughput screening workflows.
5
5
  Author: Matt115A
6
6
  License: MIT
@@ -19,6 +19,7 @@ Requires-Dist: tabulate==0.9.0
19
19
  Requires-Dist: tqdm==4.67.1
20
20
  Requires-Dist: typer==0.20.0
21
21
  Requires-Dist: mappy==2.30
22
+ Requires-Dist: gradio==5.49.1
22
23
  Provides-Extra: gui
23
24
  Requires-Dist: gradio==5.49.1; extra == "gui"
24
25
  Provides-Extra: dev
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "uht-tooling"
7
- version = "0.1.6"
7
+ version = "0.1.7"
8
8
  description = "Tooling for ultra-high throughput screening workflows."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -24,6 +24,7 @@ dependencies = [
24
24
  "tqdm==4.67.1",
25
25
  "typer==0.20.0",
26
26
  "mappy==2.30",
27
+ "gradio==5.49.1",
27
28
  ]
28
29
 
29
30
  [project.optional-dependencies]
@@ -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.6
3
+ Version: 0.1.7
4
4
  Summary: Tooling for ultra-high throughput screening workflows.
5
5
  Author: Matt115A
6
6
  License: MIT
@@ -19,6 +19,7 @@ Requires-Dist: tabulate==0.9.0
19
19
  Requires-Dist: tqdm==4.67.1
20
20
  Requires-Dist: typer==0.20.0
21
21
  Requires-Dist: mappy==2.30
22
+ Requires-Dist: gradio==5.49.1
22
23
  Provides-Extra: gui
23
24
  Requires-Dist: gradio==5.49.1; extra == "gui"
24
25
  Provides-Extra: dev
@@ -11,6 +11,7 @@ tabulate==0.9.0
11
11
  tqdm==4.67.1
12
12
  typer==0.20.0
13
13
  mappy==2.30
14
+ gradio==5.49.1
14
15
 
15
16
  [dev]
16
17
  pytest==9.0.0
File without changes
File without changes