eman2:e2tomo_atpsyn
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| eman2:e2tomo_atpsyn [2026/06/03 18:26] – muyuanchen | eman2:e2tomo_atpsyn [2026/06/04 20:47] (current) – muyuanchen | ||
|---|---|---|---|
| Line 35: | Line 35: | ||
| ===== All tomogram reconstruction ===== | ===== All tomogram reconstruction ===== | ||
| - | Reconstruct all tilt series using the same parameters and the tilt axis estimated by the handedness check. Note that in the full dataset, tilt series of different sessions in EMPIAR-11830 may have different tilt step and pixel size in their header. Run the **--alltiltseries** command with caution when processing large datasets. The 5 tilt series in this tutorial are from the same session and have similar conditions. | + | Reconstruct all tilt series using the same parameters and the tilt axis estimated by the handedness check. Note that in the full dataset, tilt series of different sessions in EMPIAR-11830 may have different tilt step and pixel size in their header. Run the **--alltiltseries** command with caution when processing large datasets. The 5 tilt series in this tutorial are from the same session and have similar conditions. While the selection makes the processing simpler, it limits the final resolution because the 5 tilt series are collected at similar (and relatively high) defocus. |
| < | < | ||
| Line 103: | Line 103: | ||
| {{http:// | {{http:// | ||
| + | |||
| + | After the clean up, I got ~5000 particles total. | ||
| For the full dataset, using the deep learning based particle picker can reduce the manual effort of the cleaning step. Because the ATP synthase has quite distinct top vs side view, training the model can take multiple iterations of training set refinement and not efficient for a small dataset. Please refer to previous tutorials for details. | For the full dataset, using the deep learning based particle picker can reduce the manual effort of the cleaning step. Because the ATP synthase has quite distinct top vs side view, training the model can take multiple iterations of training set refinement and not efficient for a small dataset. Please refer to previous tutorials for details. | ||
| Line 125: | Line 127: | ||
| </ | </ | ||
| - | The first refinement should bring the resolution to around 15Å. | + | The first refinement should bring the resolution to around 15Å. If the structure is not aligned to symmetry axis yet, this is a good time to align it. Then we can set up the next refinement run, with the same particles and reference, but with a specified mask and local resolution based filter. The mask can be made in filtertool manually to keep only one pair of ATP synthase for alignment. I used mask.zeroedge3d followed by mask.auto3d.thresh to add some padding and a soft falloff. |
| < | < | ||
| e2spt_refine_new.py --ptcls sets/ | e2spt_refine_new.py --ptcls sets/ | ||
| </ | </ | ||
| + | |||
| + | This should bring the resolution to about 12Å. | ||
| + | |||
| + | {{http:// | ||
| + | |||
| + | ===== Refinement of ATP synthase monomers ===== | ||
| + | |||
| + | Since we want to look at dynamics of ATP synthase, we need to first determine the structure as monomers. To do this, first expand the symmetry of the particles, making 2 copies of each particle at the c2 positions. For no good reason, some options of e2proclst.py work in place and some work on new lists created. | ||
| + | < | ||
| + | cp spt_01/ | ||
| + | e2proclst.py spt_01/ | ||
| + | </ | ||
| + | |||
| + | The new list, spt_01/ | ||
| + | < | ||
| + | e2proc3d.py spt_01/ | ||
| + | e2proclst.py spt_01/ | ||
| + | </ | ||
| + | |||
| + | To make sure the operations on particle lists are done properly, compare the Euler angles of the lists by clicking " | ||
| + | |||
| + | {{http:// | ||
| + | |||
| + | Finally we can refine the monomer particles. Here we also need to make a customized mask for the monomer, keeping only one ATP synthase inside the mask. This is also done in FilterTool using mask.zeroedge3d followed by mask.auto3d.thresh. Call this mask mask_01.hdf. | ||
| + | |||
| + | < | ||
| + | e2spt_gathermeta.py --ptcls spt_01/ | ||
| + | e2spt_refine_new.py --path spt_02 --continuefrom 0.5 --localrefine --mask mask_01.hdf --setsf sf.txt --iters=p2, | ||
| + | </ | ||
| + | |||
| + | The resolution should reach 11Å by the end of this. | ||
| + | |||
| + | ===== Bad particle removal ===== | ||
| + | |||
| + | Before heterogeneity analysis, we need to get rid of the bad particles first. While they are automatically downweighted and having a small fraction of bad particles generally does not have a strong impact in the refinement, the heterogeneity analysis might interpret the good vs bad particles as actual structural differences. Although we have manually removed the obvious bad particles outside mitochondria earlier, there are still some that are just bare cristae membranes. Here we remove them through simple classification. | ||
| + | |||
| + | < | ||
| + | e2spt_sgd_new.py spt_02/ | ||
| + | </ | ||
| + | |||
| + | This generates one correct structure of ATP synthase, and the other looks somewhat flat, likely a piece of misaligned membrane. However, e2spt_sgd_new.py does not actually assign particles to classes, so we need to run a full classification with all particles. | ||
| + | |||
| + | < | ||
| + | e2spt_refinemulti_new.py sptsgd_01/ | ||
| + | </ | ||
| + | |||
| + | {{http:// | ||
| + | |||
| + | < | ||
| + | e2spt_gathermeta.py --ptcls sptcls_00/ | ||
| + | e2spt_refine_new.py --path spt_03 --continuefrom 0.5 --localrefine --mask mask_01.hdf --setsf sf.txt --iters=p2, | ||
| + | </ | ||
| + | |||
| + | ===== Gaussian mixture model (GMM) based refinement ===== | ||
| + | |||
| + | First convert the voxel map into GMM representation, | ||
| + | |||
| + | < | ||
| + | e2gmm_guess_n.py spt_03/ | ||
| + | e2gmm_spt_refine_iter.py spt_02/ | ||
| + | </ | ||
| + | |||
| + | The resolution should get slightly better than 10Å at this point. Next, we can focus the refinement on the rotation of F1 head. Make a mask using FilterTool that covers the F1 head only, and name it mask_f1.hdf. Here we first run one iteration of the deep learning based alignment to recover the large scale rotation, followed by 3 iterations of the direct alignment from the deep learning result. | ||
| + | |||
| + | < | ||
| + | e2gmm_spt_refine_iter.py gmm_00/ | ||
| + | e2gmm_spt_refine_iter.py gmm_01/ | ||
| + | </ | ||
| + | |||
| + | This should improve the structure features at the F1 head domain, but the FSC resolution does not necessarily improve here. Because the even/odd half set only are only aligned to the " | ||
| + | |||
| + | {{http:// | ||
| + | |||
| + | To visualize the dynamics, run the following. | ||
| + | < | ||
| + | e2gmm_eval.py --pts gmm_01/ | ||
| + | e2proc3d.py gmm_01/ | ||
| + | </ | ||
| + | |||
| + | This only shows the motion of the even set, and the same can be done to the odd half. Since the deep learning models for the two half-sets are trained independently, | ||
| + | |||
| + | {{http:// | ||
| + | |||
eman2/e2tomo_atpsyn.1780511186.txt.gz · Last modified: by muyuanchen
