Blog

GSoC 2024 - 2D visualization for small molecules

Contributor: Valerij Talagayev (@talagayev)

Mentors: Cédric Bouysset (@cbouy), Richard Gowers (@richardjgowers) and Yuxuan Zhuang (@yuxuanzhuang)

Organization: MDAnalysis

Release: GSoC 2024: 2D visualization for small molecules Release

During the Google Summer of Code 2024 program I was working on the 2D Visualization of small molecules, which is an important project, that would allow people to easily visualize the molecule that they have in their file through the selection of the molecule as an AtomGroup in MDAnalysis.

Goals of the project

The goal of the project was to create a code, that would allow the user to select an AtomGroup with the help of MDAnalysis, which would be used with an RDKit Converter to convert the molecule into an rdkit mol object, which would be used for the visualization.

My Proposal consisted of the following steps:

  • Select the AtomGroup via an input from the user via u = mda.Universe("input.pdb") to create an MDAnalysis Universe and ag = u.select_atoms("resname UNK") to select the AtomGroup with the molecule that needs to be displayed
  • Convert the selected AtomGroup into an rdkit mol object via ag.convert_to("RDKit")
  • Apply Chem.RemoveHs and AllChem.Compute2DCoords to obtain a 2D visualization of the molecule
  • Display the molecule via IpyWidgets with different checkboxes, that by selection would highlight specific parts of the molecule

After discussion with the mentors and suggestions regarding how the code should be structured, it was decided that I would proceed with this suggestion and would apply the following steps with later on adding the additional features in the IpyWidgets visualization, which would give the user important information in regards to the characteristics of the molecule that is being visualized.

What I did

The outcome of this GSoC program is a package called mdonatello which was created as follow:

Main Visualization Code

The main part of the code consisted of setting up the widget for the visualization, which would allow the display of the molecule in a jupyter notebook. This is performed in the MoleculeVisualizer class that is responsible for the visualization. It initializes several interactive widgets from IpyWidgets such as a dropdown menu to select the molecule that the user wants to display and the checkboxes that control the aspect of the image displayed, as explained in the next section.

This main code was the first part of the code that I designed and was in the beginning only able to display the molecule and had only one interactive checkbox, which displayed the atom indices of the molecules, but as more and more features were added the visualization grew bigger and had more features that it needed to display.

Feature Addition

The feature addition was the next step that I was working on and was mainly the biggest part of the project since there was always an additional interesting feature that could be added that was proposed either by myself or one of the mentors.

The first feature addition that I was working on were the physiochemical properties as well as the number of hydrogen bond donors and acceptors of the molecule.

Next, I added checkboxes that would highlight the related features on the image. For example, I implemented pharmacophore checkboxes, which by selection would highlight the selected pharmacophores, thus by selecting a hydrophobic feature, the atoms of the molecule that are hydrophobic via the RDKit pharmacophore recognition were highlighted in the assigned colors.

Here is a short summary of features that I added for the visualization, which would show a value for the corresponding feature or adjust the figure of the molecule to display the values:

  • Phyisochemical Properties
  • Atom Indices
  • Partial Charges
  • Hydrogen Bond Donors&Acceptors

And here is a short summary of features, that will highlight a specific atoms and bonds corresponding to their features if they are selected:

  • Rotatable Bonds
  • Partial Charge Heatmap
  • Functional Groups
  • Stereocenters
  • Murcko Scaffold
  • Pharmacophores

There is a separate checkbox for each pharmacophoric feature, thus you can select the specific feature that needs to be highlighted.

For the functional groups it currently uses SMART Patterns to identify certain functional groups and will then generate the checkboxes of the functional groups that were recognized and by selecting them you are able to see the atoms of this functional group.

Code Restructure

This is also a section where the work that was done throughout the whole project. In the beginning, the code was mainly consisting of functions in one file and this was one of the points that I was glad that my mentors helped me with. The code restructure allowed me to go from a code that was first based upon only function to structure it with classes. In the end, the separate classes were moved into separate files. The benefit of such a structure is that by having each class/function have a single responsibility, the code is divided into small parts, which makes it easier to understand the code and maintain it.

Actions, Testing and Documentation

This would be the final part of what I did and here I would put all these three parts together. A testsuite based on the pytest framework was created for this project, in addition to the code being uploaded to Codecov to display the coverage of the code. Furthermore, a CI CD workflow was created, which installs the package and runs the tests on Linux, MacOS and Windows systems with the Python versions 3.10, 3.11 and 3.12 with different IpyWidgets versions, with the oldest supported version for this code being 7.6.4. Finally, a documentation based on the MDAKits Template was created and can be found here: https://mdonatello.readthedocs.io/

Current State

MDonatello is available and can be installed and used on your system (see the How to use it section). Some improvements are planned as explained below.

What’s left to do

The code is working, but there is always things that can be improved. The main parts of the code that would need to be improved would be the functional groups, since currently the SMART Patterns are not optimal and it leads to cases of functional groups overlapping, an example being the recognition of an hydroxyl group in an carboxylic acid group, thus such cases need to be separated. Additionally, the figure generation is not optimal, since currently it uses Draw.MolToImage, which during the discussion with the mentors was decided as an not so good option and it would need to be adjusted. Additionally, the Partial Charge Heatmap is currently mainly highlighting the atoms, but there is an option to display it as a heatmap, which would require code adjustment. Then the update_display is also not optimal currently and would need to be improved. There are also some small code structure details, that would need to be adjusted for the code to be more clean and structured and last, but not least the code would need to be moved into the MDAKits and also published in conda-forge and pypi to make it more accessible.

What code got merged (or not) upstream

