-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* begin consolidating the structural features for a protein * update the core to use ndarray * src and Cargo * slim utilities * move to NDarray * update tests
- Loading branch information
Showing
8 changed files
with
730 additions
and
269 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//! Protein Featurizer for ProteinMPNN/LignadMPNN | ||
//! | ||
//! Extract protein features for ligandmpnn | ||
//! | ||
//! Returns a set of features calculated from protein structure | ||
//! including: | ||
//! - Residue-level features like amino acid type, secondary structure | ||
//! - Geometric features like distances, angles | ||
//! - Chemical features like hydrophobicity, charge | ||
//! - Evolutionary features from MSA profiles | ||
mod ndarray_impl; | ||
mod utilities; |
Oops, something went wrong.