pytme 0.2.0b0__cp311-cp311-macosx_14_0_arm64.whl → 0.2.2__cp311-cp311-macosx_14_0_arm64.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.
- pytme-0.2.2.data/scripts/match_template.py +1187 -0
- {pytme-0.2.0b0.data → pytme-0.2.2.data}/scripts/postprocess.py +170 -71
- {pytme-0.2.0b0.data → pytme-0.2.2.data}/scripts/preprocessor_gui.py +179 -86
- pytme-0.2.2.dist-info/METADATA +91 -0
- pytme-0.2.2.dist-info/RECORD +74 -0
- {pytme-0.2.0b0.dist-info → pytme-0.2.2.dist-info}/WHEEL +1 -1
- scripts/extract_candidates.py +126 -87
- scripts/match_template.py +596 -209
- scripts/match_template_filters.py +571 -223
- scripts/postprocess.py +170 -71
- scripts/preprocessor_gui.py +179 -86
- scripts/refine_matches.py +567 -159
- tme/__init__.py +0 -1
- tme/__version__.py +1 -1
- tme/analyzer.py +627 -855
- tme/backends/__init__.py +41 -11
- tme/backends/_jax_utils.py +185 -0
- tme/backends/cupy_backend.py +120 -225
- tme/backends/jax_backend.py +282 -0
- tme/backends/matching_backend.py +464 -388
- tme/backends/mlx_backend.py +45 -68
- tme/backends/npfftw_backend.py +256 -514
- tme/backends/pytorch_backend.py +41 -154
- tme/density.py +312 -421
- tme/extensions.cpython-311-darwin.so +0 -0
- tme/matching_data.py +366 -303
- tme/matching_exhaustive.py +279 -1521
- tme/matching_optimization.py +234 -129
- tme/matching_scores.py +884 -0
- tme/matching_utils.py +281 -387
- tme/memory.py +377 -0
- tme/orientations.py +226 -66
- tme/parser.py +3 -4
- tme/preprocessing/__init__.py +2 -0
- tme/preprocessing/_utils.py +217 -0
- tme/preprocessing/composable_filter.py +31 -0
- tme/preprocessing/compose.py +55 -0
- tme/preprocessing/frequency_filters.py +388 -0
- tme/preprocessing/tilt_series.py +1011 -0
- tme/preprocessor.py +574 -530
- tme/structure.py +495 -189
- tme/types.py +5 -3
- pytme-0.2.0b0.data/scripts/match_template.py +0 -800
- pytme-0.2.0b0.dist-info/METADATA +0 -73
- pytme-0.2.0b0.dist-info/RECORD +0 -66
- tme/helpers.py +0 -881
- tme/matching_constrained.py +0 -195
- {pytme-0.2.0b0.data → pytme-0.2.2.data}/scripts/estimate_ram_usage.py +0 -0
- {pytme-0.2.0b0.data → pytme-0.2.2.data}/scripts/preprocess.py +0 -0
- {pytme-0.2.0b0.dist-info → pytme-0.2.2.dist-info}/LICENSE +0 -0
- {pytme-0.2.0b0.dist-info → pytme-0.2.2.dist-info}/entry_points.txt +0 -0
- {pytme-0.2.0b0.dist-info → pytme-0.2.2.dist-info}/top_level.txt +0 -0
pytme-0.2.0b0.dist-info/METADATA
DELETED
@@ -1,73 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: pytme
|
3
|
-
Version: 0.2.0b0
|
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: PyWavelets >=1.2.0
|
19
|
-
Requires-Dist: PyYAML >=6.0
|
20
|
-
Requires-Dist: scikit-image >=0.19.0
|
21
|
-
Requires-Dist: scikit-learn >=1.2.1
|
22
|
-
Requires-Dist: scipy >=1.9.1
|
23
|
-
Requires-Dist: pybind11
|
24
|
-
Requires-Dist: psutil
|
25
|
-
Requires-Dist: tifffile[all]
|
26
|
-
Requires-Dist: h5py
|
27
|
-
|
28
|
-
# Python Template Matching Engine (PyTME)
|
29
|
-
|
30
|
-
A software for template matching on electron microscopy data.
|
31
|
-
|
32
|
-
📖 **[Official Documentation](https://kosinskilab.github.io/pyTME/)** | 🚀 **[Installation Guide](https://kosinskilab.github.io/pyTME/quickstart/installation.html)** | 📚 **[API Reference](https://kosinskilab.github.io/pyTME/reference/index.html)**
|
33
|
-
|
34
|
-
### Installation
|
35
|
-
|
36
|
-
There are three ways to get pyTME up and running:
|
37
|
-
|
38
|
-
1. **Install from Source:**
|
39
|
-
```bash
|
40
|
-
pip install git+https://github.com/KosinskiLab/pyTME
|
41
|
-
```
|
42
|
-
|
43
|
-
2. **Install from PyPi:**
|
44
|
-
```bash
|
45
|
-
pip install pytme
|
46
|
-
```
|
47
|
-
|
48
|
-
3. **Docker Container:**
|
49
|
-
Build and use the pyTME container from Docker. This assumes a linux/amd64 platform.
|
50
|
-
```bash
|
51
|
-
docker build \
|
52
|
-
-t pytme \
|
53
|
-
--platform linux/amd64 \
|
54
|
-
-f docker/Dockerfile \
|
55
|
-
.
|
56
|
-
```
|
57
|
-
🔗 For more on the Docker container, visit the [Docker Hub page](https://hub.docker.com).
|
58
|
-
|
59
|
-
---
|
60
|
-
|
61
|
-
### Publication
|
62
|
-
|
63
|
-
The pyTME publication is available on [SoftwareX](https://www.sciencedirect.com/science/article/pii/S2352711024000074).
|
64
|
-
|
65
|
-
```
|
66
|
-
@article{Maurer:2024aa,
|
67
|
-
author = {Maurer, Valentin J. and Siggel, Marc and Kosinski, Jan},
|
68
|
-
journal = {SoftwareX},
|
69
|
-
pages = {101636},
|
70
|
-
title = {PyTME (Python Template Matching Engine): A fast, flexible, and multi-purpose template matching library for cryogenic electron microscopy data},
|
71
|
-
volume = {25},
|
72
|
-
year = {2024}}
|
73
|
-
```
|
pytme-0.2.0b0.dist-info/RECORD
DELETED
@@ -1,66 +0,0 @@
|
|
1
|
-
pytme-0.2.0b0.data/scripts/estimate_ram_usage.py,sha256=R1NDpFajcF-MonJ4a43SfDlA-nxBYwK7D2quzCdsVFM,2767
|
2
|
-
pytme-0.2.0b0.data/scripts/match_template.py,sha256=gViezEvCrx1vagvFEUu3mb34XD5_GQs9DwaNb8mbJH4,26663
|
3
|
-
pytme-0.2.0b0.data/scripts/postprocess.py,sha256=mgSkDoW9NNQiYYq8jkJxHRlHUkOkpkwCzxeqwQTZPps,21011
|
4
|
-
pytme-0.2.0b0.data/scripts/preprocess.py,sha256=zog-l2Je-GeouJ6SnamOMuHgTn7fFPiGnO5X03y5qSY,2527
|
5
|
-
pytme-0.2.0b0.data/scripts/preprocessor_gui.py,sha256=dX8y9FjCqwYIgZZ4G3xaFqIGB6FqY0ohiY9VodMBXBI,35189
|
6
|
-
scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
scripts/estimate_ram_usage.py,sha256=rN7haobnHg3YcgGJIp81FNiCzy8-saJGeEurQlmQmNQ,2768
|
8
|
-
scripts/extract_candidates.py,sha256=L2IXg99hgW8jUBp06e6PEDO-Y5iUhoFuhe0i5B9gcOE,6871
|
9
|
-
scripts/match_template.py,sha256=2p1-gF33N7JnLeE4QVFmQFVHG9HjliaDLyoFTYULjVM,26664
|
10
|
-
scripts/match_template_filters.py,sha256=3wUhXq67yW2waiAm-K7ILRQaPUd15K8q9-0aP_OOOjA,28989
|
11
|
-
scripts/postprocess.py,sha256=rqsBmbJWX_yG6fUDcwXMjlHorqgetgYcmgzm4yEsj9U,21012
|
12
|
-
scripts/preprocess.py,sha256=ebJVLxbRlB6TI5YHNr0VavZ4lmaRdf8QVafyiDhh_oU,2528
|
13
|
-
scripts/preprocessor_gui.py,sha256=3K2PXCboUC2v9u6JyyNzPkAWn_TyMeWhFfshESUNvTk,35190
|
14
|
-
scripts/refine_matches.py,sha256=zV7piR5tGhrbomYN1tjnFDOfPInU07APU8syciSUZz8,7077
|
15
|
-
tme/__init__.py,sha256=MGVeRX1f5k6RwExBcffZtCM7igNNtpoIr2G2yJZ4OHI,251
|
16
|
-
tme/__version__.py,sha256=jaXChwfIgwjM8CGVXQS3V5mfoUdkBU_6vPxsrLg-QJc,23
|
17
|
-
tme/analyzer.py,sha256=qBasMmn4cnxWl3dEw-bkFQeyqtnLMuwgcmKuc0o2N5E,55632
|
18
|
-
tme/density.py,sha256=Tu37m-47ZWWs3wsR7G3dQmP69BNKZd3xdgmhBllR1EI,87856
|
19
|
-
tme/extensions.cpython-311-darwin.so,sha256=jUKGwYCpx9B6DAz3EDL5vPbfoxwQVM2KwQBizMDWkaA,412480
|
20
|
-
tme/helpers.py,sha256=TMtBuJoZk6q4M_rfkr8yPpGzJD74ycqyN3yXMuU9mr4,23625
|
21
|
-
tme/matching_constrained.py,sha256=NAJnZpusjQs5rKabHiNyrclXSPm27K0V8HVFjTQ2zB0,6725
|
22
|
-
tme/matching_data.py,sha256=OUyTVaELYCIqLExuf6Kps95Co4ymCHB0MypsaJOpmMA,24135
|
23
|
-
tme/matching_exhaustive.py,sha256=r45l45kMrjD3kTfKoZcVU3sl4C_1FOXfXGGWgUJu3_w,59531
|
24
|
-
tme/matching_memory.py,sha256=bmCAUYyXWEet-1XXhldtc0irio2ytMSsAzWYyFI5LNM,11273
|
25
|
-
tme/matching_optimization.py,sha256=oqZYk9hhquF9SmPiDZwSfxehirddxJUOIg3SbokgylI,41138
|
26
|
-
tme/matching_utils.py,sha256=b9aLcj4m0BmmJo4P8nivpd3rgic_WkounqLS3AJkB8g,42504
|
27
|
-
tme/orientations.py,sha256=sEGhwBIE19jeRsMr5OZ1VM5ccRBpN5uThx6xG9obbo0,19118
|
28
|
-
tme/parser.py,sha256=tA9ABeV95cZn8lJCukVUaocQ9RguR6ZZzQsMXf_-ud0,13887
|
29
|
-
tme/preprocessor.py,sha256=TFBmLA7ESfKF2cSbKB4PuDfjIxSyA6Hxccp1qpkDdQY,50760
|
30
|
-
tme/structure.py,sha256=1Dlh6gFn1VhoIr7H9ZDgOfaPJbVVfKv_c8AA00X_lbQ,52465
|
31
|
-
tme/types.py,sha256=2Tyh_xnMLxIWYb3aJDAUb6GWpaL6gcYMUm2YNbJlAPI,295
|
32
|
-
tme/backends/__init__.py,sha256=xB2GBUFRskppvEs6S74VH0Pi-nXnIvu9_QFhESlcl3Y,4366
|
33
|
-
tme/backends/cupy_backend.py,sha256=4x8vy3eIpHKmfjg5BtqB9J0-gP0fWcT85FY-rFRXgVU,13145
|
34
|
-
tme/backends/matching_backend.py,sha256=E3cMXnMEazYJUr9RP5Q5rMEAf3vbkiOwzWrx5amt_nI,29311
|
35
|
-
tme/backends/mlx_backend.py,sha256=MrwICZpUiAcpZXON70r4SH-KsWxfhq1PdHUe80WbT-k,8467
|
36
|
-
tme/backends/npfftw_backend.py,sha256=ZYUkcmUE_NXwvddfKrCorVPETjxbg0-5UJfjAMf3yc4,27451
|
37
|
-
tme/backends/pytorch_backend.py,sha256=0QrWX_MSE8ymhaniAzRBgMVL4h5QBJrbLbMbnnaWveE,18293
|
38
|
-
tme/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
-
tme/data/c48n309.npy,sha256=NwH64mOEbm3tStq5c98o81fY1vMOoq4nvXDAh7Z7iZg,296768
|
40
|
-
tme/data/c48n527.npy,sha256=saSUMTa1R0MisPvgFL02a7IHQSwEZ-mJu0v3qJjg5AU,506048
|
41
|
-
tme/data/c48n9.npy,sha256=bDVLV6mWjZHSQfeDc-MOCKKarfc1jaNeVvpoe2xMUy4,8768
|
42
|
-
tme/data/c48u1.npy,sha256=JeXMFzFITs2ezdc3x5lp3jo1cHHHHVADSA1Tpf77kXs,1088
|
43
|
-
tme/data/c48u1153.npy,sha256=ECiEximtYDWtIux3Fwe_EJlyn08gUqP85DN9gjkT9_k,1107008
|
44
|
-
tme/data/c48u1201.npy,sha256=aceC_Jeienz_81X4520nPpZcg5tnRhbW795EqbpWkrg,1153088
|
45
|
-
tme/data/c48u1641.npy,sha256=p4LwW3LzdTjrUUpA7H53RfNWxYfPX0XjeSwZ39Ac78Q,1575488
|
46
|
-
tme/data/c48u181.npy,sha256=mLYXrv1YHLH6DsBp5MkxHkxlxgMnj1mw_KKI0udH-FY,173888
|
47
|
-
tme/data/c48u2219.npy,sha256=p8TQeX8YHu4pdxnwJjEAlQWAPa66W7kpK96iZKZr9JE,2130368
|
48
|
-
tme/data/c48u27.npy,sha256=k03ZNEsoPwBKCy8IeIa5G0WRZqjGZMtX6Ibu7EpJHvU,26048
|
49
|
-
tme/data/c48u2947.npy,sha256=icI97ED6ct66y7FIaJAugmjzrIWk7CINCxtO3wDTnrU,2829248
|
50
|
-
tme/data/c48u3733.npy,sha256=tla-__Pf-hpN6h04vtFIfkkFdCLple11VO06kr1dXkM,3583808
|
51
|
-
tme/data/c48u4749.npy,sha256=tItOA4oV7SiqCCREwz3fyEpZoxM0lCq_jfEo5_-fp2s,4559168
|
52
|
-
tme/data/c48u5879.npy,sha256=bFk89MllIFCX_sLXTYWFquSyN1NuahH4wwnEsPJLxzA,5643968
|
53
|
-
tme/data/c48u7111.npy,sha256=CMy9kI2edH-q9eTIVdgUtXurplYNI7Uqp4dXfkkVdf8,6826688
|
54
|
-
tme/data/c48u815.npy,sha256=bCuJxLtm0Sjg3GGxtyjGzRYZ1G0Gz79XHI-71GvqQnI,782528
|
55
|
-
tme/data/c48u83.npy,sha256=7ODJYnsiuDjGbgd9GFopsyIW2IjrYI0J2X2f-cK868U,79808
|
56
|
-
tme/data/c48u8649.npy,sha256=-IPlpR4zrPQZWhhSPu4zEulFdrCEVgTMFffCB5d-huE,8303168
|
57
|
-
tme/data/c600v.npy,sha256=JqSu3ALoL1A9iguehc0YGUMFPsh2fprHHp76VXeFXIw,2528
|
58
|
-
tme/data/c600vc.npy,sha256=Yht-GFXDSjjGvsjFBvyxxEZAI-ODADPd5gEgFNZQVTA,14528
|
59
|
-
tme/data/metadata.yaml,sha256=fAgX-mEzB0QMHTEtYDG4cSMbJhYxBbDJH3sdvJvL7a8,750
|
60
|
-
tme/data/quat_to_numpy.py,sha256=-gkDZb10fKBxwfYrSLCUWvMB76TzZWELCeKsYProwws,1333
|
61
|
-
pytme-0.2.0b0.dist-info/LICENSE,sha256=K1IUNSVAz8BXbpH5EA8y5FpaHdvFXnAF2zeK95Lr2bY,18467
|
62
|
-
pytme-0.2.0b0.dist-info/METADATA,sha256=yopToQgTnAF3CbAIDIhWrm6EeVVtFiQoD0KopVoTEnQ,2172
|
63
|
-
pytme-0.2.0b0.dist-info/WHEEL,sha256=BDgKu9_KNfDn85ptly0T56JpX4avXH07X_ZCqAJnQwY,110
|
64
|
-
pytme-0.2.0b0.dist-info/entry_points.txt,sha256=ff3LQL3FCWfCYOwFiP9zatm7laUbnwCkuPELkQVyUO4,241
|
65
|
-
pytme-0.2.0b0.dist-info/top_level.txt,sha256=J8FUkazOb2fZ0n_KexnqCGyNOtie2bwisFSUBiM5-0w,12
|
66
|
-
pytme-0.2.0b0.dist-info/RECORD,,
|