Skip to main content

MASSIVEChem is a pip-installable package for analytical chemistry. It simulates molecule mass spectra and graphically displays them. It includes tools like a functional group finder and unsaturation calculator to aid chemical analysis.

Project description

logo GitHub Thomas3 Thomas4 Thomas6

- MASSIVEChem -

GitHub2 python GitHub3 GitHub3 GitHub3

  • Python package for applied analytical chemistry focused primarily on mass speectrometry

Project within practical programming in chemistry course -- EPFL CH-200

Package description

GitHub3 GitHub4

MASSIVEChem, which stands for "Mass Analytical Spectrometry System for Investigation and Visual Extrapolation in Chemistry", is a pip-installable python package developped at EPFL in 2024 focused on, as its name would suggest, analytical chemistry. The aim of this package is to provide the user with functions in order to simulate the mass spectrum of a molecule and to display this spectrum on a graph. The package also provides other features that can facilitate the chemical analysis of a molecule such as a functional group finder and an unsaturation calculator.

Developpers:

  • Thomas Viking Christiansson, student in chemical engineering at EPFL jhc github
  • Igor Gonteri, student in chemistry at EPFL jhc github
  • Arthur Humery, student in chemical engineering at EPFL jhc github

What is mass spectrometry ?

Mass spectrometry (MS) is an analytical technique used to measure the mass-to-charge ratio of ions. It helps identify the structure of the chemical compound present in a sample by generating a spectrum of the masses of its ions. The process involves three main steps:

Ionisation: The sample is ionised, which means its molecules are converted into charged particles (ions). This can be done using various methods, such as electron impact (EI), electrospray ionisation (ESI), or matrix-assisted laser desorption/ionisation (MALDI). In this case, the ionisation is set to the most commonly used method; deprotonation.

Mass Analysis: The ions are separated based on their mass-to-charge ratio (m/z). This is usually done using a mass analyser, such as a quadrupole, time-of-flight (TOF), or an ion trap. Each type of mass analyser works differently but ultimately serves to distinguish ions by their specific m/z values. The unit of these m/z values is 1 Th or 1 $\frac{Da}{e}$.

On the y axis of the output spectrum, the relative abundance of the different ions is plotted. This abundance is given by the different natural abundances of the different isotopes of the atoms in the molecule. For example, the relative abundance of $^{13}C$ is 1.1% and that of $^{12}C$ is 98.9%.

Mass spectrometry is widely used in various fields, including:

Chemistry: For molecular identification and structural elucidation. Biochemistry: For studying proteins, peptides, and other biomolecules. Pharmaceuticals: For drug development and metabolite analysis. Environmental Science: For detecting pollutants and analysing environmental samples. Clinical Diagnostics: For identifying biomarkers and analysing complex biological samples. The technique's sensitivity, accuracy, and ability to analyse complex mixtures make it an essential tool in both research and applied sciences.

Now, let us go through the steps required to use this package!

Installation

Thomas2

MASSIVEChem can be installed using pip as

pip install MASSIVEChem

GitHub

Alternatively, the package can be directly installed from the GitHub repository via pip using the following command in the terminal

pip install git+https://github.com/ThomasCsson/MASSIVEChem

Thomas1

The package can also be installed from source by running the following commands

First, clone the repository from github and go in the folder.

git clone https://github.com/ThomasCsson/MASSIVEChem.git
cd MASSIVEChem

Then, install the package using :

pip install -e .

Requirments

The package runs on python 3.10 but supports python 3.8 through 3.10. It requires several other packages to function correctly.

bokeh
rdkit
panel

(Note: panel is not directly used, but is required for added functionality involving the 3 dimmensinal visualisation of the input molecule)

If all goes well during installation, the preceding packages should all install automatically. But this can be checked by veryfying that they have all been installed in the desired environment. To do this, simply write the following command in the terminal:

pip show "name of the package"

If not, install them using the following commands. (Bear in mind that the package will not run without its dependencies.

pip install bokeh
pip install rdkit
pip install panel

Additionally, the package 'xyz2graph' is required to run the 3D imaging functionallity in the function 'spectrum'. This package is not pip-installable, so to intall it yourslef, the following command needs to be run.

python -m pip install git+https://github.com/zotko/xyz2graph.git

Usage

The principal function of this package takes the SMILEs of a molecule as an input and displays the mass spectrometry of the molecule as well as the molecule itself and the functional groups it contains.

An example on how to make the function work is shown below for benzylpenicilin:

The ionization method is set to monodeprotonation and the resolution of the apparatus is 0.01 Th

import MASSIVEChem.MASSIVEChem as MC
from bokeh.plotting import show

mol_smi = 'CC1(C(N2C(S1)C(C2=O)NC(=O)CC3=CC=CC=C3)C(=O)O)C'
apparatus_resolution = 0.01

show(MC.spectrum(mol_smi, True, apparatus_resolution))


#The first input in ms.spectrum is the molecule under SMILEs representation,
#and the third is the resolution of the apparatus (typically, this value is of 0.01
#the second computes an approximate spectrum if True and the precise spectrum if False

The output of this command will be:

Spectrum

Note that here there appear to be two overlapping peaks at ~ 334 [th]. This is due to the presence of an odd number of sulphur atoms. This causes there to be a peak 0.004 [th] infront of the second peak. This can be verified by zooming in on the sectrum:

Focused_spectrum

Getting started

jupyter

To begin to use the package the following jupyter notebook will give you information about all the package's functions:

'''link to jupter notebook'''

Fun !

🐰 If you've made it this far through our project, you might want to try to find the hidden easter egg in this ReadMe :)🐰

(hint: you might want to try clicking on various badges throughout the ReadMe)

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

massivechem-4.3.tar.gz (477.9 kB view details)

Uploaded Source

Built Distribution

massivechem-4.3-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file massivechem-4.3.tar.gz.

File metadata

  • Download URL: massivechem-4.3.tar.gz
  • Upload date:
  • Size: 477.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.10

File hashes

Hashes for massivechem-4.3.tar.gz
Algorithm Hash digest
SHA256 04fc8baf228e3d7fe8bcb70cae4fce0b9cc94a46ab54091ff5356927ef97e962
MD5 bac86bf8c7f87c9712168ee393d61233
BLAKE2b-256 0898e6a91f4f9ac776be90a53d793ae9e2f95f747e40084aff4010a6847d4c0e

See more details on using hashes here.

File details

Details for the file massivechem-4.3-py3-none-any.whl.

File metadata

  • Download URL: massivechem-4.3-py3-none-any.whl
  • Upload date:
  • Size: 23.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.10

File hashes

Hashes for massivechem-4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 141d302eb8257743b275a96c4838c8788b9c0fdf03d93825ec753e0a995cbbb5
MD5 f60e54162b6490ce05224a07df34de5d
BLAKE2b-256 2d5823972c5f79ecf4326288eb75f5006d1b49580070a730d504b0467913a5b3

See more details on using hashes here.

Supported by

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