lattice-sub 1.1.3__py3-none-any.whl → 1.1.4__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.
- {lattice_sub-1.1.3.dist-info → lattice_sub-1.1.4.dist-info}/METADATA +1 -1
- {lattice_sub-1.1.3.dist-info → lattice_sub-1.1.4.dist-info}/RECORD +8 -8
- lattice_subtraction/__init__.py +1 -1
- lattice_subtraction/cli.py +4 -1
- {lattice_sub-1.1.3.dist-info → lattice_sub-1.1.4.dist-info}/WHEEL +0 -0
- {lattice_sub-1.1.3.dist-info → lattice_sub-1.1.4.dist-info}/entry_points.txt +0 -0
- {lattice_sub-1.1.3.dist-info → lattice_sub-1.1.4.dist-info}/licenses/LICENSE +0 -0
- {lattice_sub-1.1.3.dist-info → lattice_sub-1.1.4.dist-info}/top_level.txt +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.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
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
lattice_sub-1.1.
|
|
2
|
-
lattice_subtraction/__init__.py,sha256=
|
|
1
|
+
lattice_sub-1.1.4.dist-info/licenses/LICENSE,sha256=2kPoH0cbEp0cVEGqMpyF2IQX1npxdtQmWJB__HIRSb0,1101
|
|
2
|
+
lattice_subtraction/__init__.py,sha256=zLLC1T_bGZMDpZTcywjloIsV1vvIhsBbj_P9h7YFPqw,1737
|
|
3
3
|
lattice_subtraction/batch.py,sha256=sTDWEL5FlEx2HFaJsTZRXyzLQoNCgUqRo900eZ6kq68,12005
|
|
4
|
-
lattice_subtraction/cli.py,sha256=
|
|
4
|
+
lattice_subtraction/cli.py,sha256=fWZ3ueahQXPQ_ApzS345AdslsMF0-6HIAIvan2IFHkk,23597
|
|
5
5
|
lattice_subtraction/config.py,sha256=dh8EJFzJEEXwwggQ46rBMHsuVOExQWM-kCfonT94_fE,8111
|
|
6
6
|
lattice_subtraction/core.py,sha256=QzE5CLv92XPoyuw8JcMAGIeSEVgfwSkHgG86WlHAjMo,15790
|
|
7
7
|
lattice_subtraction/io.py,sha256=uHku6rJ0jeCph7w-gOIDJx-xpNoF6PZcLfb5TBTOiw0,4594
|
|
@@ -10,8 +10,8 @@ lattice_subtraction/processing.py,sha256=tmnj5K4Z9HCQhRpJ-iMd9Bj_uTRuvDEWyUenh8M
|
|
|
10
10
|
lattice_subtraction/threshold_optimizer.py,sha256=yEsGM_zt6YjgEulEZqtRy113xOFB69aHJIETm2xSS6k,15398
|
|
11
11
|
lattice_subtraction/ui.py,sha256=Sp_a-yNmBRZJxll8h9T_H5-_KsI13zGYmHcbcpVpbR8,9176
|
|
12
12
|
lattice_subtraction/visualization.py,sha256=pMZKcz6Xgs98lLaZbvGjoMIyEYA_MLRracVxpQStC3w,5935
|
|
13
|
-
lattice_sub-1.1.
|
|
14
|
-
lattice_sub-1.1.
|
|
15
|
-
lattice_sub-1.1.
|
|
16
|
-
lattice_sub-1.1.
|
|
17
|
-
lattice_sub-1.1.
|
|
13
|
+
lattice_sub-1.1.4.dist-info/METADATA,sha256=hPnPdJSHoP4DL_2R-frH5982ftSw4ggVpxiZsFcoNRM,12581
|
|
14
|
+
lattice_sub-1.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
15
|
+
lattice_sub-1.1.4.dist-info/entry_points.txt,sha256=o8PzJR8kFnXlKZufoYGBIHpiosM-P4PZeKZXJjtPS6Y,61
|
|
16
|
+
lattice_sub-1.1.4.dist-info/top_level.txt,sha256=BOuW-sm4G-fQtsWPRdeLzWn0WS8sDYVNKIMj5I3JXew,20
|
|
17
|
+
lattice_sub-1.1.4.dist-info/RECORD,,
|
lattice_subtraction/__init__.py
CHANGED
lattice_subtraction/cli.py
CHANGED
|
@@ -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=
|
|
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
|