pytme 0.2.1__tar.gz → 0.2.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.
- pytme-0.2.2/PKG-INFO +91 -0
- pytme-0.2.2/README.md +51 -0
- {pytme-0.2.1 → pytme-0.2.2}/pyproject.toml +14 -3
- {pytme-0.2.1 → pytme-0.2.2}/pytme.egg-info/SOURCES.txt +3 -2
- {pytme-0.2.1 → pytme-0.2.2}/scripts/extract_candidates.py +20 -13
- {pytme-0.2.1 → pytme-0.2.2}/scripts/match_template.py +147 -93
- {pytme-0.2.1 → pytme-0.2.2}/scripts/match_template_filters.py +154 -95
- {pytme-0.2.1 → pytme-0.2.2}/scripts/postprocess.py +67 -26
- {pytme-0.2.1 → pytme-0.2.2}/scripts/preprocessor_gui.py +175 -85
- {pytme-0.2.1 → pytme-0.2.2}/scripts/refine_matches.py +265 -61
- {pytme-0.2.1 → pytme-0.2.2}/tme/__init__.py +0 -1
- pytme-0.2.2/tme/__version__.py +1 -0
- pytme-0.2.2/tme/analyzer.py +1423 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/backends/__init__.py +40 -11
- pytme-0.2.2/tme/backends/_jax_utils.py +185 -0
- pytme-0.2.2/tme/backends/cupy_backend.py +273 -0
- pytme-0.2.2/tme/backends/jax_backend.py +282 -0
- pytme-0.2.2/tme/backends/matching_backend.py +1232 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/backends/mlx_backend.py +32 -59
- pytme-0.2.2/tme/backends/npfftw_backend.py +531 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/backends/pytorch_backend.py +21 -145
- {pytme-0.2.1 → pytme-0.2.2}/tme/density.py +233 -363
- {pytme-0.2.1 → pytme-0.2.2}/tme/matching_data.py +322 -285
- pytme-0.2.2/tme/matching_exhaustive.py +507 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/matching_optimization.py +143 -106
- pytme-0.2.2/tme/matching_scores.py +884 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/matching_utils.py +280 -386
- pytme-0.2.2/tme/memory.py +377 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/orientations.py +52 -12
- {pytme-0.2.1 → pytme-0.2.2}/tme/parser.py +3 -4
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessing/_utils.py +61 -32
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessing/compose.py +7 -3
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessing/frequency_filters.py +49 -39
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessing/tilt_series.py +34 -40
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessor.py +560 -526
- {pytme-0.2.1 → pytme-0.2.2}/tme/structure.py +491 -188
- {pytme-0.2.1 → pytme-0.2.2}/tme/types.py +5 -3
- pytme-0.2.1/PKG-INFO +0 -73
- pytme-0.2.1/README.md +0 -46
- pytme-0.2.1/tme/__version__.py +0 -1
- pytme-0.2.1/tme/analyzer.py +0 -1781
- pytme-0.2.1/tme/backends/cupy_backend.py +0 -385
- pytme-0.2.1/tme/backends/jax_backend.py +0 -218
- pytme-0.2.1/tme/backends/matching_backend.py +0 -1171
- pytme-0.2.1/tme/backends/npfftw_backend.py +0 -799
- pytme-0.2.1/tme/helpers.py +0 -881
- pytme-0.2.1/tme/matching_constrained.py +0 -195
- pytme-0.2.1/tme/matching_exhaustive.py +0 -1828
- {pytme-0.2.1 → pytme-0.2.2}/LICENSE +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/MANIFEST.in +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/scripts/__init__.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/scripts/estimate_ram_usage.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/scripts/preprocess.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/setup.cfg +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/setup.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/src/extensions.cpp +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/__init__.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48n309.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48n527.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48n9.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u1.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u1153.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u1201.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u1641.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u181.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u2219.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u27.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u2947.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u3733.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u4749.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u5879.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u7111.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u815.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u83.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c48u8649.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c600v.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/c600vc.npy +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/metadata.yaml +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/data/quat_to_numpy.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/matching_memory.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessing/__init__.py +0 -0
- {pytme-0.2.1 → pytme-0.2.2}/tme/preprocessing/composable_filter.py +0 -0
pytme-0.2.2/PKG-INFO
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pytme
|
3
|
+
Version: 0.2.2
|
4
|
+
Summary: Python Template Matching Engine
|
5
|
+
Author: Valentin Maurer
|
6
|
+
Author-email: Valentin Maurer <valentin.maurer@embl-hamburg.de>
|
7
|
+
License: Proprietary
|
8
|
+
Project-URL: Homepage, https://github.com/KosinskiLab/pyTME
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.11
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE
|
14
|
+
Requires-Dist: mrcfile>=1.4.3
|
15
|
+
Requires-Dist: numpy>=1.22.2
|
16
|
+
Requires-Dist: pyfftw>=0.13.1
|
17
|
+
Requires-Dist: pytest>=6.2.5
|
18
|
+
Requires-Dist: PyYAML>=6.0
|
19
|
+
Requires-Dist: scikit-image>=0.19.0
|
20
|
+
Requires-Dist: scikit_learn>=1.2.1
|
21
|
+
Requires-Dist: scipy>=1.9.1
|
22
|
+
Requires-Dist: pybind11
|
23
|
+
Requires-Dist: psutil
|
24
|
+
Requires-Dist: tifffile
|
25
|
+
Requires-Dist: h5py
|
26
|
+
Provides-Extra: cupy
|
27
|
+
Requires-Dist: cupy; extra == "cupy"
|
28
|
+
Requires-Dist: voltools==0.6.0; extra == "cupy"
|
29
|
+
Provides-Extra: pytorch
|
30
|
+
Requires-Dist: torch; extra == "pytorch"
|
31
|
+
Provides-Extra: jax
|
32
|
+
Requires-Dist: jax; extra == "jax"
|
33
|
+
Requires-Dist: jaxlib; extra == "jax"
|
34
|
+
Provides-Extra: all
|
35
|
+
Requires-Dist: cupy; extra == "all"
|
36
|
+
Requires-Dist: voltools==0.6.0; extra == "all"
|
37
|
+
Requires-Dist: torch; extra == "all"
|
38
|
+
Requires-Dist: jax; extra == "all"
|
39
|
+
Requires-Dist: jaxlib; extra == "all"
|
40
|
+
|
41
|
+
# Python Template Matching Engine (PyTME)
|
42
|
+
|
43
|
+
[](https://github.com/KosinskiLab/pyTME/actions)
|
44
|
+
[](https://pypi.org/project/pytme/)
|
45
|
+
|
46
|
+
**[Documentation](https://kosinskilab.github.io/pyTME/)** | **[Installation](https://kosinskilab.github.io/pyTME/quickstart/installation.html)** | **[API](https://kosinskilab.github.io/pyTME/reference/index.html)**
|
47
|
+
|
48
|
+
PyTME is a Python library for data-intensive n-dimensional template matching using CPUs and GPUs.
|
49
|
+
|
50
|
+
With its [backend-agnostic design](https://kosinskilab.github.io/pyTME/reference/backends.html), the same code can be run on diverse hardware platforms using a best-of-breed approach. The underyling abstract backend specification allows for adding new backends to benefit from gains in performance and capabilities without modifying the library's core routines. The implementation of template matching scores is modular and provides developers with a flexible framework for rapid prototyping. Furthermore, pyTME supports a unique callback capability through [analyzers](https://kosinskilab.github.io/pyTME/reference/analyzer.html), which allows for injection of custom code, enabling real-time processing and manipulation of results
|
51
|
+
|
52
|
+
PyTME includes a [graphical user interface](https://kosinskilab.github.io/pyTME/quickstart/preprocessing.html#practical-example) that provides simplified mask creation, interactive filter exploration, result visualization, and manual refinement capabilities. This GUI serves as an accessible entry point to the library's core functionalities, allowing users to efficiently interact with and analyze their data.
|
53
|
+
|
54
|
+
Finally, pyTME offers specialized tools for cryogenic electron microscopy data, such as wedge masks, CTF correction, as well as [means for handling structural data](https://kosinskilab.github.io/pyTME/reference/data_structure.html). Through dedicated [integrations](https://kosinskilab.github.io/pyTME/quickstart/integrations.html), the output of pyTME seamlessly integrates with commonly used cryogenic electron microscopy software such as RELION, Dynamo and IMOD.
|
55
|
+
|
56
|
+
Running into bugs or missing a feature? Help us improve the project by opening an [issue](https://github.com/KosinskiLab/pyTME/issues).
|
57
|
+
|
58
|
+
## Installation
|
59
|
+
|
60
|
+
We recommend installation using one of the following methods
|
61
|
+
|
62
|
+
| Method | Command |
|
63
|
+
|----------|---------------------------------------------------------|
|
64
|
+
| PyPi | `pip install pytme` |
|
65
|
+
| Source | `pip install git+https://github.com/KosinskiLab/pyTME` |
|
66
|
+
| Docker | `docker build -t pytme -f docker/Dockerfile_GPU .` |
|
67
|
+
|
68
|
+
You can find alternative installation methods in the [documentation](https://kosinskilab.github.io/pyTME/quickstart/installation.html).
|
69
|
+
|
70
|
+
|
71
|
+
## Quickstart
|
72
|
+
|
73
|
+
Learn how to get started with
|
74
|
+
|
75
|
+
- [Preprocessing:](https://kosinskilab.github.io/pyTME/quickstart/preprocessing.html) Picking the right mask and filter for template matching.
|
76
|
+
- [Template matching:](https://kosinskilab.github.io/pyTME/quickstart/match_template.html) Find your template of interest.
|
77
|
+
- [Postprocessing](https://kosinskilab.github.io/pyTME/quickstart/postprocessing.html) Analyze template matching results and downstream integrations.
|
78
|
+
|
79
|
+
## How to Cite
|
80
|
+
|
81
|
+
If PyTME contributed significantly to your research, please cite the corresponding publication on [SoftwareX](https://www.sciencedirect.com/science/article/pii/S2352711024000074).
|
82
|
+
|
83
|
+
```bibtex
|
84
|
+
@article{Maurer:2024aa,
|
85
|
+
author = {Maurer, Valentin J. and Siggel, Marc and Kosinski, Jan},
|
86
|
+
journal = {SoftwareX},
|
87
|
+
pages = {101636},
|
88
|
+
title = {PyTME (Python Template Matching Engine): A fast, flexible, and multi-purpose template matching library for cryogenic electron microscopy data},
|
89
|
+
volume = {25},
|
90
|
+
year = {2024}}
|
91
|
+
```
|
pytme-0.2.2/README.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
# Python Template Matching Engine (PyTME)
|
2
|
+
|
3
|
+
[](https://github.com/KosinskiLab/pyTME/actions)
|
4
|
+
[](https://pypi.org/project/pytme/)
|
5
|
+
|
6
|
+
**[Documentation](https://kosinskilab.github.io/pyTME/)** | **[Installation](https://kosinskilab.github.io/pyTME/quickstart/installation.html)** | **[API](https://kosinskilab.github.io/pyTME/reference/index.html)**
|
7
|
+
|
8
|
+
PyTME is a Python library for data-intensive n-dimensional template matching using CPUs and GPUs.
|
9
|
+
|
10
|
+
With its [backend-agnostic design](https://kosinskilab.github.io/pyTME/reference/backends.html), the same code can be run on diverse hardware platforms using a best-of-breed approach. The underyling abstract backend specification allows for adding new backends to benefit from gains in performance and capabilities without modifying the library's core routines. The implementation of template matching scores is modular and provides developers with a flexible framework for rapid prototyping. Furthermore, pyTME supports a unique callback capability through [analyzers](https://kosinskilab.github.io/pyTME/reference/analyzer.html), which allows for injection of custom code, enabling real-time processing and manipulation of results
|
11
|
+
|
12
|
+
PyTME includes a [graphical user interface](https://kosinskilab.github.io/pyTME/quickstart/preprocessing.html#practical-example) that provides simplified mask creation, interactive filter exploration, result visualization, and manual refinement capabilities. This GUI serves as an accessible entry point to the library's core functionalities, allowing users to efficiently interact with and analyze their data.
|
13
|
+
|
14
|
+
Finally, pyTME offers specialized tools for cryogenic electron microscopy data, such as wedge masks, CTF correction, as well as [means for handling structural data](https://kosinskilab.github.io/pyTME/reference/data_structure.html). Through dedicated [integrations](https://kosinskilab.github.io/pyTME/quickstart/integrations.html), the output of pyTME seamlessly integrates with commonly used cryogenic electron microscopy software such as RELION, Dynamo and IMOD.
|
15
|
+
|
16
|
+
Running into bugs or missing a feature? Help us improve the project by opening an [issue](https://github.com/KosinskiLab/pyTME/issues).
|
17
|
+
|
18
|
+
## Installation
|
19
|
+
|
20
|
+
We recommend installation using one of the following methods
|
21
|
+
|
22
|
+
| Method | Command |
|
23
|
+
|----------|---------------------------------------------------------|
|
24
|
+
| PyPi | `pip install pytme` |
|
25
|
+
| Source | `pip install git+https://github.com/KosinskiLab/pyTME` |
|
26
|
+
| Docker | `docker build -t pytme -f docker/Dockerfile_GPU .` |
|
27
|
+
|
28
|
+
You can find alternative installation methods in the [documentation](https://kosinskilab.github.io/pyTME/quickstart/installation.html).
|
29
|
+
|
30
|
+
|
31
|
+
## Quickstart
|
32
|
+
|
33
|
+
Learn how to get started with
|
34
|
+
|
35
|
+
- [Preprocessing:](https://kosinskilab.github.io/pyTME/quickstart/preprocessing.html) Picking the right mask and filter for template matching.
|
36
|
+
- [Template matching:](https://kosinskilab.github.io/pyTME/quickstart/match_template.html) Find your template of interest.
|
37
|
+
- [Postprocessing](https://kosinskilab.github.io/pyTME/quickstart/postprocessing.html) Analyze template matching results and downstream integrations.
|
38
|
+
|
39
|
+
## How to Cite
|
40
|
+
|
41
|
+
If PyTME contributed significantly to your research, please cite the corresponding publication on [SoftwareX](https://www.sciencedirect.com/science/article/pii/S2352711024000074).
|
42
|
+
|
43
|
+
```bibtex
|
44
|
+
@article{Maurer:2024aa,
|
45
|
+
author = {Maurer, Valentin J. and Siggel, Marc and Kosinski, Jan},
|
46
|
+
journal = {SoftwareX},
|
47
|
+
pages = {101636},
|
48
|
+
title = {PyTME (Python Template Matching Engine): A fast, flexible, and multi-purpose template matching library for cryogenic electron microscopy data},
|
49
|
+
volume = {25},
|
50
|
+
year = {2024}}
|
51
|
+
```
|
@@ -7,7 +7,7 @@ name="pytme"
|
|
7
7
|
authors = [
|
8
8
|
{ name = "Valentin Maurer", email = "valentin.maurer@embl-hamburg.de" },
|
9
9
|
]
|
10
|
-
version="0.2.
|
10
|
+
version="0.2.2"
|
11
11
|
description="Python Template Matching Engine"
|
12
12
|
readme="README.md"
|
13
13
|
requires-python = ">=3.11"
|
@@ -16,7 +16,6 @@ dependencies=[
|
|
16
16
|
"numpy>=1.22.2",
|
17
17
|
"pyfftw>=0.13.1",
|
18
18
|
"pytest>=6.2.5",
|
19
|
-
"PyWavelets>=1.2.0",
|
20
19
|
"PyYAML>=6.0",
|
21
20
|
"scikit-image>=0.19.0",
|
22
21
|
"scikit_learn>=1.2.1",
|
@@ -24,7 +23,7 @@ dependencies=[
|
|
24
23
|
"pybind11",
|
25
24
|
"psutil",
|
26
25
|
"tifffile",
|
27
|
-
"h5py"
|
26
|
+
"h5py",
|
28
27
|
]
|
29
28
|
license = {text = "Proprietary"}
|
30
29
|
classifiers = [
|
@@ -32,6 +31,18 @@ classifiers = [
|
|
32
31
|
"Operating System :: OS Independent",
|
33
32
|
]
|
34
33
|
|
34
|
+
[project.optional-dependencies]
|
35
|
+
cupy = ["cupy", "voltools==0.6.0"]
|
36
|
+
pytorch = ["torch"]
|
37
|
+
jax = ["jax", "jaxlib"]
|
38
|
+
all = [
|
39
|
+
"cupy",
|
40
|
+
"voltools==0.6.0",
|
41
|
+
"torch",
|
42
|
+
"jax",
|
43
|
+
"jaxlib"
|
44
|
+
]
|
45
|
+
|
35
46
|
[project.scripts]
|
36
47
|
match_template = "scripts:match_template.main"
|
37
48
|
estimate_ram_usage = "scripts:estimate_ram_usage.main"
|
@@ -17,19 +17,20 @@ tme/__init__.py
|
|
17
17
|
tme/__version__.py
|
18
18
|
tme/analyzer.py
|
19
19
|
tme/density.py
|
20
|
-
tme/helpers.py
|
21
|
-
tme/matching_constrained.py
|
22
20
|
tme/matching_data.py
|
23
21
|
tme/matching_exhaustive.py
|
24
22
|
tme/matching_memory.py
|
25
23
|
tme/matching_optimization.py
|
24
|
+
tme/matching_scores.py
|
26
25
|
tme/matching_utils.py
|
26
|
+
tme/memory.py
|
27
27
|
tme/orientations.py
|
28
28
|
tme/parser.py
|
29
29
|
tme/preprocessor.py
|
30
30
|
tme/structure.py
|
31
31
|
tme/types.py
|
32
32
|
tme/backends/__init__.py
|
33
|
+
tme/backends/_jax_utils.py
|
33
34
|
tme/backends/cupy_backend.py
|
34
35
|
tme/backends/jax_backend.py
|
35
36
|
tme/backends/matching_backend.py
|
@@ -108,6 +108,12 @@ def parse_args():
|
|
108
108
|
type=int,
|
109
109
|
help="Box size for extraction, defaults to two times the template.",
|
110
110
|
)
|
111
|
+
extraction_group.add_argument(
|
112
|
+
"--translation_uncertainty",
|
113
|
+
required=False,
|
114
|
+
type=int,
|
115
|
+
help="Sets box size for extraction to template box plus this value.",
|
116
|
+
)
|
111
117
|
extraction_group.add_argument(
|
112
118
|
"--keep_out_of_box",
|
113
119
|
action="store_true",
|
@@ -150,6 +156,9 @@ def main():
|
|
150
156
|
box_size = args.box_size
|
151
157
|
if box_size is None:
|
152
158
|
box_size = np.multiply(template.shape, 2)
|
159
|
+
if args.translation_uncertainty is not None:
|
160
|
+
box_size = np.add(template.shape, args.translation_uncertainty)
|
161
|
+
|
153
162
|
box_size = np.array(box_size)
|
154
163
|
box_size = np.repeat(box_size, template.data.ndim // box_size.size).astype(int)
|
155
164
|
|
@@ -195,8 +204,6 @@ def main():
|
|
195
204
|
)
|
196
205
|
dens.data[:] = target.metadata["mean"]
|
197
206
|
|
198
|
-
print(target.data.shape)
|
199
|
-
# There appears to be an isseu with the stack creation. Trace this further
|
200
207
|
data_subset = np.zeros(extraction_shape, dtype = target.data.dtype)
|
201
208
|
pbar = ProgressBar(message = "Orientation ", nchars = 80, total = len(obs_slices))
|
202
209
|
for index, (obs_slice, cand_slice) in enumerate(zip(obs_slices, cand_slices)):
|
@@ -219,13 +226,13 @@ def main():
|
|
219
226
|
)
|
220
227
|
target_subset.pad(box_size, center=True)
|
221
228
|
|
222
|
-
target_value = target.data[tuple(orientations.translations[index].astype(int))]
|
223
|
-
center = np.divide(target_subset.data.shape, 2).astype(int ) + np.mod(target_subset.shape, 2)
|
224
|
-
print(np.where(target_subset.data == target_value), center)
|
225
|
-
print(target_subset.data[tuple(center.astype(int))],
|
226
|
-
target_value,
|
227
|
-
target_subset.data[tuple(center.astype(int))] == target_value
|
228
|
-
)
|
229
|
+
# target_value = target.data[tuple(orientations.translations[index].astype(int))]
|
230
|
+
# center = np.divide(target_subset.data.shape, 2).astype(int ) + np.mod(target_subset.shape, 2)
|
231
|
+
# print(np.where(target_subset.data == target_value), center)
|
232
|
+
# print(target_subset.data[tuple(center.astype(int))],
|
233
|
+
# target_value,
|
234
|
+
# target_subset.data[tuple(center.astype(int))] == target_value
|
235
|
+
# )
|
229
236
|
|
230
237
|
dens.data[index] = target_subset.data
|
231
238
|
print("")
|
@@ -241,10 +248,10 @@ def main():
|
|
241
248
|
f"{splitext(args.output_file)[0]}_aligned.tsv",
|
242
249
|
file_format="text"
|
243
250
|
)
|
244
|
-
orientations.to_file(
|
245
|
-
|
246
|
-
|
247
|
-
)
|
251
|
+
# orientations.to_file(
|
252
|
+
# f"{splitext(args.output_file)[0]}_aligned.star",
|
253
|
+
# file_format="relion"
|
254
|
+
# )
|
248
255
|
|
249
256
|
if __name__ == "__main__":
|
250
257
|
main()
|