You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spec2Mol is a deep learning architecture for recommending molecular structures from MS/MS spectra.
Spec2Mol is an encoder-decoder architecture: The endoder creates an embedding from a given set of MS/MS spectra. The decoder reconstructs the molecular structure, in a SMILES format, given the embedding that the encoder generates.
The implementation of the Spec2Mol architecture is based on the Pytorch library.
Processing of the chemical data is based on the RDKit software.
where pos_low_file, pos_high_file, neg_low_file, neg_high_file are the csv files with the four input spectra:
pos_low_file: precursor [M+H]+, energy 35% NCE (Normalized Collision Energy)
pos_high_file: precursor [M+H]+, energy 130% NCE
neg_low_file: precursor [M-H]-, energy 35% NCE
neg_high_file: precursor [M-H]-, energy 130% NCE
Each csv file has the m/z values in the first column and the intensity values in the second column.
The columns are separated with commas.
See file sample_data.
@article{metatrans,
author = {Litsa, Eleni E. and Chenthamarakshan, Vijil and Das, Payel and Kavraki, Lydia E.},
title = {An end-to-end deep learning framework for translating mass spectra to de-novo molecules},
journal = {Communications Chemistry},
year = {2023},
}