Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PointCloud to Graph Protein Lifting (PointCloud to Graph) #42

Open
wants to merge 53 commits into
base: main
Choose a base branch
from

Conversation

bertranMiquel
Copy link

@bertranMiquel bertranMiquel commented Jul 9, 2024

This notebook shows how to import UniProt protein data and convert it to a graph using the PointCloudToGraph class. Proteins are represented as point clouds where each point is a residue in the protein, setting CarbonAlpha as its centers. The graph is created by connecting residues that are close to each other in the 3D space or that appear in a sequential order.

The point cloud 3D domain is lifted to a graph defining the edges between its nodes in the following way:
- Sequentialwise: Connecting residues that appear in a sequential order (one after another). This approach is based on the presence of peptide bonds, which link the amino acids in a protein chain in a specific sequence.
- KNN: Connecting residues that are close to each other in the 3D space. This approach is based on the physical proximity of the residues in the protein structure.

Additionally, we have also included the following features to the graph:

  • Node key: One-hot encoding per each residue type.
  • Pos: position of the residues in the 3D space.
  • Edge features: angle (direction between CarbonAlpha (CA) and CarbonBeta (CB) atoms of each residue between different residues) and distances between the connected residues.

Copy link

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

@gbg141 gbg141 added the challenge-icml-2024 Challenge submission label Jul 9, 2024
@gbg141
Copy link
Member

gbg141 commented Jul 9, 2024

Hello @bertranMiquel! Thank you for your submission. As we near the end of the challenge, I am collecting participant info for the purpose of selecting and announcing winners. Please email me (or have one member of your team email me) at guillermo_bernardez@ucsb.edu so I can share access to the voting form. In your email, please include:

Before July 12, make sure that your submission respects all Submission Requirements laid out on the challenge page. Any submission that fails to meet this criteria will be automatically disqualified.

@gbg141 gbg141 added award-category-2 Lifting to Combinatorial, Hypergraph or Graph Domain award-category-3 Feature-based Lifting (including those that simultaneously leverage the connectivity) labels Jul 9, 2024
@bertranMiquel
Copy link
Author

bertranMiquel commented Jul 9, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
award-category-2 Lifting to Combinatorial, Hypergraph or Graph Domain award-category-3 Feature-based Lifting (including those that simultaneously leverage the connectivity) challenge-icml-2024 Challenge submission
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants