-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,58 @@ | ||
# localres | ||
Plot local resolution histogram from RELION's relion_locres.mrc and mask.mrc | ||
|
||
Plot a local resolution histogram from a local resolution map and a mask. | ||
|
||
From a cryo-EM reconstruction, one can calculate local resolution and generate a | ||
color-coded 3D map showing local resolution across the 3D reconstruction (or | ||
within slices of it). This command-line tool complements this by allowing one to | ||
quantitatively answer the question "how many map voxels inside the mask have a | ||
given local resolution?". This tool generates a histogram of local resolution | ||
values from a local resolution map and a mask (`relion_locres.mrc` and | ||
`mask.mrc` files from RELION, respectively). | ||
|
||
## FAQ | ||
|
||
**Q:** Doesn't RELION already do this? | ||
|
||
**A:** Yes, RELION-3.1 already prints out this histogram. This tool, however, | ||
doesn't require an installation of RELION, allowing one to inspect files quickly | ||
from a different computer. This tool also lets you adjust the number of bins in | ||
the histogram, and save the histogram as an SVG file (which is useful for | ||
adjusting styling to make a pretty figure). | ||
|
||
## Acknowledgments | ||
|
||
I reused code suggested by | ||
[@biochem_fan](https://twitter.com/biochem_fan/status/1161347681110962177). My | ||
contribution was simply to package it into a command-line tool that's documented | ||
and easy to install. | ||
|
||
## Installation | ||
|
||
``` sh | ||
$ pip install localres | ||
``` | ||
|
||
## Usage | ||
|
||
``` sh | ||
$ localres --help | ||
Usage: localres [OPTIONS] <relion_locres.mrc> <mask.mrc> | ||
|
||
Plots a histogram of local resolution values from a local resolution map | ||
and a mask both produced by RELION. | ||
|
||
For meaningful results, the mask.mrc file must be the one used for the 3D | ||
refinement and post-processing jobs that produced the relion_locres.mrc | ||
file. | ||
|
||
Options: | ||
-t, --title TEXT Title of the histogram (default: no title). | ||
-b, --bins INTEGER Number of bins in the histogram (default: 100). | ||
-o, --output TEXT File name to save the histogram (optional: with no file | ||
name, simply display the histogram on screen without | ||
saving it; recommended file formats: .png, .pdf, .svg or | ||
any format supported by matplotlib). | ||
-h, --help Show this message and exit. | ||
``` | ||
|