There were multiple PRs created for this project, but they were merged to obtain a big and summarized PR, which is also the version that is used in the Release

How to use it

Currently MDonatello is a separate package that can be git cloned and installed with the following steps:

First clone the repository:

git clone https://github.com/talagayev/MDonatello

Create a virtual environment and activate it:

conda create --name mdonatello
conda activate mdonatello

Then go into the MDonatello folder:

cd MDonatello

Finally this package from source:

pip install -e .

To use the mdonatello package you need to run a jupyter notebook, thus run the command:

jupyter notebook

Now that you started a jupyter notebook create a notebook file and enter the following command to use mdonatello: Here you need to adjust the name of the PDB File to your PDB File and the resname of the molecule to your molecule

import MDAnalysis as mda
from mdonatello import MoleculeVisualizer

u = mda.Universe("input.pdb")
ag = u.select_atoms("resname UNK")
visualizer = MoleculeVisualizer(ag, show_atom_indices=False, width=-1, height=-1)

This would lead you to obtain the following display, where you could then select the molecule and checkboxes:

Example of MDonatello Display

Lessons Learned During GSoC

Here I would highlight some lessons that I learned during GSoC2024:

  • Have an Idea of the overall structure of the code
  • Discuss the ideas with the mentors to see their opinion
  • Don’t be afraid to ask questions
  • Try to work on different aspects of the code (in my case I was almost always only focusing on feature addition and needed to get reminded that there are other parts)
  • Try to learn as much from the mentors and apply it in your code
  • Getting a meeting with all mentors that have different time zones is sometimes tricky :)

Conclusion & The Future

It was a fun project and I liked working on it, but the work doesn’t stop here. As I mentioned some aspects of the code can be improved and things that can be done, so I will continue to work on the code after GSoC 2024, here are again the short highlights that I already mentioned that I would work on:

  • Code structure improvement
  • Figure Generation and SMART Patterns need to be improved
  • Heatmap needs to be created for partial charges instead of atom highlighting
  • Adding the package to MDAKits and conda-forge
  • New Features can be added

Acknowledgements

I would like to thank MDAnalysis for giving me the opportunity to work on this project. The application process was very nice and detailed, I liked it that during the application process. I was able to get to know the MDAnalysis code more and contribute to the code and get to know some people from the community during this time.

I would like to thank Oliver Beckstein (@orbeckst) and Jenna M Swarthout Goddard(@jennaswa) for the insights and help with the organization and structure during the application, I am glad that I was able to contribute to MDAnalysis with this project.

I would also like to thank my mentors Cédric Bouysset (@cbouy), Richard Gowers (@richardjgowers) and Yuxuan Zhuang (@yuxuanzhuang), who helped me a lot during the project, with their helpful and insightful mentoring. I am glad, that I was able to learn from you and it helped me to improve my coding skills. Also, shoutout to Hugo MacDermott-Opeskin (@hmacdope) for his help with the PR requests during the application process.

Finally, I would also like to thank Google for offering this program and supporting open-source software.

MDAnalysis Community Survey 2024

We are excited to announce the launch of our MDAnalysis Community Survey 2024! Do you or your institution use, develop, contribute to, or sponsor MDAnalysis? Have you attended MDAnalysis workshops or user group meetings? Have you heard about MDAnalysis, but are still learning how to get started or looking for more ways to get involved? If any of these things sound like you, we want to hear from you as part of our valued community! Your feedback is crucial in helping us understand the diverse needs and experiences within our community and guiding our efforts to make MDAnalysis an even more inclusive and welcoming community.

Purpose of the Survey

This survey aims to gather your insights and feedback on various aspects of MDAnalysis, especially about your experiences as a community member and your engagement with the MDAnalysis project.

What will the data be used for?

The information from this survey will help us foster an inclusive and supportive community by:

  • Determining preferred MDAnalysis communication channels and developing a content strategy to keep the community informed.
  • Informing workshop and event planning efforts to reach diverse audiences based in various time zones across the globe.
  • Ensuring MDAnalysis resources are findable and accessible.

Confidentiality and Anonymity

We value your privacy so your responses will be kept confidential and anonymous and only shared with MDAnalysis survey administrators. Demographic information will only be reported in an aggregated format to generate high-level insights.

How to Participate

We invite all members of the MDAnalysis community to participate in the survey. We greatly appreciate your time answering a few questions (around 10 minutes) before August 31st, 2024. Please take a moment to share your thoughts and experiences with us by clicking the following link to access the survey:

Take the Survey

Thank you so much for being a part of the MDAnalysis community. We cannot wait to hear from you!😀

Acknowledgment

This survey was developed as part of an Outreachy project.

Outreachy The following resources were consulted to aid in the development of this survey:

@adetutudeborah (Outreachy intern working with MDAnalysis) @jennaswa @micaela-matta (Outreachy mentors)

CCPBioSim Industry Talk by Richard Gowers (MDAnalysis Core Developer)

CCPBioSim Logo

MDAnalysis has partnered with CCPBioSim to offer an industry talk on June 19, 2024 from 14:00 - 15:30 BST, presented by MDAnalysis core developer, Richard Gowers (@richardjgowers).

Title: MDAnalysis and Alchemical Simulations

Abstract: MDAnalysis is a popular Python package for the analysis of molecular dynamics simulation data. After introducing the package in broad strokes, this talk will give insight into how this package has been used and extended to process data coming from so-called “alchemical simulations”; where molecules are perturbed through non-physical states to provide estimates of properties such as binding affinities. Topics included will be biopolymer recognition, handling of multistate simulation data and analysing hybrid topology alchemical models.

Although attendance is free, you must register to receive the relevant Zoom information. Check out the CCPBioSim event page to access the registration link and find out more information.