Hi Digvijay,
I don't think e2procjson.py has an option to do this. Also, we are moving towards standardizing all per-particle metadata like this into .lst files in future. This change has already been made for the _new programs, but we haven't worked our way
back to the older programs yet. There is a script in examples/ which can interconvert if/when that becomes an issue.
Anyway, doing this in Python, using EMAN2 tools is pretty trivial. JSON files appear as dictionaries in EMAN2, so copying a portion of one JSON file to another is as easy as copying a portion of a dictionary to another:
from EMAN2 import *
jsin=js_open_dict("input_file.json")
jsout=js_open_dict("output_file.json")
for k in jsin.keys():
if jsin[k]["score"]>0.03: jsout[k]=jsin[k]
--------------------------------------------------------------------------------------
Steven Ludtke, Ph.D. <
slu...@bcm.edu> Baylor College of Medicine
Charles C. Bell Jr., Professor of Structural Biology
Dept. of Biochemistry and Molecular Biology (
www.bcm.edu/biochem)