Skip to content

Instantly share code, notes, and snippets.

@n-yoshikawa
Created August 4, 2018 06:40
Show Gist options
  • Save n-yoshikawa/fd90677fe6bc5a76d0d1efe4666683d1 to your computer and use it in GitHub Desktop.
Save n-yoshikawa/fd90677fe6bc5a76d0d1efe4666683d1 to your computer and use it in GitHub Desktop.
Summary of my work at Google Summer of Code 2018

In Google Summer of Code 2018, I worked on Fast, Efficient Fragment-Based Coordinate Generation. My contribution was as follows:

Fragment-based coordinate generation

I implemented a faster coordinate generation method in this task. In this method, molecules are separated into fragments by rotable bonds. If a fragment is in our database, the coordinates of atoms in the fragment are set according to the information from the database. 3D structure of the input molecule is obtained by connecting fragments and atoms.

This task is completed and already merged. By this new implementation, coordinate generation got about 5 times faster.

Distance geometry method

I debugged the implementantion of distance geometry method. Distance geometry method is used when fragment-based coordinate generation failed to generate a correct stereochemistry. In this method, atoms are moved so that they fulfill the distance bounds and volume bounds. Previous implementation did not work because of incorrect stereochemistry check. I found that distance geometry method may work by replacing stereochemistry check with different one.

This work is not completed but I made some progress.

Future work

  • Write a scientific paper about fragment-based coordinate generation
  • Implement better distance geometry method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment