Skip to main content

Alignment format conversion for cryoET.

Project description

cryoet-alignment

Convert between different alignment formats used in cryo-ET.

Supported formats:

  • IMOD
  • AreTomo3
  • cryoet-data-portal

Installation

cryoet-alignment can be installed using pip:

pip install cryoet-alignment

Usage

Reading and writing alignment files

cryoet-alignment provides a simple API to read and write alignment files from different software packages.

IMOD

When processing tomography data using IMOD/etomo, files containing relevant alignment information are usually stored following the naming convention basename.xf (in-plane parameters), basename.tlt (tilt angles), basename.xtilt (x-rotation), basename.mrc (unaligned tilt series) and basename_full_rec.mrc (tomogram).

This layout is assumed when reading and writing IMOD alignment files as shown below. Any present tilt.com and newst.com file in the same directory may also be read.

from cryoet_alignment import read
from cryoet_alignment import write

# Read IMOD alignment files using etomo basename
imod_alignment = read("/path/to/imod_dir/basename")

# Write IMOD file
write(imod_alignment, "/path/to/imod_dir/basename")

AreTomo3

When processing tomography data using AreTomo3, alignment information is stored in a single .aln file. This file can be read and written as shown below.

from cryoet_alignment import read
from cryoet_alignment import write

# Read AreTomo3 alignment files
aretomo3_alignment = read("/path/to/alignment_file.aln")

# Write AreTomo3 file
write(aretomo3_alignment, "/path/to/alignment_file.aln")

cryoet-data-portal

Alignment information from the cryoet-data-portal is stored in a JSON file with a schema described here. This file can be read and written as shown below.

from cryoet_alignment import read
from cryoet_alignment import write

# Read cryoet-data-portal alignment files
cryoet_data_portal_alignment = read("/path/to/alignment_file.json")

# Write cryoet-data-portal file
write(cryoet_data_portal_alignment, "/path/to/alignment_file.json")

Convert between different alignment formats

cryoet-alignment provides the ability to convert between different alignment formats. For any conversion, the alignment object must be read first using the appropriate read function, and then converted to the cryoet-data-portal format before converting and writing to the desired format.

IMOD to AreTomo3

from cryoet_alignment import read, write
from cryoet_alignment.io.cryoet_data_portal import Alignment

# Read IMOD alignment files using etomo basename
imod_alignment = read("/path/to/imod_dir/basename")

# Convert IMOD to AreTomo3
cdp_alignment = Alignment.from_imod(imod_alignment)

# Write AreTomo3 file
tilt_series_dim = (4096, 4096, 41)
write(cdp_alignment.to_aretomo(ts_size=tilt_series_dim), "/path/to/alignment_file.aln")

cryoet-data-portal to IMOD

It is also possible to convert directly from the cryoet-data-portal client to IMOD/AreTomo format. This is demonstrated below. This requires additional dependencies to be installed using the following command:

pip install cryoet-alignment[cdp]

To convert from the cryoet-data-portal to IMOD, the below code can be used. Briefly, given a tomogram ID, the snippet fetches the alignment information from the cryoet-data-portal, reads the tilt series metadata, and converts the alignment to IMOD format. The resulting alignment files are written to the specified directory with the portal's run name as the base name.

import cryoet_data_portal as cdp
import zarr
from cryoet_alignment.io.cryoet_data_portal import Alignment
from cryoet_alignment import write

# Target tomogram ID
# This is an example from dataset 10004 (https://cryoetdataportal.czscience.com/runs/333)
TOMO_ID = 771

# Get the tomogram from the cryoet-data-portal
client = cdp.Client()
tomogram = cdp.Tomogram.get_by_id(client, TOMO_ID)

# Read cryoet-data-portal alignment from S3
cdp_ali = Alignment.from_s3(tomogram.alignment.s3_alignment_metadata)

# Get the tilt series metadata
#tilt_series = tomogram.alignment.tiltseries < currently unavailable due to a bug in the data portal client
tilt_series = tomogram.run.tiltseries[0]
pixel_size = tilt_series.pixel_spacing
dim_z, dim_y, dim_x = zarr.open(tilt_series.s3_omezarr_dir)['0'].shape

# Convert to IMOD format
imod_ali = cdp_ali.to_imod(ts_size=(dim_x, dim_y, dim_z), ts_spacing=pixel_size)
write(imod_ali, f"/tmp/test/{tomogram.run.name}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cryoet_alignment-0.0.10.tar.gz (21.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cryoet_alignment-0.0.10-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file cryoet_alignment-0.0.10.tar.gz.

File metadata

  • Download URL: cryoet_alignment-0.0.10.tar.gz
  • Upload date:
  • Size: 21.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.10

File hashes

Hashes for cryoet_alignment-0.0.10.tar.gz
Algorithm Hash digest
SHA256 ab5e2ae5f2319ec551853e28e861076961172b5b0516652b67d87eedc7bfba45
MD5 792400adb6108f185e583d3be866ed14
BLAKE2b-256 51854e1d1c3ba20bfb59f9f43a3f5142d72d503eb787c348e35669bb16ec6fc2

See more details on using hashes here.

File details

Details for the file cryoet_alignment-0.0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for cryoet_alignment-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 aea4283366abea49035c8c2977fc4e79c3afa42cc9393af9ffd09f73e9c87a4a
MD5 a03b5f28b906808d03eb7e27e12048e5
BLAKE2b-256 742e34d4de5d6d456258996c616af60a60207beaad19705489bc991e1b318e41

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page