Re: [Chimera-users] how to export the volume data which is stored in the memory?

Hi Zhiheng, Here is a script to write out the maps in memory using Chimera 1.2199. You open this script with menu entry File / Open... from the main Chimera window. It will write the files to /tmp. Of course be sure to check those files before closing Chimera. Tom Zhiheng Yu wrote:
Hi Tom,
I got the following information:
Beta Version 1 build 2199 2006/01/24 Platform: linux 2. Windowing system:x11.
Apparently, it is an older version.
Thank you very much for your generous help. I really appreciate it.
Zhiheng
Tom Goddard wrote:
Hi Zhiheng,
You must be using an older version of Chimera. Old versions read the original file even if the map was in memory when writing out the data. Maybe I can give you a script that will write the maps out from memory if you tell me what version of Chimera you are running (menu entry Help / About UCSF Chimera).
Tom
# # Write maps to files. For Chimera 1.2199. Only use in-memory copy. # Written for Zhiheng Yu to recover maps lost to failed disk. # from VolumeData import Array_Grid_Data from VolumeData.mrc.writemrc import write_mrc2000_grid_data from VolumeViewer import volume_dialog from os.path import join dir = '/tmp' # Location to write maps. d = volume_dialog() for v in d.data_regions: m = v.full_matrix(read_matrix = False) if not m is None: a = Array_Grid_Data(m, v.data.origin, v.data.step) path = join(dir, v.data.name) write_mrc2000_grid_data(a, path)
participants (1)
-
Tom Goddard