├── .gitignore ├── LICENSE ├── README.md ├── add_beamtiltclass_star.py ├── add_remove_label.py ├── analyze_orientation_distances_star.py ├── assign_column_star.py ├── binning_correct_star.py ├── create_beamtiltclass_from_mdoc.py ├── create_beamtiltclass_from_xml.py ├── create_opticgroups_from_filename.py ├── create_opticgroups_from_mdoc.py ├── create_opticgroups_from_xml.py ├── extract_particles_coords_star.py ├── filter_astigmatism_star.py ├── flip_particle_coordinates.py ├── get_absolute_apix.py ├── heatmap_orient_star.py ├── helix_correct_star.py ├── join_star.py ├── json2star.py ├── lib ├── euler.py ├── matrix2.py ├── matrix3.py ├── scf.py ├── symmetries.py └── vector3.py ├── math_exp_star.py ├── math_star.py ├── metadata.py ├── micrograph_star_from_particles_star.py ├── particles_star_to_box.py ├── particles_star_to_coords_star.py ├── plot_star.py ├── print_sym_matrices.py ├── regular_box_pattern_around_center_coordinate.py ├── rel31_to_rel30_star.py ├── remove_preferred_orient.py ├── remove_preferred_orient_hlpx.py ├── rename_foilhole_star.py ├── requirements.txt ├── rotate_particles_star.py ├── scf_star.py ├── select_maxprob_sym_copy_ptcls.py ├── select_orientations_star.py ├── select_rand_sym_copy_ptcls.py ├── select_values_star.py ├── split_particles_to_micrographs.py ├── split_stacks.py ├── star_to_csv.py ├── stats_star.py ├── unbin_coordinates.py ├── xflip_particles_star.py └── yflip_particles_star.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.star 3 | *.pyc 4 | .idea 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/README.md -------------------------------------------------------------------------------- /add_beamtiltclass_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/add_beamtiltclass_star.py -------------------------------------------------------------------------------- /add_remove_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/add_remove_label.py -------------------------------------------------------------------------------- /analyze_orientation_distances_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/analyze_orientation_distances_star.py -------------------------------------------------------------------------------- /assign_column_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/assign_column_star.py -------------------------------------------------------------------------------- /binning_correct_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/binning_correct_star.py -------------------------------------------------------------------------------- /create_beamtiltclass_from_mdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/create_beamtiltclass_from_mdoc.py -------------------------------------------------------------------------------- /create_beamtiltclass_from_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/create_beamtiltclass_from_xml.py -------------------------------------------------------------------------------- /create_opticgroups_from_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/create_opticgroups_from_filename.py -------------------------------------------------------------------------------- /create_opticgroups_from_mdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/create_opticgroups_from_mdoc.py -------------------------------------------------------------------------------- /create_opticgroups_from_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/create_opticgroups_from_xml.py -------------------------------------------------------------------------------- /extract_particles_coords_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/extract_particles_coords_star.py -------------------------------------------------------------------------------- /filter_astigmatism_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/filter_astigmatism_star.py -------------------------------------------------------------------------------- /flip_particle_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/flip_particle_coordinates.py -------------------------------------------------------------------------------- /get_absolute_apix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/get_absolute_apix.py -------------------------------------------------------------------------------- /heatmap_orient_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/heatmap_orient_star.py -------------------------------------------------------------------------------- /helix_correct_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/helix_correct_star.py -------------------------------------------------------------------------------- /join_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/join_star.py -------------------------------------------------------------------------------- /json2star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/json2star.py -------------------------------------------------------------------------------- /lib/euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/lib/euler.py -------------------------------------------------------------------------------- /lib/matrix2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/lib/matrix2.py -------------------------------------------------------------------------------- /lib/matrix3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/lib/matrix3.py -------------------------------------------------------------------------------- /lib/scf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/lib/scf.py -------------------------------------------------------------------------------- /lib/symmetries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/lib/symmetries.py -------------------------------------------------------------------------------- /lib/vector3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/lib/vector3.py -------------------------------------------------------------------------------- /math_exp_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/math_exp_star.py -------------------------------------------------------------------------------- /math_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/math_star.py -------------------------------------------------------------------------------- /metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/metadata.py -------------------------------------------------------------------------------- /micrograph_star_from_particles_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/micrograph_star_from_particles_star.py -------------------------------------------------------------------------------- /particles_star_to_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/particles_star_to_box.py -------------------------------------------------------------------------------- /particles_star_to_coords_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/particles_star_to_coords_star.py -------------------------------------------------------------------------------- /plot_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/plot_star.py -------------------------------------------------------------------------------- /print_sym_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/print_sym_matrices.py -------------------------------------------------------------------------------- /regular_box_pattern_around_center_coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/regular_box_pattern_around_center_coordinate.py -------------------------------------------------------------------------------- /rel31_to_rel30_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/rel31_to_rel30_star.py -------------------------------------------------------------------------------- /remove_preferred_orient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/remove_preferred_orient.py -------------------------------------------------------------------------------- /remove_preferred_orient_hlpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/remove_preferred_orient_hlpx.py -------------------------------------------------------------------------------- /rename_foilhole_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/rename_foilhole_star.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | healpy 3 | matplotlib 4 | scikit-learn 5 | cexprtk -------------------------------------------------------------------------------- /rotate_particles_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/rotate_particles_star.py -------------------------------------------------------------------------------- /scf_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/scf_star.py -------------------------------------------------------------------------------- /select_maxprob_sym_copy_ptcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/select_maxprob_sym_copy_ptcls.py -------------------------------------------------------------------------------- /select_orientations_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/select_orientations_star.py -------------------------------------------------------------------------------- /select_rand_sym_copy_ptcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/select_rand_sym_copy_ptcls.py -------------------------------------------------------------------------------- /select_values_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/select_values_star.py -------------------------------------------------------------------------------- /split_particles_to_micrographs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/split_particles_to_micrographs.py -------------------------------------------------------------------------------- /split_stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/split_stacks.py -------------------------------------------------------------------------------- /star_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/star_to_csv.py -------------------------------------------------------------------------------- /stats_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/stats_star.py -------------------------------------------------------------------------------- /unbin_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/unbin_coordinates.py -------------------------------------------------------------------------------- /xflip_particles_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/xflip_particles_star.py -------------------------------------------------------------------------------- /yflip_particles_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzikt/starpy/HEAD/yflip_particles_star.py --------------------------------------------------------------------------------