tsio: A command line utility for extracting images from microscopy-related files
A Command Line Interface (CLI) application for extracting images from microscopy files to common image file formats, such as JPEG, PNG, and/or TIFF. Supported microscopy files include:
- dcm (DICOM) - medical image file format standard
- dm3/dm4 (DigitalMicrograph) - (S)TEM image file format by GATAN
- emd (Velox) - (S)TEM image file format by ThermoFisher
Prerequisites
All of the prerequisites may already be installed and configured by the superuser, a.k.a. root, of the computer. The prerequisites only need to be installed and configured once per machine.
Python
The Python programming language is needed to run the tsio Command Line
Interface (CLI) application and/or use in other Python scripts. Both macOS
and Ubuntu Linux have the Python programming language installed, but it is
generally reserved for the operating system (OS) to use and is an older
version. It is best practice to install a newer version that is separate from
the system-provided Python version.
Ubuntu
-
Add the "deadsnakes" Ubuntu Personal Package Archives (PPA).
sudo add-apt-repository ppa:deadsnakes/ppa
-
Obtain the latest packages from the PPA.
sudo update -
Install Python v3.11 or newer.
sudo apt install python3.11
-
Install the
venvpackage.sudo apt install python3.11-venv
macOS
-
Install Homebrew if it is not already installed.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
Install Python v3.11 or newer.
brew install python@3.11
pipx
The pipx utility enables distribution of Python-based CLI applications, like
tsio, to be installed for all users with all of the appropriate dependencies
within an isolated environment. It is the recommended installation for the
tsio application.
Ubuntu
-
Create a virtual environment for
pipxand Python v3.11 or newer.sudo python3.11 -m venv --upgrade-deps /opt/pipx
-
Install
pipxfor all users.sudo /opt/pipx/bin/pip install pipx
-
Ensure the
pipxcommand is available to all users.sudo ln -s /opt/pipx/bin/pipx /usr/local/bin/pipx
-
Add
pipxto thePATHenvironment variable.pipx ensurepath -
Add
pipxfor all users.sudo pipx ensurepath --global
Post-installation, the pipx application can be upgraded with the following
command:
sudo /opt/pipx/bin/pip install --upgrade pipx
macOS
-
Install
pipxusing Homebrew.brew install pipx
-
Add
pipxto thePATHenvironment variable.pipx ensurepath -
Add
pipxfor all users.sudo pipx ensurepath --global
Post-installation, the pipx application can be upgraded with the following
command:
brew update && brew upgrade pipx
Installation
The tsio code includes a Python application with a Command Line Interface
(CLI). It can be installed as a standalone application.
pipx (recommended)
-
Obtain a package key from Theia Scientific personnel. Save it for Step 3.
-
Ensure
pipxis installed. See the Prerequisites.$ pipx --version 1.9.0
-
Install
tsiocommand globally for all users.sudo pipx install --global --python python3.11 "tsio"
-
Verify
tsiocommand is available.$ tsio --version tsio 0.1.0
Source
-
Clone the tsio repository.
git clone https://github.com/Theia-Scientific/tsio.git && cd tsio
-
Create a virtual environment.
python3.11 -m venv .venv
-
Activate the virtual environment.
source .venv/bin/activate
or if direnv is installed:
cp .envrc.example .envrc
followed by:
direnv allow -
Upgrade
pipto the latest version.pip install --upgrade pip
-
Locally install the package, utility, and its dependencies. This will create the
tsiocommand within the virtual environment. This also installs the Slack feature for sending notifications to a Slack channel.pip install -e .
Upgrade
pipx (recommended)
-
Upgrade the
tsioapplication viapipx.sudo pipx upgrade --global tsio
-
Verify new version.
$ tsio --version tsio 0.1.0
Source
-
Navigate to the root of the source tree.
cd ~/Code/tsio
-
Activate the virtual environment.
source .venv/bin/activate
or if direnv is installed, the virtual environment will automatically be activated.
-
Pull the latest changes on
main.git pull -
Upgrade the
tsioapplication within the virtual environment.pip install --upgrade -e .
-
Verify new version.
$ tsio --version tsio 0.1.0
Usage
Convert a single page TIFF to a JPEG. Creating a JPEG image file is the default because this is useful for Machine Learning (ML) tools, supported by all web browsers, and it creates the smallest file, making this the quickest for obtaining a thumbnail of the microscopy image file.
$ tsio image.tif
$ ls
image.jpg image.tif
Convert a single page TIFF to a PNG. All of the following commands are equivalent.
# Use the long option.
$ tsio --to png image.tif
$ ls
image.png image.tif
# Use the `=` syntax for specifying an option value.
$ tsio --to=png image.tif
$ ls
image.png image.tif
# Use the short option.
$ tsio -t png image.tif
$ ls
image.png image.tif
# Use the short option with the `=` syntax.
$ tsio -t=png image.tif
$ ls
image.png image.tif
Extract all the "frames" from a multi-page TIFF.
$ tsio multi-page.tif
$ ls
multi-page/ multi-page.tif
$ ls multi-page/
0.jpg 1.jpg 2.jpg 3.jpg 4.jpg
# Use the `-o,--output` option to extract to different location.
$ tsio --output /path/to/directory tiff png multi-page.tif
$ ls
multi-page.tif
$ ls /path/to/directory
0.jpg 1.jpg 2.jpg 3.jpg 4.jpg
Extract an image from a DM3 or DM4 file.
$ tsio ./00001.dm3
$ ls
00001.dm3 00001.jpg
$ tsio ./00001.dm4
$ ls
00001.dm4 00001.jpg
Extract all the "frames" from a EMD file.
$ tsio multiple-frames.emd
$ ls
multiple-frames/ multiple-frames.emd
$ ls multiple-frames/
0.jpg 1.jpg 2.jpg 3.jpg 4.jpg
Contributing
-
Clone this repository.
git clone https://github.com/Theia-Scientific/tsio && cd tsio
-
Create a virtual environment.
python3.11 -m venv .venv
-
Activate the virtual environment.
source .venv/bin/activate
or if direnv is installed, the virtual environment will automatically be activated.
-
Upgrade
pip.pip install --upgrade pip
-
Install all the dependencies.
pip install -e ".[dev]"
-
Create a local branch.
git checkout -b feature-awesome-new-feature
-
Modify the code.
-
Run the tests.
pytest --color=yes --cov=tsio --cov-report=term-missing
-
Commit changes to your local branch.
git add -A && git commit -m "Add new feature"
-
Push your local branch to GitHub to create a Pull Request (PR).
git push origin feature-awesome-new-feature
-
Create a Pull Request (PR) in GitHub.
-
Wait for CI to complete.
-
Add comment to PR that it is ready to review.
-
Wait for review from a maintainer.
-
Address any comments from the reviewer by modifying your local files and pushing to the remote branch/PR.
git push origin feature-awesome-new-feature
-
Once the PR is approved, then it will be "Squash and Merge". Congratulations on contributing to an open source project, and Thank you!
License
The tsio project is licensed under the GPL-3.0 license. See the
LICENSE.txt file for more information about licensing and copyright.
Acknowledgments
This material is based upon work supported by the U.S. Department of Energy, Office of Basic Science and Office of Nuclear Energy under Award Number DE-SC0021529 and DE-SC0021936, respectively.
Release files for tsio 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| tsio-1.1.1.tar.gz | 695.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| tsio-1.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 717.8 kB
Release files / tsio-1.1.1.tar.gz
| Download URL | tsio-1.1.1.tar.gz |
|---|---|
| Size | 695.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
273f2a2032021d0070144260dee588cf679815d1f22c7aa4b2f36ad894a13dc1
|
|
BLAKE2b-256 checksum How to use checksums |
9156e20ad4cd92f124de61f2943b13082ab6bd2a85e92efefefcdd0e6982b3bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / tsio-1.1.1-py3-none-any.whl
| Download URL | tsio-1.1.1-py3-none-any.whl |
|---|---|
| Size | 22.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c6e1ef91e059f4222f923738eeb8a61ee0590750c5b9428b427ce76253d386c2
|
|
BLAKE2b-256 checksum How to use checksums |
e1ac36782d4627a7b4d21050bd9a65035b420ec55176675dc9315b51025c877b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency log