Skip to main content

A python package for communicating with Bruker OPUS spectroscopy software and reading its binary file format.

Project description

Bruker OPUS

brukeropus is a Python package for interacting with Bruker's OPUS spectroscopy software. Currently, the package can read OPUS data files and communicate/control OPUS through the DDE interface (e.g. for scripting measurement sequences).

Reading OPUS Data Files

brukeropus can read the binary data files saved by OPUS. The parsing algorithm in this package is more complete than previous efforts, with a goal to achieve 100% extraction accuracy.

Features

  • Extracts spectral data (e.g. sample, reference, absorbance, transmittance, etc.)
  • Extracts 3D spectral data (e.g. spectral time series)
  • Extracts file metadata (e.g. beamsplitter, source, aperture, etc.) with human readable metadata labels for over 2000 parameters (extracted directly from OPUS software parameter file)
  • Very fast data parsing and assigning to OPUSFile class (limited by disk I/O)
  • Low-level parsing functions are well documented and could be used to build your own custom OPUS file class if OPUSFile does not suit your needs)

Usage

from brukeropus import read_opus
from matplotlib import pyplot as plt

opus_file = read_opus('file.0')  # Returns an OPUSFile class

opus_file.print_parameters()  # Pretty prints all metadata in the file to the console

if 'a' in opus_file.data_keys:  # If absorbance spectra was extracted from file
    plt.plot(opus_file.a.x, opus_file.a.y)  # Plot absorbance spectra
    plt.title(opus_file.sfm + ' - ' + opus_file.snm)  # Sets plot title to Sample Form - Sample Name
    plt.show()  # Display plot

Known Limitations

  • I have only tested this on ~5000 files generated in my lab (all very similiar) as well as a handful of files I've found online (most of which had some error when being read by other tools). This package is capable of reading all of those files, but thorough testing on a wide variety of files is incomplete.

    • If you have a file that cannot be read by brukeropus, please open an issue with a description about the file and what seems to be failing. Also provide a link for me to download the file. Make sure the file can be read by OPUS first (i.e. if the file is corrupted and unreadable by OPUS then brukeropus will not be able to read it either).

Controlling OPUS Software

brukeropus can send commands and perform queries to an OPUS software instance through the DDE communication protocol. OPUS must be open and logged in on the same PC where brukeropus is called from to operate.

Features

  • Initiate a sample or reference measurement
  • Change/define measurement parameters prior to performing measurement (useful for sweeping parameters like aperture size, mirror velocity, etc.)
  • Send commands for interacting with motors and other accessories (e.g. moving mirrors, rotating polarizers, etc.)
  • Control vacuum operation for vacuum-equipped spectrometers (e.g. Vertex 80V FTIR)
  • Unload files from OPUS software (so they can be unlocked for moving, renaming, etc.)

Usage

from brukeropus import opus, read_opus
from matplotlib import pyplot as plt

opus = Opus()  # Connects to actively running OPUS software

apt_options = opus.get_param_options('apt') # Get all valid aperture settings

for apt in apt_options[2:-2]: # Loop over all but the two smallest and two largest aperature settings
    filepath = opus.measure_sample(apt=apt, nss=10, unload=True) # Perform measurement and unload file from OPUS
    data = read_opus(filepath) # Read OPUS file from measurement
    plt.plot(data.sm.x, data.sm.y, label=apt) # Plot single-channel sample spectra
plt.legend()
plt.show()

Future Plans

  • Continue to improve the file reader towards 100% compliance.
  • Add additional control interface options (e.g. http or .dll)

Installation

Requirements

  • Python 3.6+
  • numpy

Optional

  • matplotlib (for plotting examples)

pip

pip install brukeropus

https://pypi.org/project/brukeropus/

Documentation

https://joshduran.github.io/brukeropus/brukeropus.html

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

brukeropus-1.4.3.tar.gz (68.4 kB view details)

Uploaded Source

Built Distribution

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

brukeropus-1.4.3-py3-none-any.whl (70.7 kB view details)

Uploaded Python 3

File details

Details for the file brukeropus-1.4.3.tar.gz.

File metadata

  • Download URL: brukeropus-1.4.3.tar.gz
  • Upload date:
  • Size: 68.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.18

File hashes

Hashes for brukeropus-1.4.3.tar.gz
Algorithm Hash digest
SHA256 0e67c27d6dcc8fbe06e8c56eec616aec9d55457ae06666520e7bcdc5c91b59cb
MD5 e72380bcf492fb4d895c064413c04ac0
BLAKE2b-256 3da2c132b13b718ef926d96f66ec05b5fec2feb29d8d717f6a110fce0c036ed6

See more details on using hashes here.

File details

Details for the file brukeropus-1.4.3-py3-none-any.whl.

File metadata

  • Download URL: brukeropus-1.4.3-py3-none-any.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.18

File hashes

Hashes for brukeropus-1.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 428b275158182c74adf106ffc9ad2e48c85825032b4c4997c070a21fa753c528
MD5 7b5e1fb5d1eea5e1786ed0d88d5c4c60
BLAKE2b-256 9914ffc40f49847bb9eb60c304d54e1f6fe07cd6cbf486703ed5dea81620af1a

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