Skip to content
Discussion options

You must be logged in to vote

There is currently no way to do this from the web interface. However, the CTF information is kept internally in *.pkl files (one for each tilt-series) and it can be accessed using Python, as follows:

import pandas as pd
ctf = pd.read_pickle('PROJECT_PATH/pkl/TILT_SERIES_NAME.pkl')['ctf']
print(ctf)

where PROJECT_PATH is the filesystem location of the pre-processing block and TILT_SERIES_NAME is the name of the tilt-series.

The code above should produce something like this:

    tilt_angle           df1           df2        ast        cc     est_res
0       -60.00  34505.320312  32289.714844   0.000000  0.018838  718.200012
1       -57.00  40173.843750  39336.269531 -34.180779  0.016099   …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@PKirchweger
Comment options

Answer selected by PKirchweger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants