scipion-em-xmipp 24.12.2__py3-none-any.whl → 25.6.1__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.
- {scipion_em_xmipp-24.12.2.dist-info → scipion_em_xmipp-25.6.1.dist-info}/METADATA +10 -10
- scipion_em_xmipp-25.6.1.dist-info/RECORD +255 -0
- {scipion_em_xmipp-24.12.2.dist-info → scipion_em_xmipp-25.6.1.dist-info}/WHEEL +1 -1
- {scipion_em_xmipp-24.12.2.dist-info → scipion_em_xmipp-25.6.1.dist-info}/entry_points.txt +0 -1
- xmipp3/__init__.py +105 -72
- xmipp3/base.py +2 -1
- xmipp3/convert/convert.py +1 -1
- xmipp3/legacy/protocols/protocol_angular_resolution_alignment.py +204 -0
- xmipp3/legacy/protocols/protocol_apply_deformation_zernike3d.py +113 -0
- xmipp3/legacy/protocols/protocol_classification_gpuCorr.py +821 -0
- xmipp3/legacy/protocols/protocol_classification_gpuCorr_full.py +1014 -0
- xmipp3/legacy/protocols/protocol_classification_gpuCorr_semi.py +462 -0
- xmipp3/legacy/protocols/protocol_classify_kmeans2d.py +285 -0
- xmipp3/legacy/protocols/protocol_deep_align.py +859 -0
- xmipp3/legacy/protocols/protocol_deep_denoising.py +425 -0
- xmipp3/legacy/protocols/protocol_kmeans_clustering.py +122 -0
- xmipp3/legacy/protocols/protocol_metaprotocol_create_output.py +146 -0
- xmipp3/legacy/protocols/protocol_metaprotocol_create_subset.py +96 -0
- xmipp3/legacy/protocols/protocol_metaprotocol_discrete_heterogeneity_scheduler.py +516 -0
- xmipp3/legacy/protocols/protocol_metaprotocol_golden_highres.py +663 -0
- xmipp3/legacy/protocols/protocol_mltomo.py +576 -0
- xmipp3/legacy/protocols/protocol_movie_average.py +202 -0
- xmipp3/legacy/protocols/protocol_movie_opticalflow.py +416 -0
- xmipp3/legacy/protocols/protocol_particle_boxsize.py +133 -0
- xmipp3/legacy/protocols/protocol_reconstruct_heterogeneous.py +1031 -0
- xmipp3/legacy/protocols/protocol_rotational_spectra.py +212 -0
- xmipp3/legacy/protocols/protocol_solid_angles.py +632 -0
- xmipp3/legacy/protocols/protocol_split_volume.py +112 -0
- xmipp3/legacy/protocols/protocol_split_volume_hierarchical_cluster.py +865 -0
- xmipp3/legacy/protocols/protocol_subtract_projection.py +265 -0
- xmipp3/legacy/tests/test_protocol_deep_denoising.py +64 -0
- xmipp3/legacy/tests/test_protocols_angular_resolution_alignment.py +88 -0
- xmipp3/legacy/tests/test_protocols_gpuCorr_classifier.py +141 -0
- xmipp3/legacy/tests/test_protocols_gpuCorr_fullStreaming.py +172 -0
- xmipp3/legacy/tests/test_protocols_gpuCorr_semiStreaming.py +68 -0
- xmipp3/legacy/tests/test_protocols_metaprotocol_golden_highres.py +96 -0
- xmipp3/legacy/tests/test_protocols_metaprotocol_heterogeneity.py +78 -0
- xmipp3/legacy/tests/test_protocols_mixed_movies.py +148 -0
- xmipp3/legacy/tests/test_protocols_solid_angles.py +161 -0
- xmipp3/legacy/tests/test_protocols_subtract_projection.py +595 -0
- xmipp3/legacy/tests/test_protocols_xmipp_movies.py +229 -0
- xmipp3/legacy/viewers/viewer_angular_resolution_alignment.py +148 -0
- xmipp3/legacy/viewers/viewer_deep_align.py +121 -0
- xmipp3/legacy/viewers/viewer_metaprotocol_golden_highres.py +140 -0
- xmipp3/legacy/viewers/viewer_mltomo.py +297 -0
- xmipp3/legacy/viewers/viewer_solid_angles.py +91 -0
- xmipp3/legacy/viewers/viewer_split_volume.py +57 -0
- xmipp3/protocols/__init__.py +1 -2
- xmipp3/protocols/protocol_align_volume.py +34 -8
- xmipp3/protocols/protocol_apply_alignment.py +1 -1
- xmipp3/protocols/protocol_apply_tilt_to_ctf.py +2 -3
- xmipp3/protocols/protocol_apply_zernike3d.py +2 -1
- xmipp3/protocols/protocol_assignment_tilt_pair.py +1 -2
- xmipp3/protocols/protocol_center_particles.py +1 -1
- xmipp3/protocols/protocol_cl2d.py +1 -2
- xmipp3/protocols/protocol_cl2d_align.py +1 -1
- xmipp3/protocols/protocol_cl2d_clustering.py +1 -1
- xmipp3/protocols/protocol_classify_pca.py +25 -9
- xmipp3/protocols/protocol_classify_pca_streaming.py +67 -42
- xmipp3/protocols/protocol_compute_likelihood.py +368 -0
- xmipp3/protocols/protocol_consensus_local_ctf.py +1 -1
- xmipp3/protocols/protocol_convert_pdb.py +9 -1
- xmipp3/protocols/protocol_create_gallery.py +1 -1
- xmipp3/protocols/protocol_ctf_consensus.py +14 -8
- xmipp3/protocols/protocol_ctf_correct_wiener2d.py +1 -1
- xmipp3/protocols/protocol_ctf_micrographs.py +1 -1
- xmipp3/protocols/protocol_deep_center_predict.py +10 -1
- xmipp3/protocols/protocol_deep_hand.py +19 -2
- xmipp3/protocols/protocol_deep_micrograph_screen.py +1 -1
- xmipp3/protocols/protocol_extract_asymmetric_unit.py +1 -1
- xmipp3/protocols/protocol_extract_particles.py +22 -10
- xmipp3/protocols/protocol_extract_particles_movies.py +1 -1
- xmipp3/protocols/protocol_extract_particles_pairs.py +1 -1
- xmipp3/protocols/protocol_flexalign.py +3 -4
- xmipp3/protocols/protocol_helical_parameters.py +1 -4
- xmipp3/protocols/protocol_movie_alignment_consensus.py +122 -40
- xmipp3/protocols/protocol_movie_dose_analysis.py +79 -82
- xmipp3/protocols/protocol_movie_max_shift.py +6 -2
- xmipp3/protocols/protocol_movie_split_frames.py +165 -88
- xmipp3/protocols/protocol_particle_pick_automatic.py +1 -2
- xmipp3/protocols/protocol_particle_pick_consensus.py +7 -0
- xmipp3/protocols/protocol_particle_pick_pairs.py +1 -1
- xmipp3/protocols/protocol_phantom_create.py +1 -1
- xmipp3/protocols/protocol_pick_noise.py +1 -1
- xmipp3/protocols/protocol_postProcessing_deepPostProcessing.py +5 -5
- xmipp3/protocols/protocol_preprocess/protocol_crop_resize.py +3 -2
- xmipp3/protocols/protocol_preprocess/protocol_filter.py +2 -2
- xmipp3/protocols/protocol_preprocess/protocol_image_operate.py +2 -2
- xmipp3/protocols/protocol_preprocess/protocol_mask.py +1 -1
- xmipp3/protocols/protocol_preprocess/protocol_preprocess.py +6 -4
- xmipp3/protocols/protocol_preprocess/protocol_process.py +20 -7
- xmipp3/protocols/protocol_preprocess_micrographs.py +3 -2
- xmipp3/protocols/protocol_projmatch/projmatch_steps.py +1 -1
- xmipp3/protocols/protocol_projmatch/protocol_projmatch.py +1 -1
- xmipp3/protocols/protocol_random_conical_tilt.py +1 -2
- xmipp3/protocols/protocol_ransac.py +41 -37
- xmipp3/protocols/protocol_reconstruct_fourier.py +5 -1
- xmipp3/protocols/protocol_reconstruct_highres.py +13 -7
- xmipp3/protocols/protocol_reconstruct_significant.py +14 -21
- xmipp3/protocols/protocol_resolution3d.py +1 -1
- xmipp3/protocols/protocol_resolution_deepres.py +1 -1
- xmipp3/protocols/protocol_resolution_directional.py +1 -1
- xmipp3/protocols/protocol_resolution_fso.py +1 -1
- xmipp3/protocols/protocol_resolution_monogenic_signal.py +19 -4
- xmipp3/protocols/protocol_rotate_volume.py +1 -1
- xmipp3/protocols/protocol_screen_deepConsensus.py +25 -5
- xmipp3/protocols/protocol_shift_volume.py +1 -1
- xmipp3/protocols/protocol_simulate_ctf.py +5 -3
- xmipp3/protocols/protocol_structure_map.py +9 -1
- xmipp3/protocols/protocol_subtract_projection.py +25 -10
- xmipp3/protocols/protocol_tilt_analysis.py +3 -3
- xmipp3/protocols/protocol_validate_fscq.py +2 -2
- xmipp3/protocols/protocol_validate_nontilt.py +1 -1
- xmipp3/protocols/protocol_volume_adjust_sub.py +8 -4
- xmipp3/protocols/protocol_volume_deform_zernike3d.py +1 -1
- xmipp3/protocols/protocol_volume_local_sharpening.py +1 -1
- xmipp3/protocols/protocol_volume_strain.py +1 -1
- xmipp3/protocols.conf +1 -3
- xmipp3/tests/test_protocol_likelihood.py +240 -0
- xmipp3/tests/test_protocol_split_frames.py +136 -0
- xmipp3/tests/test_protocol_validate_fscq.py +2 -2
- xmipp3/tests/test_protocols_highres.py +44 -5
- xmipp3/tests/test_protocols_xmipp_2d.py +1 -48
- xmipp3/tests/test_protocols_xmipp_mics.py +20 -16
- xmipp3/tests/test_protocols_xmipp_movies.py +4 -4
- xmipp3/version.py +5 -5
- xmipp3/viewers/__init__.py +1 -1
- xmipp3/viewers/viewer_LL_matrix.py +273 -0
- xmipp3/viewers/viewer_deep_consensus.py +1 -7
- xmipp3/viewers/viewer_dose_analysis.py +18 -2
- xmipp3/viewers/viewer_resolution_fso.py +18 -6
- xmipp3/viewers/viewer_structure_map.py +53 -11
- xmipp3/wizards.py +3 -2
- xmipp3/xmipp_logo_devel.png +0 -0
- scipion_em_xmipp-24.12.2.dist-info/RECORD +0 -210
- {scipion_em_xmipp-24.12.2.dist-info → scipion_em_xmipp-25.6.1.dist-info}/LICENSE +0 -0
- {scipion_em_xmipp-24.12.2.dist-info → scipion_em_xmipp-25.6.1.dist-info}/top_level.txt +0 -0
- /xmipp3/{protocols → legacy/protocols}/protocol_enrich.py +0 -0
- /xmipp3/{protocols → legacy/protocols}/protocol_screen_deeplearning.py +0 -0
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: scipion-em-xmipp
|
|
3
|
-
Version:
|
|
4
|
-
Summary: Plugin to use Xmipp programs within the Scipion framework
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Keywords: scipion
|
|
10
|
-
|
|
3
|
+
Version: 25.6.1
|
|
4
|
+
Summary: Plugin to use Xmipp programs within the Scipion framework.
|
|
5
|
+
Author-email: Oier Lauzirika Zarrabeitia <oierlauzi@bizkaia.eu>, Alberto Garcia Mena <alberto.garcia@cnb.csic.es>, Carlos Oscar Sanchez Sorzano <coss@cnb.csic.es>
|
|
6
|
+
License: GNU General Public License v3 (GPLv3)
|
|
7
|
+
Project-URL: Homepage, https://github.com/I2PC/scipion-em-xmipp
|
|
8
|
+
Project-URL: Issues, https://github.com/I2PC/scipion-em-xmipp/issues
|
|
9
|
+
Keywords: scipion electron-microscopy cryo-em structural-biology image-processing scipion-3.0
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
11
13
|
Requires-Dist: scipion-pyworkflow>=3.0.31
|
|
12
14
|
Requires-Dist: scikit-learn>=1.2
|
|
13
15
|
Requires-Dist: scikit-image
|
|
@@ -34,5 +36,3 @@ The latter is only for those who intended to develop the Xmipp plugin.
|
|
|
34
36
|
For **developers**, we strongly recommend to follow the guide on
|
|
35
37
|
[how to install xmipp-bundle](https://github.com/i2pc/xmipp#xmipp-as-a-standalone-bundle-for-developers)
|
|
36
38
|
in order to get a complet Xmipp's development ecosystem.
|
|
37
|
-
|
|
38
|
-
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
xmipp3/__init__.py,sha256=x1aoX3RaunI-nRMtGoSP_PFb_UmJIFFTxtYbSD4ulRM,13179
|
|
2
|
+
xmipp3/base.py,sha256=ehZ6iRN1EpZHU_XTmonvoFpDf7xY_1tfPOHDB90KgCk,21294
|
|
3
|
+
xmipp3/bibtex.py,sha256=YZjuuB_9RC4QOOy5r86cRX3ze2EWz43iGzIDQvtu5HQ,28310
|
|
4
|
+
xmipp3/checkProtocolsConf.py,sha256=eJhADp1lv3Mdwe5yYdsVJcVzjelUCqoLHs43XSGzrDo,4428
|
|
5
|
+
xmipp3/constants.py,sha256=SjO3ViST8YrLIn49QqymQNrNwzM1wzG9VOupvnyM-_U,3953
|
|
6
|
+
xmipp3/programs.py,sha256=yrMD0EHEq5j_ODCeINbaCp4CEqSgkmioan1O1mAgPY0,11968
|
|
7
|
+
xmipp3/protocols.conf,sha256=rqtLT-tHUh2L8AyQl3BAk5A926MyRwVEVAKprvByiEQ,14988
|
|
8
|
+
xmipp3/utils.py,sha256=JKuEdR40rn6pdm0puwsgzItbNnrFL4sa7pBymVtRzLM,9125
|
|
9
|
+
xmipp3/version.py,sha256=3xcOfVaQaeACLrBm9CF1PrOSgSL9GYkCXs4oZUH9OTw,1803
|
|
10
|
+
xmipp3/wizards.py,sha256=IgT3uCiOYBLOkhX7GWdKcwHOPyZD783HQG0jSjdovRk,20452
|
|
11
|
+
xmipp3/xmipp_logo.png,sha256=ggrFNUy5UEBjvKfNvu0T14Kzolnhc-ij9AQ734R27MY,84496
|
|
12
|
+
xmipp3/xmipp_logo_devel.png,sha256=IQI1XWogTHbJ5UClpatiNcZfwZB7U3zWG3oThpXOvmc,749745
|
|
13
|
+
xmipp3/convert/__init__.py,sha256=y231wRpfDySMgyjLi6xYuO3hTG1NZBNnMRT7dNnYqu8,1211
|
|
14
|
+
xmipp3/convert/convert.py,sha256=fcFljt804tFRjAWPWaGNktq5oz1jpdLOV3R59odhGCs,63249
|
|
15
|
+
xmipp3/convert/dataimport.py,sha256=ssmMLKU1qXDuqjStNJv-zfYNJAJ-0k7EzNyF4jf91IU,13292
|
|
16
|
+
xmipp3/convert/io_coordinates.py,sha256=ZUKEbL7DjJ0jDVJzs2Nnc-sX7QYuAyGSponhP6WYMDI,1963
|
|
17
|
+
xmipp3/legacy/protocols/protocol_angular_resolution_alignment.py,sha256=EsKm1PfGkkpnzoKuhZqM-e1_99_XVtIBOIGhlgg45qM,8521
|
|
18
|
+
xmipp3/legacy/protocols/protocol_apply_deformation_zernike3d.py,sha256=rlRxaTNmp8X0WBNwBZNF_QTCS38WnUzBtg1M25_aNOo,5673
|
|
19
|
+
xmipp3/legacy/protocols/protocol_classification_gpuCorr.py,sha256=oiyTNfVp5GNgQD8hJsUl93N_jiEEvTdWAPhIYWBNKhE,37013
|
|
20
|
+
xmipp3/legacy/protocols/protocol_classification_gpuCorr_full.py,sha256=cnRykHISyHmUXLKWLZLBr6rXP5RZQ01loj7PsdWKp0A,40366
|
|
21
|
+
xmipp3/legacy/protocols/protocol_classification_gpuCorr_semi.py,sha256=7_i1GX6Ty5upG_deW_C2CgD0MOd_3ZdLxgOC8oxXRuA,18244
|
|
22
|
+
xmipp3/legacy/protocols/protocol_classify_kmeans2d.py,sha256=6yZz3o2dooZmo-83vHcT5Pu9Y2p_eA6oKrJuWc7m7D0,12438
|
|
23
|
+
xmipp3/legacy/protocols/protocol_deep_align.py,sha256=61Ju9mgKLB9Sk07KkwH3D932xP137kVsA-ca_9lnDHM,37232
|
|
24
|
+
xmipp3/legacy/protocols/protocol_deep_denoising.py,sha256=z7lkqP8AylC1NMbHkGORUKLAiS9DAffInaZUpbYAAVo,21324
|
|
25
|
+
xmipp3/legacy/protocols/protocol_enrich.py,sha256=pymPJpNAHUNtECe89-pdzcVmkdNbVN7kp1PGz9NgwYg,25080
|
|
26
|
+
xmipp3/legacy/protocols/protocol_kmeans_clustering.py,sha256=VKQ3IRRvKMozBSSWb8dRBmoeGbsKjYgqZmuez1XAEWA,5664
|
|
27
|
+
xmipp3/legacy/protocols/protocol_metaprotocol_create_output.py,sha256=-f_-TQodTDufYkhVzQCt8d4h55fKdRjUJzHvSH7s4Ns,6121
|
|
28
|
+
xmipp3/legacy/protocols/protocol_metaprotocol_create_subset.py,sha256=Z1dg0H88x00b2W47Ta7qASbDND-zXyDKQnZ2dN2UPw4,3915
|
|
29
|
+
xmipp3/legacy/protocols/protocol_metaprotocol_discrete_heterogeneity_scheduler.py,sha256=ltSu3oulzA4AMUKsM_xOVnm_0JhCRyCRdiOBEA88pbk,24989
|
|
30
|
+
xmipp3/legacy/protocols/protocol_metaprotocol_golden_highres.py,sha256=CY0Ny_rURd48Mysxaz4nh6lHNiCnpYFb-UBWk3VFmg4,32782
|
|
31
|
+
xmipp3/legacy/protocols/protocol_mltomo.py,sha256=-YStZKA-mFFqe3OSp1mRT_f8lzolUhFh0LP0D3QUmRk,26773
|
|
32
|
+
xmipp3/legacy/protocols/protocol_movie_average.py,sha256=O8tUoI9BwvS_Ux_diH6vCaRrartDghAGDwyxRw0V_v0,9343
|
|
33
|
+
xmipp3/legacy/protocols/protocol_movie_opticalflow.py,sha256=js8Tk6MR47T7wlCkQn2dUb9iQu79UWOnWfEwqNNsZrw,18059
|
|
34
|
+
xmipp3/legacy/protocols/protocol_particle_boxsize.py,sha256=9Bx2kEgbvO7BSBxSPmJdsw0CnofuG9AZ0ot3JThs5q8,5568
|
|
35
|
+
xmipp3/legacy/protocols/protocol_reconstruct_heterogeneous.py,sha256=ZihlCUe16UivbOH_7b9tz7r-EZtxFOCj2zwbgY8PAJk,54406
|
|
36
|
+
xmipp3/legacy/protocols/protocol_rotational_spectra.py,sha256=ClQLI_PDM6010vM2LJ3MbycLLDFKXhRPgVEUIZA1xnE,9324
|
|
37
|
+
xmipp3/legacy/protocols/protocol_screen_deeplearning.py,sha256=nrhfzoTWPWULTrDDnUD1ELCC_cCrS5-3yaxTBSBsOAY,17530
|
|
38
|
+
xmipp3/legacy/protocols/protocol_solid_angles.py,sha256=taET1k3d0v-mUi2fq4cUn8AvWygg7IqMfoGma67Dm5Y,29287
|
|
39
|
+
xmipp3/legacy/protocols/protocol_split_volume.py,sha256=4yfrx8BKzMszgZijqJ3iEAHD66DWlVNm4rwWwwsvhTE,5928
|
|
40
|
+
xmipp3/legacy/protocols/protocol_split_volume_hierarchical_cluster.py,sha256=2e6fYYz-bJ3i7c15Ds2ucu-m43LYLNZNqCqw-f8ozB4,40429
|
|
41
|
+
xmipp3/legacy/protocols/protocol_subtract_projection.py,sha256=Pt4rDK8aHeIhJwdg1uEFCg27L7o3U4v_ugv3fpH3BAg,11320
|
|
42
|
+
xmipp3/legacy/tests/test_protocol_deep_denoising.py,sha256=kgqmGy-kBhkskCkjk-FMFTPf0hCrzKDdS8JKKIiGlyE,2815
|
|
43
|
+
xmipp3/legacy/tests/test_protocols_angular_resolution_alignment.py,sha256=pVhSBXI4vs025a0LYI8sogFDWPz9uOlC5wuLpqcViBE,3874
|
|
44
|
+
xmipp3/legacy/tests/test_protocols_gpuCorr_classifier.py,sha256=Pkwri9EnsB9EVf07cVB-eq3KZOSAP_MxiugFbBsYQwI,6328
|
|
45
|
+
xmipp3/legacy/tests/test_protocols_gpuCorr_fullStreaming.py,sha256=_-yfg9T3mTV8zwJyaskHhZHGhnGS9-rBq8c5U7yT4zI,6709
|
|
46
|
+
xmipp3/legacy/tests/test_protocols_gpuCorr_semiStreaming.py,sha256=4yW9l1o6VwOFk4wO6dOJjAUytFka5YdGhnhJv6Qrldk,2836
|
|
47
|
+
xmipp3/legacy/tests/test_protocols_metaprotocol_golden_highres.py,sha256=T5H6NuzvFIBFTj7y3Pq5OfkNMrrTmqK5KxSoHLyEJIY,4034
|
|
48
|
+
xmipp3/legacy/tests/test_protocols_metaprotocol_heterogeneity.py,sha256=JWVKPp881lhac2Z-9tnPGTxKSTL0Pna6uI7RerMVYMc,3276
|
|
49
|
+
xmipp3/legacy/tests/test_protocols_mixed_movies.py,sha256=4ao-hu9kk4B8LWwWVJedGcpFfzysb2p6Gr8mgP2DoD4,6225
|
|
50
|
+
xmipp3/legacy/tests/test_protocols_solid_angles.py,sha256=vJ5hrZqRYfPrp9bP9SYLDqzVO__kL6AjAOBJOeajJR0,6985
|
|
51
|
+
xmipp3/legacy/tests/test_protocols_subtract_projection.py,sha256=eJXuL_Z5CYVdSg5jX_wC2_xZWdt66HclGyzo9NQGVSc,46216
|
|
52
|
+
xmipp3/legacy/tests/test_protocols_xmipp_movies.py,sha256=8cQ_OJoUjzlEKcDuXHmyoMXLa60DI_5S_psoGtRdxkA,9610
|
|
53
|
+
xmipp3/legacy/viewers/viewer_angular_resolution_alignment.py,sha256=9DCZ94TAedHltvlKf99BEFtgFuoMisKipMwubPn82lU,5155
|
|
54
|
+
xmipp3/legacy/viewers/viewer_deep_align.py,sha256=yCYVQq28r1pGbe4Ss_s5Ki65NTbkL71RUb78ny1EHuo,5621
|
|
55
|
+
xmipp3/legacy/viewers/viewer_metaprotocol_golden_highres.py,sha256=PwfPMwTo4z_4Fzc-fBV7VLf4RswvMwoF9vlAqd1o9uI,5373
|
|
56
|
+
xmipp3/legacy/viewers/viewer_mltomo.py,sha256=IjSnHQqkZCG45C6B560HV7flW1OGUr2OugGuECs_Zsk,12178
|
|
57
|
+
xmipp3/legacy/viewers/viewer_solid_angles.py,sha256=S2QANz-8VdoK_8kKTYtkhI6SkPQyRuiPkMaz2bQJCIY,3970
|
|
58
|
+
xmipp3/legacy/viewers/viewer_split_volume.py,sha256=4rmH0ixpNS1eR_FLgmD5lgo4IUmqTPNST7_-wLMHkj4,2146
|
|
59
|
+
xmipp3/protocols/__init__.py,sha256=G_LBrSRvKGK4aVXMWY1P3hC3mwBWiAU-JmeI_31yE04,8359
|
|
60
|
+
xmipp3/protocols/protocol_align_volume.py,sha256=C7FxrmwWxN_L2eX8BaP9hkvKcuKLZo1W88IswtGyh8U,20398
|
|
61
|
+
xmipp3/protocols/protocol_align_volume_and_particles.py,sha256=g5dpZfq_iggeTFt2-3iGvc8zFQY_5EaiBg0gycEKPLw,10735
|
|
62
|
+
xmipp3/protocols/protocol_analyze_local_ctf.py,sha256=O1_xWXuKDRGvhhd-BQ1DRMKti_KDqNN_kALzUhvN3DQ,7446
|
|
63
|
+
xmipp3/protocols/protocol_angular_graph_consistency.py,sha256=aK-59_JQ849_-drD_R5NjhW9lSwy0-4WtB0Ig5UyLgQ,30300
|
|
64
|
+
xmipp3/protocols/protocol_apply_alignment.py,sha256=M4bR36OxWryyhwHeQOBNrrLngw-CVnT5_4DX48bivoE,6119
|
|
65
|
+
xmipp3/protocols/protocol_apply_tilt_to_ctf.py,sha256=xEBtcn4SOBQIzPxBy0CMsVmiYMNNqJn_BywvREgFTjc,5436
|
|
66
|
+
xmipp3/protocols/protocol_apply_transformation_matrix.py,sha256=TJJ7IQK_FM_-3488iBCH6JQSnBLBhPg78mYXN2E2PAk,4891
|
|
67
|
+
xmipp3/protocols/protocol_apply_zernike3d.py,sha256=S1Rdw-JuE279iqfWZZqWtENc59LFCecxrkFQ9PX7iBI,10639
|
|
68
|
+
xmipp3/protocols/protocol_assignment_tilt_pair.py,sha256=A1RtvoWVURIk-K8KykT0mIKNMR7UXTQKrHOkDTCbAUw,10403
|
|
69
|
+
xmipp3/protocols/protocol_break_symmetry.py,sha256=OZvOOsyFMX-pdk69rYo546AxvRZtRFs0GmuT9Vkv6mc,6183
|
|
70
|
+
xmipp3/protocols/protocol_center_particles.py,sha256=XZoeqPJXHwiahvrNBptSChyjh9i03JnWC9_Z0EIG36w,11323
|
|
71
|
+
xmipp3/protocols/protocol_cl2d.py,sha256=DcZS9gvSSDrTbYOkZRT8HD4VFloEe_9TnR0AKDz4ikU,27586
|
|
72
|
+
xmipp3/protocols/protocol_cl2d_align.py,sha256=vzOWv3UcMCQEYvOBNXQTDM6TNbFaGSul5IumWpo2K5M,8430
|
|
73
|
+
xmipp3/protocols/protocol_cl2d_clustering.py,sha256=og3YHWD-MmZF6c0KtjTJyWkVqSPeevMptGC1uaLdVxw,13428
|
|
74
|
+
xmipp3/protocols/protocol_classes_2d_mapping.py,sha256=oq6me8X4v4qFJt-GtJ4S1y64qkPCmUVWHkfMgK8XCcA,18032
|
|
75
|
+
xmipp3/protocols/protocol_classify_pca.py,sha256=qZ4KRvVRlW717zN7BIwu6VIaErwbBpj4aqJ9IruzR6Y,21272
|
|
76
|
+
xmipp3/protocols/protocol_classify_pca_streaming.py,sha256=MD7LmJPEoXYyRux-vBBup1rPeBnGIZIQ5N2Pe1eSGQI,23238
|
|
77
|
+
xmipp3/protocols/protocol_compare_angles.py,sha256=NIoQjym4aH3BsMJ7RaMmyswEl9gHkxMnnkQQJdAQaCw,8034
|
|
78
|
+
xmipp3/protocols/protocol_compare_reprojections.py,sha256=HNoQtRT_k0MslTbGWBVQfi9M3Sz2QMZmSMinFGCI1uI,31253
|
|
79
|
+
xmipp3/protocols/protocol_compute_likelihood.py,sha256=FI3t-oweSeurs-sX6KW38rq_ndNkWdp91Gaj2V5fv3M,16672
|
|
80
|
+
xmipp3/protocols/protocol_consensus_classes.py,sha256=En9qEsEpkRqXE0BUOHvJI8b6VTrsZfpgd2x2GTj32eU,24604
|
|
81
|
+
xmipp3/protocols/protocol_consensus_local_ctf.py,sha256=ws-CHWd1omLJB0Pkan240rOh8zW3HIzEuUAo6qKPMdI,10066
|
|
82
|
+
xmipp3/protocols/protocol_convert_pdb.py,sha256=Kv3GVWP1wnPcNhh6q80eD-S82N-KhLjE-_fcHJDvbMo,16674
|
|
83
|
+
xmipp3/protocols/protocol_core_analysis.py,sha256=Bt2cgf4PGZB_HjmthRtdIQGT7ri-pV5vNRChm07oHB4,9919
|
|
84
|
+
xmipp3/protocols/protocol_create_gallery.py,sha256=80FMOW9ayhB_bGdXn8LNO7n6JmTb1w0heLoM14AcXg4,8750
|
|
85
|
+
xmipp3/protocols/protocol_ctf_consensus.py,sha256=PAMa5pIa35TDRWwaMZJHiy_GkI7fKhN_DZiDu23Lgus,39770
|
|
86
|
+
xmipp3/protocols/protocol_ctf_correct_wiener2d.py,sha256=VsgUUq0AgvYqfTCO9Gmh9IvsFdXzZZ2gntrnlIV1qRA,6105
|
|
87
|
+
xmipp3/protocols/protocol_ctf_defocus_group.py,sha256=6x_UHiuA9WfPBhd_8rfg09Cy_j4pr6o5RCWTMMz-DPo,8333
|
|
88
|
+
xmipp3/protocols/protocol_ctf_micrographs.py,sha256=VzMgMBrVzTsg_JIgAYhWR91z0KH_ABBqIrNm-UFOCSo,29288
|
|
89
|
+
xmipp3/protocols/protocol_deep_center.py,sha256=JK7ojXWyGhEA6t_KmRdq3vqilkBVMWk_c7Kndj_MG_Y,6796
|
|
90
|
+
xmipp3/protocols/protocol_deep_center_predict.py,sha256=F45luJp8MTGwmqenTagZJKfeatwyt-k7YnvnjmTvAFk,7183
|
|
91
|
+
xmipp3/protocols/protocol_deep_hand.py,sha256=JlzndftDjPbgAYNHSVSv5ZQCOnZFCC1SxDm8kwfbn10,7778
|
|
92
|
+
xmipp3/protocols/protocol_deep_micrograph_screen.py,sha256=9B9BDIgcO8escgW4H6Nnl4tqOVIQVaoxb26gBCYm6eU,22231
|
|
93
|
+
xmipp3/protocols/protocol_denoise_particles.py,sha256=_FDzQ4JlNU5_RadEq0F9TfUA8H2jvDi-0pXHcTXDkOQ,7689
|
|
94
|
+
xmipp3/protocols/protocol_eliminate_empty_images.py,sha256=Xil4A_zuprSZ_LjZc79CEKib2-MrUZzxyN5bDLaYaSo,22399
|
|
95
|
+
xmipp3/protocols/protocol_extract_asymmetric_unit.py,sha256=y4hgaJD9guycpMDtcXru9fEfGF6o6Y29-evJHDRqHFY,8530
|
|
96
|
+
xmipp3/protocols/protocol_extract_particles.py,sha256=GtQD_YWyzlybUfZUQVQeOpodY5o8Gn0UdrOG9Uet_QQ,27556
|
|
97
|
+
xmipp3/protocols/protocol_extract_particles_movies.py,sha256=uq5NtTvqe-ewFjIAaD3lN2RTaaPUgPbfjAiqnpwl13s,23298
|
|
98
|
+
xmipp3/protocols/protocol_extract_particles_pairs.py,sha256=Z9U_xUHZOFkOdehiK7ylG48vJsfyqebDb94avTnJ4WI,29354
|
|
99
|
+
xmipp3/protocols/protocol_flexalign.py,sha256=MfRQ2RiXkSo6aMvx86bW45w4xzrD6obClz49Xlo_0kE,18900
|
|
100
|
+
xmipp3/protocols/protocol_generate_reprojections.py,sha256=iOTrZBWGwxLAytfY1WHDDf3UxNuOHTv_DjNja3Txoco,9788
|
|
101
|
+
xmipp3/protocols/protocol_helical_parameters.py,sha256=1ncxq9xyNk1UwNOpz6gOf4E5BSODwM416Z0e8NABHtg,10031
|
|
102
|
+
xmipp3/protocols/protocol_kerdensom.py,sha256=dwJB8Gs1lynymNjBRVvDbGJpz9p2dRsoTgkT-1B08Fs,12393
|
|
103
|
+
xmipp3/protocols/protocol_local_ctf.py,sha256=Kv9vKC6KCt_fgiF5a-4ivKeetFQGMq05jH3vHMTLLFw,8110
|
|
104
|
+
xmipp3/protocols/protocol_mics_defocus_balancer.py,sha256=eYFS65J0ft_88Ggy7xCcvWmp5UJpEADKKbpfyc7lHxo,13174
|
|
105
|
+
xmipp3/protocols/protocol_ml2d.py,sha256=fOkDGOADXgMxT_GeDEf2b7F8W2GdNP8ZFCTM7DEKUxk,17214
|
|
106
|
+
xmipp3/protocols/protocol_movie_alignment_consensus.py,sha256=GA5cGYKD-txUUBV1FWLr8cOtW2nIAfN7GyjGsFcTKDw,29845
|
|
107
|
+
xmipp3/protocols/protocol_movie_dose_analysis.py,sha256=noyrxzJMKq6mJtANh6SJsVmAV406kCmnEv_kLOLotPY,21013
|
|
108
|
+
xmipp3/protocols/protocol_movie_gain.py,sha256=JVpYI2ZiPlI5rm1dXHDcXQSavxD6rac3OYgA9Bd4BWU,24967
|
|
109
|
+
xmipp3/protocols/protocol_movie_max_shift.py,sha256=DLM_IBAo74vNgCP95qV26Ftu7bjTX9mDJ8o6632mpwo,20401
|
|
110
|
+
xmipp3/protocols/protocol_movie_split_frames.py,sha256=PSqV1qEgm_i5EhE1kEnnsxfwPxb6JcbtD03mxIJt_ZU,10675
|
|
111
|
+
xmipp3/protocols/protocol_multiple_fscs.py,sha256=Q-F-gZIIk8V8jtMB1DW1R2RbDvXloS0USg6Cy1_Wf5c,6491
|
|
112
|
+
xmipp3/protocols/protocol_multireference_alignability.py,sha256=ILbYwU2rHnibzf5PGSsDGI3hJsDUnn0IzC49pOoG14M,27660
|
|
113
|
+
xmipp3/protocols/protocol_normalize_strain.py,sha256=FrhVITNa_9EkZ_BC53uEVjsOKWcpp0EkFlXvBZJSmgQ,3448
|
|
114
|
+
xmipp3/protocols/protocol_particle_pick.py,sha256=Kk75_SEv12796oOaRL1u80hsNzV1nzFfiOcryAxaT3Y,9784
|
|
115
|
+
xmipp3/protocols/protocol_particle_pick_automatic.py,sha256=m-vuteXAlvS0cFJ4jhqTzQyBfaXsfyStrdvFGcxoPOc,12083
|
|
116
|
+
xmipp3/protocols/protocol_particle_pick_consensus.py,sha256=o84KzFgn4gSohLeQXHeMrwMi3sxbG3JukKxadGDi39c,16903
|
|
117
|
+
xmipp3/protocols/protocol_particle_pick_pairs.py,sha256=1au6SwRBRSlxEydIIbYbQXCqlZoV3GvqsWuuRw_sjYY,8521
|
|
118
|
+
xmipp3/protocols/protocol_particle_pick_remove_duplicates.py,sha256=v7ts6UZkLUMiYQnrhy2sBEla9wHp6sKDcKppJjyNMoE,5371
|
|
119
|
+
xmipp3/protocols/protocol_phantom_create.py,sha256=4taYHFbWZz8ysAgbU59_f9nYi5rUJtOkmQ80cz5O7BI,3664
|
|
120
|
+
xmipp3/protocols/protocol_pick_noise.py,sha256=YtrCLU-3VWp8jn66_7ai1cCI2q83fdbUVGZlWZtJ4lw,7592
|
|
121
|
+
xmipp3/protocols/protocol_postProcessing_deepPostProcessing.py,sha256=7v25bFDHloCqSAcpU4cSjGn71PwTYIlf_DWhWwCm0ic,15183
|
|
122
|
+
xmipp3/protocols/protocol_preprocess_micrographs.py,sha256=cLLyfIs71xXNrM1j5CEssfIvJKWGQaRrjrKnYwVew58,24281
|
|
123
|
+
xmipp3/protocols/protocol_random_conical_tilt.py,sha256=QFXQ80xs1ga7Bh5vYKDi91-YICUDHiDf56taARohlUc,17203
|
|
124
|
+
xmipp3/protocols/protocol_ransac.py,sha256=-5380dpVAEM8kIj0Hg-H0tNed_1gwW1GMZw80GsdQ9w,29247
|
|
125
|
+
xmipp3/protocols/protocol_reconstruct_fourier.py,sha256=AuRVShI3JMCw0kWkRtrSj7o9wmmaKn_pfY0SDk1KXjE,13723
|
|
126
|
+
xmipp3/protocols/protocol_reconstruct_highres.py,sha256=BYfFyzCCau6og066v-530aDbQ15nKD9-y_LHQTKKMug,108551
|
|
127
|
+
xmipp3/protocols/protocol_reconstruct_significant.py,sha256=F-44KGVzhWa2eRWtz5eFPeLkfWbwo4EfiUmNbdZRYn4,26124
|
|
128
|
+
xmipp3/protocols/protocol_reconstruct_swarm.py,sha256=z_g7HJ6Ix_Ov3zCzLnqkJuPb3vKq82UYCpB87Cles_E,30163
|
|
129
|
+
xmipp3/protocols/protocol_resolution3d.py,sha256=cJQ7gtlpPAlPsRF5xV3-MOImLBmZeg_lnS4O1aPqzio,10453
|
|
130
|
+
xmipp3/protocols/protocol_resolution_bfactor.py,sha256=IZzSZ0hJmYynghUqgReJ-h5dxOIEBkUEeBWLPlCZSx8,8006
|
|
131
|
+
xmipp3/protocols/protocol_resolution_deepres.py,sha256=MsO_hLaO79p7ubtvfoG7utKJSZQZMVu5_wBTwS7JteI,17041
|
|
132
|
+
xmipp3/protocols/protocol_resolution_directional.py,sha256=WXa2ATBxqDp9n8tTEyOcVZVcz6q95hlbiwhR_JwljhE,13035
|
|
133
|
+
xmipp3/protocols/protocol_resolution_fso.py,sha256=qFYhERlFv9fL3XV1cqaIEFiLfhWmRb4osv5KtgdERmE,8938
|
|
134
|
+
xmipp3/protocols/protocol_resolution_monogenic_signal.py,sha256=JDgww9y2FgXF7cFe_eoHlHG7lTwzUFuXeIunUMBkgHE,17785
|
|
135
|
+
xmipp3/protocols/protocol_rotate_volume.py,sha256=qh6-5WRVm4ccL8UoLsXCKNu5q1BHqmVR2tQ6RomipcY,4477
|
|
136
|
+
xmipp3/protocols/protocol_rotational_symmetry.py,sha256=hpBuxzj54aGa283Zr3J18mMGrM1cj-3Wu3ihyh1CsVU,8326
|
|
137
|
+
xmipp3/protocols/protocol_screen_deepConsensus.py,sha256=iraI6DCZhwuxidzvV9R533NFJHhLtSuGp4vzy05C3OU,88733
|
|
138
|
+
xmipp3/protocols/protocol_screen_particles.py,sha256=bxKG3AMK77opsr1FAR2MX4qTp2h7d3sXIqT2CCfJm34,21123
|
|
139
|
+
xmipp3/protocols/protocol_shift_particles.py,sha256=S4U1W6E73YaneIIibAaD_-1-2tRbDgZgDJQYdpjklyw,8893
|
|
140
|
+
xmipp3/protocols/protocol_shift_volume.py,sha256=XIewovHb2edLkbpG9N5OSNLmisowfR5nOwIa9qL3Vjc,5146
|
|
141
|
+
xmipp3/protocols/protocol_simulate_ctf.py,sha256=fUmCcfFWhd1wN1ciWKhZoopuic_NnJ_zCc2l0UnPTTM,8125
|
|
142
|
+
xmipp3/protocols/protocol_structure_map.py,sha256=DVyBCQUehz45aGprt5HjEY82-AhAkrnh_DRAii-zTyc,8798
|
|
143
|
+
xmipp3/protocols/protocol_structure_map_zernike3d.py,sha256=EY7rV6vSfyxYXH3ed0FTzNsYu87Ph9klYGqlwuc0eyU,22110
|
|
144
|
+
xmipp3/protocols/protocol_subtract_projection.py,sha256=4Cgszp3IMKHhlr7uuDiWVDlaDbnMekJLCzrNT2leGKM,15667
|
|
145
|
+
xmipp3/protocols/protocol_tilt_analysis.py,sha256=wcWfvQSTI2z4cyA5vyreRvhrXWFK70UByvhqFpekOkU,24168
|
|
146
|
+
xmipp3/protocols/protocol_trigger_data.py,sha256=_0eTUdR3X-Wy0D9gs2HFE5YlieMhCnS3_GMLEQB-E8U,16540
|
|
147
|
+
xmipp3/protocols/protocol_validate_fscq.py,sha256=YXZ2wzQcOuFmj8iPabRntmDYxIX93wdH_j_J25wdSHE,26618
|
|
148
|
+
xmipp3/protocols/protocol_validate_nontilt.py,sha256=gjDfF41mtL0EIJNNN0NgYgV9KSjo8hNBYnu-jb2hT9s,16443
|
|
149
|
+
xmipp3/protocols/protocol_validate_overfitting.py,sha256=QYKu8Hi6QwbbEsY5V6Riu7K7PWUpj8oS__ZjobjFe80,25116
|
|
150
|
+
xmipp3/protocols/protocol_volume_adjust_sub.py,sha256=ygzID66bZbm0I-N6QxTDMyiFxUfcCUFCtWcclkE5-4w,17619
|
|
151
|
+
xmipp3/protocols/protocol_volume_consensus.py,sha256=miaQo_ldhwAcFefBjIk32iKFpK0SBvaPaVPviD1eoL8,5626
|
|
152
|
+
xmipp3/protocols/protocol_volume_deform_zernike3d.py,sha256=E-m3oelc7OVwoe-bSK7a2u-3JjtzKu5_lgM5vNkQh8o,10318
|
|
153
|
+
xmipp3/protocols/protocol_volume_local_adjust.py,sha256=XupsyYS92ClxM34d1PYK8W2X9XNpAoJRREkMWth1CU4,6051
|
|
154
|
+
xmipp3/protocols/protocol_volume_local_sharpening.py,sha256=ec3YLsfRm9hH8aWkFKpGtXQEzNmqVK9julvLbrM5xRk,13518
|
|
155
|
+
xmipp3/protocols/protocol_volume_strain.py,sha256=d9EH5iqz7UKzjhCar8StiBjtCfwRXNuzny_LSCZdS9w,6896
|
|
156
|
+
xmipp3/protocols/protocol_write_testC.py,sha256=LfUhtQeT_lsZjw7yHDa0B-m33V-UmfJYMn_fFyruPnc,3288
|
|
157
|
+
xmipp3/protocols/protocol_write_testP.py,sha256=2CaljDnQFTCIq7Jg6OdQjJmWHOOGpLPgdvyaN2E6cbs,4485
|
|
158
|
+
xmipp3/protocols/protocol_preprocess/__init__.py,sha256=pcMVGV30RoFawgvIE1JtD90_5XWQyYCE4wkhyvgP0Ps,2424
|
|
159
|
+
xmipp3/protocols/protocol_preprocess/geometrical_mask.py,sha256=8ZFzffgXlSsth83X_xOBYcFhccZgEKhVsAJhjo7AHpA,15938
|
|
160
|
+
xmipp3/protocols/protocol_preprocess/protocol_add_noise.py,sha256=3gufSX9E5jsL1NgonGuVQH_DJa4-o9pynD6vbr0uuw4,12166
|
|
161
|
+
xmipp3/protocols/protocol_preprocess/protocol_create_mask2d.py,sha256=EHPUzM-iDX7ETUxAE4VSrc2Rq9Isl6dgl7teZQva4CY,4237
|
|
162
|
+
xmipp3/protocols/protocol_preprocess/protocol_create_mask3d.py,sha256=EkEzJJZTBwmMRa5j5jYy22gbIvOESyjGSkxPHgk7Atc,18818
|
|
163
|
+
xmipp3/protocols/protocol_preprocess/protocol_crop_resize.py,sha256=43UOyMjpVmJQN24O6iPHX3-r003Jk5SxvwoxuiH1xXU,25761
|
|
164
|
+
xmipp3/protocols/protocol_preprocess/protocol_filter.py,sha256=UYZw-r5tyu0sauMo1H00leJnAAhMaMsv9nRmQ6bGimU,23565
|
|
165
|
+
xmipp3/protocols/protocol_preprocess/protocol_image_operate.py,sha256=PFBdNr4udHU-PoFpa7fYNGE4G8Dl0YUB7eSKG9-ewqA,17482
|
|
166
|
+
xmipp3/protocols/protocol_preprocess/protocol_mask.py,sha256=ADRalcyCjPFZsyg64RxrWZM_5pI8lJPXfTbYzzj1GhU,12060
|
|
167
|
+
xmipp3/protocols/protocol_preprocess/protocol_movie_resize.py,sha256=WfaQljG1c9UZXd-gaWRdQXeZEplLYZGWxYiuGopaqto,10942
|
|
168
|
+
xmipp3/protocols/protocol_preprocess/protocol_preprocess.py,sha256=M52t9Myl8_AW01kK_pPTsPHl9fpj1ubhIaNeHX7AFjU,40599
|
|
169
|
+
xmipp3/protocols/protocol_preprocess/protocol_process.py,sha256=5ZHTA1K46zm9yB-v5XRhnKVBW9YMu5VOwbW1RcTELRM,8739
|
|
170
|
+
xmipp3/protocols/protocol_projmatch/__init__.py,sha256=fDxNicNXSbBa3WsuFouhk3INxsdQ7mlBhEYNaypFZXw,1278
|
|
171
|
+
xmipp3/protocols/protocol_projmatch/projmatch_form.py,sha256=T6qmARWQoYUbKBiw-pCTOYnoHIOpuf-qyfXVHoBzx9o,36535
|
|
172
|
+
xmipp3/protocols/protocol_projmatch/projmatch_initialize.py,sha256=poaVKWbyt2Bl38XHr9qOCCCRZANALnNzAhbazXgWWz4,10650
|
|
173
|
+
xmipp3/protocols/protocol_projmatch/projmatch_steps.py,sha256=_gGGC_hKz0dWMX9VnW6_ERk-R5va-Ny-MwV3jVk5kDE,34601
|
|
174
|
+
xmipp3/protocols/protocol_projmatch/protocol_projmatch.py,sha256=CA6JPNMR6m9f8cJcdvd7OQkdtUaLVt8TBVwPYoxFhLA,18228
|
|
175
|
+
xmipp3/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
+
xmipp3/tests/test_convert_xmipp.py,sha256=KKzIJgFytgwqGASdQTrPBsn5OTbP0e9WjVFO_mAbmmE,44578
|
|
177
|
+
xmipp3/tests/test_protocol_angular_graph_consistency.py,sha256=SDlQUnXJXtFBke1C-si6SnbCXeA6Dr73hsHLKDyD694,4514
|
|
178
|
+
xmipp3/tests/test_protocol_apply_transformation_matrix.py,sha256=oviulcS710BpL1_SNwj5U7OA9wVZVK5cPLHdN3swukk,4603
|
|
179
|
+
xmipp3/tests/test_protocol_compare_angles.py,sha256=wBldiS1_LJVHfdg4g8LMDfWORR4l5adZsZkj661SgNg,5361
|
|
180
|
+
xmipp3/tests/test_protocol_consensus_classes3D.py,sha256=HLz1X9LuZDRTwhjDI6gqk72qm4Yguxc76BZL_wnxgKw,11006
|
|
181
|
+
xmipp3/tests/test_protocol_ctf_consensus.py,sha256=EtYxHmrHLY1illmjFMNPQJzVhGNgzcbcksr6-NaHA04,9120
|
|
182
|
+
xmipp3/tests/test_protocol_extract_asymmetric_unit.py,sha256=Ya8zy3wuKi10r-_LVwpavYgzVrGy-5M3Gy05MHNmr7M,23298
|
|
183
|
+
xmipp3/tests/test_protocol_likelihood.py,sha256=kn9QLQgbhJH9mFO5zAqe6t5R1vn6DIZrxzJ1o9EojJo,10045
|
|
184
|
+
xmipp3/tests/test_protocol_monodir.py,sha256=nt-5KEzbVAtsNeQ9OOifYSp1kN2N7tZwxtwS1ipbljY,3741
|
|
185
|
+
xmipp3/tests/test_protocol_multiple_fsc.py,sha256=E7rhBJI9qJXAnbuxARK9auwnMxmYtIxS8PVi3TT2yj4,4012
|
|
186
|
+
xmipp3/tests/test_protocol_multireference_alignability.py,sha256=IV-INSzOnwS7avyHWp4kvCr7xkaF_BFrX08YCfwvie0,5825
|
|
187
|
+
xmipp3/tests/test_protocol_reconstruct_fourier.py,sha256=pMkRLLWQaFgaGwA55niU_dKEHDZzjHEcUIXbFHDPuGs,3533
|
|
188
|
+
xmipp3/tests/test_protocol_screen_deepConsensus.py,sha256=r-qNtYkJ5EAVltUZ38mwN_MlEO8ZeqXWCumAbZFMJz8,8003
|
|
189
|
+
xmipp3/tests/test_protocol_simulate_ctf.py,sha256=G1PImqwh0ZEOfpl6RK6xeUqJmWIE2JWQxuSaF0eWmVg,7484
|
|
190
|
+
xmipp3/tests/test_protocol_split_frames.py,sha256=FQA9gmGsRtijiS7KyL02iWzZj7GwFOAS6GkKyFwBSd0,5638
|
|
191
|
+
xmipp3/tests/test_protocol_validate_fscq.py,sha256=Ro5BdE8G9M1PTGbKkNFUZ7BF6nXQ5651lJ_QXaiUI1A,2666
|
|
192
|
+
xmipp3/tests/test_protocol_validate_overfitting.py,sha256=PSFRoARteTABLZxJ4ZuWJUnh34QT2JQ6gekqOTgpG6w,3598
|
|
193
|
+
xmipp3/tests/test_protocols_add_noise.py,sha256=Uc6Kc5KaxXUeX6GedbHV3h7svSQoPrXfbHsqc6J6BQk,5209
|
|
194
|
+
xmipp3/tests/test_protocols_continuousflex.py,sha256=y_WeCm-XiZ5rJS1lx4i0TsGoWNf3TeHwL3RC7vVr_Q4,6940
|
|
195
|
+
xmipp3/tests/test_protocols_deepVolPostprocessing.py,sha256=ZUSkLaR2sRlvZoaWPYwIUmDBC0X5DRy7peRd8EieseY,7143
|
|
196
|
+
xmipp3/tests/test_protocols_deepcenter_predict.py,sha256=OUtfPqeGQcgnP5Epx89t4YuzW0d3XC7iDlsBCaQy7Bk,2952
|
|
197
|
+
xmipp3/tests/test_protocols_deepres.py,sha256=rXc-kAWZ8gGGS7L8e27P-ZPsFo5BPyqZKFl25V7dWII,3635
|
|
198
|
+
xmipp3/tests/test_protocols_fso.py,sha256=CrVAVoBD9UbLVKT21TB0Q-tVnZ7qEsm4zcELzDnN3CU,4274
|
|
199
|
+
xmipp3/tests/test_protocols_highres.py,sha256=RnJjsSdLZtdr09DyXZnpslyJdekoXiLu7TvPfYvzZSk,6505
|
|
200
|
+
xmipp3/tests/test_protocols_local_defocus.py,sha256=XGXZTas0pqhHkKfZEky7a8sqLC14rB8KqoOPD27pzZE,9067
|
|
201
|
+
xmipp3/tests/test_protocols_localdeblur.py,sha256=iKf-CFwts-0yePzuztB8czbQLSYvpxHv2gT89I0RHXc,7300
|
|
202
|
+
xmipp3/tests/test_protocols_monores.py,sha256=FlLhcGUIGrErRh7KKCHo48dB-zrE0i9btLQxTOb-g3U,5023
|
|
203
|
+
xmipp3/tests/test_protocols_realignment_classes.py,sha256=SrMOjTRr46iN69Prhpvyh9kU7VjnxhSCn3FAdBFni9U,6399
|
|
204
|
+
xmipp3/tests/test_protocols_xmipp_2d.py,sha256=2LQXlP3f6cLkg3Cb4X2zzywZbrfgJg82DIp-j1tdmW0,80175
|
|
205
|
+
xmipp3/tests/test_protocols_xmipp_3d.py,sha256=88LUfNyl1OxYdPF9tocn3K_vm3NQ9_9R1grbQhiSMq4,113442
|
|
206
|
+
xmipp3/tests/test_protocols_xmipp_mics.py,sha256=bFZHcPf-tzj0Fc-VWDaOhZaAZcgIr9J_gx5iasY7rJE,61412
|
|
207
|
+
xmipp3/tests/test_protocols_xmipp_movie_resize.py,sha256=XR1gYYZeDhNOkDkZhimPDbqcYwss5z-zbhJ73ZM0a5g,6494
|
|
208
|
+
xmipp3/tests/test_protocols_xmipp_movies.py,sha256=ZO9xuTHY6wHz2-5iRTMHgJ0xWlsvBO1tgZv_XgNIRBs,34528
|
|
209
|
+
xmipp3/tests/test_protocols_zernike3d.py,sha256=bTXCK4wBKSJZK1KCZXec3j8y1mVLoBxE5bF3AGbOsNs,18132
|
|
210
|
+
xmipp3/viewers/__init__.py,sha256=NyHVGW8GTDZ2o1rXW41bqj4XNEo6KcBRoMNktHFAHec,3647
|
|
211
|
+
xmipp3/viewers/plotter.py,sha256=YHDqAs7_rbv8cXMmwmg42YeeBnesdX44awrppX3VJw0,3875
|
|
212
|
+
xmipp3/viewers/viewer.py,sha256=X68yRXVraMmzmoHaccntfuZBVXvnx49hfCsXyBLmlH4,19233
|
|
213
|
+
xmipp3/viewers/viewer_LL_matrix.py,sha256=-Wufv9Se2mLujhRD4OFIX6oJ9KVPpCxbioiXXNFTGBM,11417
|
|
214
|
+
xmipp3/viewers/viewer_analyze_local_ctf.py,sha256=-Oa7flu05KxP8M6AlZRaWKCRqZljRz23Z6Ncz1qDHhw,4866
|
|
215
|
+
xmipp3/viewers/viewer_apply_tilt_to_ctf.py,sha256=GdKDSI1FjcgvKxOrO6BOWPaLrYpMYh2AtXxB3BEK7So,3263
|
|
216
|
+
xmipp3/viewers/viewer_cl2d.py,sha256=7uBU6zYOkhYqjMNWFUPFbMOPsqWja9DaTssp_ju6AXw,8764
|
|
217
|
+
xmipp3/viewers/viewer_cl2d_clustering.py,sha256=PKJbAyi_meEPgSEtOFE9vYusz0WLGaphDGeqee9BbpE,5768
|
|
218
|
+
xmipp3/viewers/viewer_consensus_classes.py,sha256=En4EW8tYDS0NLmGoM9IBz_KM9PoBtDo-AqfVxmUDFeE,5434
|
|
219
|
+
xmipp3/viewers/viewer_ctf_consensus.py,sha256=gosd9D2iuTUHgdlQlHIGS_HBybThR1S8SBfgM096e_8,7669
|
|
220
|
+
xmipp3/viewers/viewer_deepEMHancer.py,sha256=ok5e2NfPeK8Joa0Y7Wp0GQG00Pk7AAG19xOE42A1l6c,5741
|
|
221
|
+
xmipp3/viewers/viewer_deep_consensus.py,sha256=8ebETC_KyoFHFC2s_WRip1h6DxopxCKYuGndYFJaFS4,5232
|
|
222
|
+
xmipp3/viewers/viewer_deep_micrograph_cleaner.py,sha256=gFHOPirTM6-i9bHxCs9Fbkh4GQ9fxc7FINDNib0jkdA,5694
|
|
223
|
+
xmipp3/viewers/viewer_dose_analysis.py,sha256=7NMW68mP6Z1sXY-qPORIQrkECxzFWZ33-Xs45yv4SZQ,5737
|
|
224
|
+
xmipp3/viewers/viewer_eliminate_empty_images.py,sha256=LMDYe4iql1kFOESBbwyClzNezizYKv9a8LHtvlPCboM,7278
|
|
225
|
+
xmipp3/viewers/viewer_extract_asymmetric_unit.py,sha256=fGYqUfrsPLzFDj4UxuVQe8b2AN_I64cruaWBjhnLkU8,7092
|
|
226
|
+
xmipp3/viewers/viewer_local_sharpening.py,sha256=_j_4RZISQjWzrBFmsI88DrNqxbT3Ng1AJRmo0MfdCCk,4408
|
|
227
|
+
xmipp3/viewers/viewer_ml2d.py,sha256=XL1NL8mg-W8TC0fHemD-eR9mHxgUMBnF2d9gwJagC7s,8451
|
|
228
|
+
xmipp3/viewers/viewer_movie_alignment.py,sha256=h2mDRK_hBNN97E5nqvVkTYtgCl8b7MNz181uZMb97qs,6763
|
|
229
|
+
xmipp3/viewers/viewer_normalize_strain.py,sha256=L54CZvxaU9ezu223jgvOSTBn4yYWs2x9q87_3vvHi9k,2804
|
|
230
|
+
xmipp3/viewers/viewer_pdb_deform_zernike3d.py,sha256=g5-ntcOt7841rFFGPRb6NK-wQ2FfbBz2P1E980uENZo,4653
|
|
231
|
+
xmipp3/viewers/viewer_projmatch.py,sha256=j9_1S8hrTUjRL-YeIYdLvxvsTTBjrJR9TyRQN3gG3JY,37619
|
|
232
|
+
xmipp3/viewers/viewer_ransac.py,sha256=hfjj3ySF2hlSIicw6WTezZhau9aaQJNGKYR6nP8VYrE,2445
|
|
233
|
+
xmipp3/viewers/viewer_reconstruct_highres.py,sha256=bDcxUyGU4wlRFdBnfbhMiCLRB8b_C8LqaKkXgX0lg00,13184
|
|
234
|
+
xmipp3/viewers/viewer_resolution3d.py,sha256=AfKbCxLzuJG3pJQLPxNgK86WRSWXrgRSEDNjzbM5Y6E,14152
|
|
235
|
+
xmipp3/viewers/viewer_resolution_bfactor.py,sha256=iknAViynFLy3Sx4fs2DvR9zpLUcxTKCyS9VkhMHb1Vw,4933
|
|
236
|
+
xmipp3/viewers/viewer_resolution_deepres.py,sha256=M1X9wW7V4yU0BaMxezFNSHhfd4Rpj34ruc-tAnO1T5k,8632
|
|
237
|
+
xmipp3/viewers/viewer_resolution_directional.py,sha256=SOnybW40HuMglekNnD-YGF2ZPMXLZuGf-AwmvRUNg98,20322
|
|
238
|
+
xmipp3/viewers/viewer_resolution_fso.py,sha256=CwLUN_w0jeKbn9CBFl_XJn0MTMtfatl6Hz6IlxqbGg4,16206
|
|
239
|
+
xmipp3/viewers/viewer_resolution_monogenic_signal.py,sha256=GCrWKLb9IFVcGY8zKzCNnXWy15T_jPPhM2uZjJ0un8c,11088
|
|
240
|
+
xmipp3/viewers/viewer_structure_map.py,sha256=aBPfzuDAFix7NzucQrT_FLqYxBJVfq6kMnwW3DXjpuY,15910
|
|
241
|
+
xmipp3/viewers/viewer_subtract_projection.py,sha256=UPm_G_CwTUgtgzVMtNCF3NFgnfwxJSy3HmaKYW2WECE,2860
|
|
242
|
+
xmipp3/viewers/viewer_swarm.py,sha256=liXSpVMNqO0YzcexF6hyl8n8V6j2t7yB8D42dHWIazk,2590
|
|
243
|
+
xmipp3/viewers/viewer_validate_fscq.py,sha256=bqb_va-BjTn1LpuyOroCPX3QeL104Kh2TX9faOBTH-E,18209
|
|
244
|
+
xmipp3/viewers/viewer_validate_nontilt.py,sha256=LLmMMXaKg7PbhhRCLAwHpd9wSPjBUSG602Agq_diHck,4078
|
|
245
|
+
xmipp3/viewers/viewer_validate_overfitting.py,sha256=8G7E8Bqs3Rt6IjGMliqNaa5pdvZ8U0QETrvH6GVQpWk,5854
|
|
246
|
+
xmipp3/viewers/viewer_volume_consensus.py,sha256=S7YViiZ9w5xAGhfyj1RnDypVWsQ7PKhHD8WIUAVqpJI,1914
|
|
247
|
+
xmipp3/viewers/viewer_volume_deform_zernike3d.py,sha256=BOeI7go5w2RRwGjV9kPm2U76tVJRaHww1Pl0zUCXQRw,8903
|
|
248
|
+
xmipp3/viewers/viewer_volume_strain.py,sha256=4LQUrceVMB6OaAfTpFXdn3vGv-sXQzUIPDEPELYfasY,2378
|
|
249
|
+
xmipp3/viewers/viewer_volume_subtraction.py,sha256=3RbwJQIaCcdzldrFODLgWlFbCips1450RDVzngLRRoU,5121
|
|
250
|
+
scipion_em_xmipp-25.6.1.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
251
|
+
scipion_em_xmipp-25.6.1.dist-info/METADATA,sha256=mDLbPk7votlQ9eRPh8o9nOuo1vuPa9s1mTy5Ea4OtdI,1941
|
|
252
|
+
scipion_em_xmipp-25.6.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
253
|
+
scipion_em_xmipp-25.6.1.dist-info/entry_points.txt,sha256=9e0I0urUxrUF7LZfZbhoATUnLuGxyJTjj81mP7FhKm8,36
|
|
254
|
+
scipion_em_xmipp-25.6.1.dist-info/top_level.txt,sha256=qnLFoZzwKticb33xgeSAJv3P7nD2nHMTFKYzxAorOOQ,7
|
|
255
|
+
scipion_em_xmipp-25.6.1.dist-info/RECORD,,
|
xmipp3/__init__.py
CHANGED
|
@@ -27,13 +27,12 @@
|
|
|
27
27
|
# **************************************************************************
|
|
28
28
|
|
|
29
29
|
import json
|
|
30
|
+
import re
|
|
30
31
|
from datetime import datetime
|
|
31
32
|
import pwem
|
|
32
33
|
from pyworkflow import Config
|
|
33
34
|
import pyworkflow.utils as pwutils
|
|
34
|
-
from scipion.install.funcs import
|
|
35
|
-
from scipion import __version__ as scipionAppVersion
|
|
36
|
-
from packaging.version import Version
|
|
35
|
+
from scipion.install.funcs import CondaCommandDef
|
|
37
36
|
from .base import *
|
|
38
37
|
from .version import *
|
|
39
38
|
from .constants import XMIPP_HOME, XMIPP_URL, XMIPP_DLTK_NAME, XMIPP_CUDA_BIN, XMIPP_CUDA_LIB, XMIPP_GIT_URL
|
|
@@ -152,21 +151,24 @@ class Plugin(pwem.Plugin):
|
|
|
152
151
|
|
|
153
152
|
# When changing dependencies, increment _currentDepVersion
|
|
154
153
|
CONDA_DEPENDENCIES = [
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
'libjpeg-turbo'
|
|
154
|
+
"'cmake>=3.18,<4'", #cmake-4 is not compatible with Relion compilation
|
|
155
|
+
"hdf5>=1.18",
|
|
156
|
+
"sqlite>=3",
|
|
157
|
+
"fftw>=3",
|
|
158
|
+
"make",
|
|
159
|
+
"zlib",
|
|
160
|
+
"openjdk",
|
|
161
|
+
"libtiff",
|
|
162
|
+
"libstdcxx-ng",
|
|
163
|
+
"libjpeg-turbo",
|
|
166
164
|
]
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
165
|
+
if Config.isCondaInstallation():
|
|
166
|
+
condaEnvPath = os.environ['CONDA_PREFIX']
|
|
167
|
+
scipionEnv=os.path.basename(condaEnvPath) # TODO: use pyworkflow method when released: Config.getEnvName()
|
|
168
|
+
|
|
169
|
+
commands = CondaCommandDef(scipionEnv, cls.getCondaActivationCmd())
|
|
170
|
+
commands.condaInstall('-c conda-forge --yes ' + ' '.join(CONDA_DEPENDENCIES))
|
|
171
|
+
commands.touch("deps_installed.txt")
|
|
170
172
|
env.addPackage(
|
|
171
173
|
'xmippDep', version=_currentDepVersion,
|
|
172
174
|
tar='void.tgz',
|
|
@@ -176,32 +178,41 @@ class Plugin(pwem.Plugin):
|
|
|
176
178
|
)
|
|
177
179
|
|
|
178
180
|
if develMode:
|
|
181
|
+
xmippSrc = 'xmippDev'
|
|
182
|
+
installCommands = [
|
|
183
|
+
(f'cd {pwem.Config.EM_ROOT} && rm -rf {xmippSrc} && '
|
|
184
|
+
f'git clone {XMIPP_GIT_URL} {xmippSrc} && '
|
|
185
|
+
f'cd {xmippSrc} && '
|
|
186
|
+
#f'git checkout {branchTest} && '
|
|
187
|
+
f'./xmipp ', COMPILE_TARGETS)
|
|
188
|
+
]
|
|
189
|
+
|
|
179
190
|
env.addPackage(
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
191
|
+
'xmippDev',
|
|
192
|
+
tar='void.tgz',
|
|
193
|
+
commands=installCommands,
|
|
194
|
+
neededProgs=['git', 'gcc', 'g++', 'cmake', 'make'],
|
|
195
|
+
updateCuda=True,
|
|
196
|
+
default=False
|
|
197
|
+
)
|
|
198
|
+
else:
|
|
199
|
+
xmippSrc = f'xmippSrc-{version._binTagVersion}'
|
|
200
|
+
installCommands = [
|
|
201
|
+
(f'cd .. && rm -rf {xmippSrc} && '
|
|
202
|
+
f'git clone {XMIPP_GIT_URL} {xmippSrc} && '
|
|
203
|
+
f'cd {xmippSrc} && '
|
|
204
|
+
f'git checkout {version._binTagVersion} && '
|
|
205
|
+
f'./xmipp --production True ', COMPILE_TARGETS)
|
|
206
|
+
]
|
|
207
|
+
env.addPackage(
|
|
208
|
+
'xmippSrc', version=version._binTagVersion,
|
|
209
|
+
tar='void.tgz',
|
|
210
|
+
commands=installCommands,
|
|
211
|
+
neededProgs=['git', 'gcc', 'g++', 'cmake', 'make'],
|
|
212
|
+
updateCuda=True,
|
|
213
|
+
default=not develMode
|
|
214
|
+
)
|
|
215
|
+
|
|
205
216
|
## EXTRA PACKAGES ##
|
|
206
217
|
installDeepLearningToolkit(cls, env)
|
|
207
218
|
|
|
@@ -216,45 +227,67 @@ class Plugin(pwem.Plugin):
|
|
|
216
227
|
os.path.isfile(os.path.join(bundleDir, 'xmipp')))
|
|
217
228
|
|
|
218
229
|
return bundleDir if isBundle else None
|
|
219
|
-
|
|
230
|
+
|
|
231
|
+
def getNvidiaDriverVersion(plugin):
|
|
232
|
+
"""Attempt to retrieve the NVIDIA driver version using different methods.
|
|
233
|
+
Only returns if a valid version string is found.
|
|
234
|
+
"""
|
|
235
|
+
commands = [
|
|
236
|
+
["nvidia-smi", "--query-gpu=driver_version", "--format=csv,noheader"],
|
|
237
|
+
["cat", "/sys/module/nvidia/version"]
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
for cmd in commands:
|
|
241
|
+
try:
|
|
242
|
+
output = subprocess.Popen(
|
|
243
|
+
cmd,
|
|
244
|
+
env=plugin.getEnviron(),
|
|
245
|
+
stdout=subprocess.PIPE,
|
|
246
|
+
stderr=subprocess.PIPE
|
|
247
|
+
).communicate()[0].decode('utf-8').strip()
|
|
248
|
+
|
|
249
|
+
# Check if the output matches a version pattern like 530.30 or 470
|
|
250
|
+
match = re.match(r'^(\d+)', output)
|
|
251
|
+
if match:
|
|
252
|
+
return match.group(1) # Return just the major version (e.g., "530")
|
|
253
|
+
|
|
254
|
+
except (ValueError, TypeError, FileNotFoundError, subprocess.SubprocessError):
|
|
255
|
+
continue # Try next method
|
|
256
|
+
|
|
257
|
+
return None # No valid version found
|
|
258
|
+
|
|
220
259
|
def installDeepLearningToolkit(plugin, env):
|
|
221
260
|
|
|
222
261
|
preMsgs = []
|
|
223
262
|
cudaMsgs = []
|
|
224
263
|
nvidiaDriverVer = None
|
|
225
264
|
if os.environ.get('CUDA', 'True') == 'True':
|
|
226
|
-
|
|
227
|
-
nvidiaDriverVer = subprocess.Popen(["nvidia-smi",
|
|
228
|
-
"--query-gpu=driver_version",
|
|
229
|
-
"--format=csv,noheader"],
|
|
230
|
-
env=plugin.getEnviron(),
|
|
231
|
-
stdout=subprocess.PIPE
|
|
232
|
-
).stdout.read().decode('utf-8').split(".")[0]
|
|
233
|
-
if int(nvidiaDriverVer) < NVIDIA_DRIVERS_MINIMUM_VERSION:
|
|
234
|
-
preMsgs.append("Incompatible driver %s" % nvidiaDriverVer)
|
|
235
|
-
cudaMsgs.append(f"Your NVIDIA drivers are too old (<{NVIDIA_DRIVERS_MINIMUM_VERSION}). "
|
|
236
|
-
"Tensorflow was installed without GPU support. "
|
|
237
|
-
"Just CPU computations enabled (slow computations)."
|
|
238
|
-
f"To enable CUDA (drivers>{NVIDIA_DRIVERS_MINIMUM_VERSION} needed), "
|
|
239
|
-
"set CUDA=True in 'scipion.conf' file")
|
|
240
|
-
nvidiaDriverVer = None
|
|
241
|
-
except (ValueError, TypeError, FileNotFoundError):
|
|
242
|
-
nvidiaDriverVer = None
|
|
243
|
-
preMsgs.append("Not nvidia driver found. Type: "
|
|
244
|
-
" nvidia-smi --query-gpu=driver_version --format=csv,noheader")
|
|
245
|
-
preMsgs.append(
|
|
246
|
-
"CUDA will NOT be USED. (not found or incompatible)")
|
|
247
|
-
msg = ("Tensorflow installed without GPU. Just CPU computations "
|
|
248
|
-
"enabled (slow computations).")
|
|
249
|
-
cudaMsgs.append(msg)
|
|
250
|
-
useGpu = False
|
|
265
|
+
nvidiaDriverVer = getNvidiaDriverVersion(plugin)
|
|
251
266
|
|
|
252
|
-
if nvidiaDriverVer is
|
|
253
|
-
preMsgs.append("
|
|
254
|
-
|
|
267
|
+
if nvidiaDriverVer is None:
|
|
268
|
+
preMsgs.append("Not nvidia driver found. Type: "
|
|
269
|
+
" nvidia-smi --query-gpu=driver_version --format=csv,noheader")
|
|
270
|
+
preMsgs.append(
|
|
271
|
+
"CUDA will NOT be USED. (not found or incompatible)")
|
|
272
|
+
msg = ("Tensorflow installed without GPU. Just CPU computations "
|
|
273
|
+
"enabled (slow computations).")
|
|
255
274
|
cudaMsgs.append(msg)
|
|
256
|
-
useGpu =
|
|
275
|
+
useGpu = False
|
|
257
276
|
|
|
277
|
+
else:
|
|
278
|
+
if int(nvidiaDriverVer) < NVIDIA_DRIVERS_MINIMUM_VERSION:
|
|
279
|
+
preMsgs.append("Incompatible driver %s" % nvidiaDriverVer)
|
|
280
|
+
cudaMsgs.append(f"Your NVIDIA drivers are too old (<{NVIDIA_DRIVERS_MINIMUM_VERSION}). "
|
|
281
|
+
"Tensorflow was installed without GPU support. "
|
|
282
|
+
"Just CPU computations enabled (slow computations)."
|
|
283
|
+
f"To enable CUDA (drivers>{NVIDIA_DRIVERS_MINIMUM_VERSION} needed), "
|
|
284
|
+
"set CUDA=True in 'scipion.conf' file")
|
|
285
|
+
useGpu = False
|
|
286
|
+
else:
|
|
287
|
+
preMsgs.append("CUDA support found. Driver version: %s" % nvidiaDriverVer)
|
|
288
|
+
msg = "Tensorflow will be installed with CUDA SUPPORT."
|
|
289
|
+
cudaMsgs.append(msg)
|
|
290
|
+
useGpu = True
|
|
258
291
|
|
|
259
292
|
# commands = [(command, target), (cmd, tgt), ...]
|
|
260
293
|
cmdsInstall = list(CondaEnvManager.yieldInstallAllCmds(useGpu=useGpu))
|
xmipp3/base.py
CHANGED
|
@@ -155,9 +155,10 @@ class XmippProtocol:
|
|
|
155
155
|
# Looking for the installation target for that conda environment.
|
|
156
156
|
kerasError = False
|
|
157
157
|
envName = CondaEnvManager.getCondaName(self, **kwargs)
|
|
158
|
+
targetName = CondaEnvManager.getCondaEnvTargetFilename(self, envName)
|
|
158
159
|
if not os.path.isfile(os.path.join(pwem.Config.EM_ROOT,
|
|
159
160
|
XMIPP_DLTK_NAME,
|
|
160
|
-
|
|
161
|
+
targetName)):
|
|
161
162
|
errors.append("*%s environment not found*. "
|
|
162
163
|
"Required to run this protocol." % envName)
|
|
163
164
|
kerasError = True
|
xmipp3/convert/convert.py
CHANGED
|
@@ -477,7 +477,7 @@ def imageToRow(img, imgRow, imgLabel, **kwargs):
|
|
|
477
477
|
acquisitionToRow(img.getAcquisition(), imgRow)
|
|
478
478
|
|
|
479
479
|
# Write all extra labels to the row
|
|
480
|
-
objectToRow(img, imgRow, {}, extraLabels=IMAGE_EXTRA_LABELS)
|
|
480
|
+
objectToRow(img, imgRow, {}, extraLabels=IMAGE_EXTRA_LABELS + kwargs.get('extraLabels', []))
|
|
481
481
|
|
|
482
482
|
# Provide a hook to be used if something is needed to be
|
|
483
483
|
# done for special cases before converting image to row
|