lattice-sub 1.1.3__tar.gz → 1.1.4__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 (27) hide show
  1. {lattice_sub-1.1.3/src/lattice_sub.egg-info → lattice_sub-1.1.4}/PKG-INFO +1 -1
  2. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/pyproject.toml +1 -1
  3. {lattice_sub-1.1.3 → lattice_sub-1.1.4/src/lattice_sub.egg-info}/PKG-INFO +1 -1
  4. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/__init__.py +1 -1
  5. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/cli.py +4 -1
  6. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/LICENSE +0 -0
  7. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/MANIFEST.in +0 -0
  8. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/README.md +0 -0
  9. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/docs/images/example_comparison.png +0 -0
  10. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/docs/images/threshold_analysis.png +0 -0
  11. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/examples/config.yaml +0 -0
  12. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/examples/converted_params.yaml +0 -0
  13. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/setup.cfg +0 -0
  14. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_sub.egg-info/SOURCES.txt +0 -0
  15. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_sub.egg-info/dependency_links.txt +0 -0
  16. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_sub.egg-info/entry_points.txt +0 -0
  17. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_sub.egg-info/requires.txt +0 -0
  18. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_sub.egg-info/top_level.txt +0 -0
  19. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/batch.py +0 -0
  20. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/config.py +0 -0
  21. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/core.py +0 -0
  22. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/io.py +0 -0
  23. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/masks.py +0 -0
  24. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/processing.py +0 -0
  25. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/threshold_optimizer.py +0 -0
  26. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/src/lattice_subtraction/ui.py +0 -0
  27. {lattice_sub-1.1.3 → lattice_sub-1.1.4}/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
3
+ Version: 1.1.4
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "lattice-sub"
7
- version = "1.1.3"
7
+ version = "1.1.4"
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
3
+ Version: 1.1.4
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
@@ -19,7 +19,7 @@ Example:
19
19
  >>> result.save("output.mrc")
20
20
  """
21
21
 
22
- __version__ = "1.1.3"
22
+ __version__ = "1.1.4"
23
23
  __author__ = "George Stephenson & Vignesh Kasinath"
24
24
 
25
25
  from .config import Config
@@ -122,8 +122,11 @@ def setup_logging(verbose: bool, interactive: bool = False) -> None:
122
122
  )
123
123
 
124
124
 
125
+ from . import __version__
126
+
127
+
125
128
  @click.group()
126
- @click.version_option(version="1.0.10", prog_name="lattice-sub")
129
+ @click.version_option(version=__version__, prog_name="lattice-sub")
127
130
  def main():
128
131
  """
129
132
  Lattice Subtraction for Cryo-EM Micrographs.
File without changes
File without changes
File without changes
File without changes