lattice-sub 1.1.0__tar.gz → 1.1.2__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.
- {lattice_sub-1.1.0/src/lattice_sub.egg-info → lattice_sub-1.1.2}/PKG-INFO +4 -4
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/README.md +3 -3
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/pyproject.toml +1 -1
- {lattice_sub-1.1.0 → lattice_sub-1.1.2/src/lattice_sub.egg-info}/PKG-INFO +4 -4
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/__init__.py +1 -1
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/LICENSE +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/MANIFEST.in +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/docs/images/example_comparison.png +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/docs/images/threshold_analysis.png +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/examples/config.yaml +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/examples/converted_params.yaml +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/setup.cfg +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_sub.egg-info/SOURCES.txt +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_sub.egg-info/dependency_links.txt +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_sub.egg-info/entry_points.txt +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_sub.egg-info/requires.txt +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_sub.egg-info/top_level.txt +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/batch.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/cli.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/config.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/core.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/io.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/masks.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/processing.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/threshold_optimizer.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/ui.py +0 -0
- {lattice_sub-1.1.0 → lattice_sub-1.1.2}/src/lattice_subtraction/visualization.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lattice-sub
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Lattice subtraction for cryo-EM micrographs - removes periodic crystal signals to reveal non-periodic features
|
|
5
5
|
Author-email: George Stephenson <george.stephenson@colorado.edu>, Vignesh Kasinath <vignesh.kasinath@colorado.edu>
|
|
6
6
|
License: MIT
|
|
@@ -56,7 +56,7 @@ Dynamic: license-file
|
|
|
56
56
|
|
|
57
57
|
**Remove periodic lattice patterns from cryo-EM micrographs to reveal non-periodic features.**
|
|
58
58
|
|
|
59
|
-

|
|
59
|
+

|
|
60
60
|
|
|
61
61
|
---
|
|
62
62
|
|
|
@@ -245,7 +245,7 @@ lattice-sub batch --help
|
|
|
245
245
|
|
|
246
246
|
**Original MATLAB algorithm**: Vignesh Kasinath
|
|
247
247
|
**Python package**: George Stephenson
|
|
248
|
-
Kasinath Lab
|
|
248
|
+
Kasinath Lab (Dept of Biochemistry) & BioFrontiers Institute, University of Colorado Boulder
|
|
249
249
|
|
|
250
250
|
---
|
|
251
251
|
|
|
@@ -277,7 +277,7 @@ Version 1.1.0 introduces two major optimizations that make the tool both **faste
|
|
|
277
277
|
|
|
278
278
|
**Result:** Each image gets its optimal threshold automatically.
|
|
279
279
|
|
|
280
|
-

|
|
280
|
+

|
|
281
281
|
|
|
282
282
|
#### 2. GPU-Accelerated Background Subtraction (Kornia)
|
|
283
283
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
**Remove periodic lattice patterns from cryo-EM micrographs to reveal non-periodic features.**
|
|
17
17
|
|
|
18
|
-

|
|
18
|
+

|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
@@ -204,7 +204,7 @@ lattice-sub batch --help
|
|
|
204
204
|
|
|
205
205
|
**Original MATLAB algorithm**: Vignesh Kasinath
|
|
206
206
|
**Python package**: George Stephenson
|
|
207
|
-
Kasinath Lab
|
|
207
|
+
Kasinath Lab (Dept of Biochemistry) & BioFrontiers Institute, University of Colorado Boulder
|
|
208
208
|
|
|
209
209
|
---
|
|
210
210
|
|
|
@@ -236,7 +236,7 @@ Version 1.1.0 introduces two major optimizations that make the tool both **faste
|
|
|
236
236
|
|
|
237
237
|
**Result:** Each image gets its optimal threshold automatically.
|
|
238
238
|
|
|
239
|
-

|
|
239
|
+

|
|
240
240
|
|
|
241
241
|
#### 2. GPU-Accelerated Background Subtraction (Kornia)
|
|
242
242
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lattice-sub"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.2"
|
|
8
8
|
description = "Lattice subtraction for cryo-EM micrographs - removes periodic crystal signals to reveal non-periodic features"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lattice-sub
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Lattice subtraction for cryo-EM micrographs - removes periodic crystal signals to reveal non-periodic features
|
|
5
5
|
Author-email: George Stephenson <george.stephenson@colorado.edu>, Vignesh Kasinath <vignesh.kasinath@colorado.edu>
|
|
6
6
|
License: MIT
|
|
@@ -56,7 +56,7 @@ Dynamic: license-file
|
|
|
56
56
|
|
|
57
57
|
**Remove periodic lattice patterns from cryo-EM micrographs to reveal non-periodic features.**
|
|
58
58
|
|
|
59
|
-

|
|
59
|
+

|
|
60
60
|
|
|
61
61
|
---
|
|
62
62
|
|
|
@@ -245,7 +245,7 @@ lattice-sub batch --help
|
|
|
245
245
|
|
|
246
246
|
**Original MATLAB algorithm**: Vignesh Kasinath
|
|
247
247
|
**Python package**: George Stephenson
|
|
248
|
-
Kasinath Lab
|
|
248
|
+
Kasinath Lab (Dept of Biochemistry) & BioFrontiers Institute, University of Colorado Boulder
|
|
249
249
|
|
|
250
250
|
---
|
|
251
251
|
|
|
@@ -277,7 +277,7 @@ Version 1.1.0 introduces two major optimizations that make the tool both **faste
|
|
|
277
277
|
|
|
278
278
|
**Result:** Each image gets its optimal threshold automatically.
|
|
279
279
|
|
|
280
|
-

|
|
280
|
+

|
|
281
281
|
|
|
282
282
|
#### 2. GPU-Accelerated Background Subtraction (Kornia)
|
|
283
283
|
|
|
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
|