Add correlated parameter perturbation to PerturbBundle#683
Open
everyday847 wants to merge 1 commit intoRosettaCommons:mainfrom
Open
Add correlated parameter perturbation to PerturbBundle#683everyday847 wants to merge 1 commit intoRosettaCommons:mainfrom
everyday847 wants to merge 1 commit intoRosettaCommons:mainfrom
Conversation
Introduces <Correlation> sub-tags for PerturbBundle that specify Pearson correlation coefficients between bundle parameters. When present, correlated parameters are perturbed jointly via multivariate Gaussian sampling (Cholesky decomposition of the covariance matrix). Parameters not involved in correlations continue to be perturbed independently. Adds a Cholesky decomposition wrapper in numeric/linear_algebra/ backed by Eigen::LLT, exposing only vector1-based types.
Member
|
Nice -- this is a feature that had been on my wishlist for a long time.
…On Fri, May 1, 2026 at 12:16 PM Andy Watkins ***@***.***> wrote:
Introduces sub-tags for PerturbBundle that specify Pearson correlation
coefficients between bundle parameters. When present, correlated parameters
are perturbed jointly via multivariate Gaussian sampling (Cholesky
decomposition of the covariance matrix). Parameters not involved in
correlations continue to be perturbed independently.
Adds a Cholesky decomposition wrapper in numeric/linear_algebra/ backed by
Eigen::LLT, exposing only vector1-based types.
------------------------------
You can view, comment on, or merge this pull request online at:
#683
Commit Summary
- bb306f5
<bb306f5>
Add correlated parameter perturbation to PerturbBundle
File Changes
(7 files <https://github.com/RosettaCommons/rosetta/pull/683/files>)
- *M* source/src/numeric.src.settings
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-309e3689ece85463ad59432f4cd90eaf8af6d2c61f7074abed3ddd2566edffc8>
(1)
- *A* source/src/numeric/linear_algebra/cholesky_decomposition.cc
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-3b0af938815c3f8e97087b31ad343a7a9b1c9776244897edcfe2562729175ce5>
(69)
- *A* source/src/numeric/linear_algebra/cholesky_decomposition.hh
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-0c90fe074549e5a4ec8f5c50bff8b00dd0176d581e9d6a2f2c0f9d72fbe48802>
(38)
- *M* source/src/protocols/helical_bundle/PerturbBundle.cc
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-0991645d74e22310cfd667a3c3c8de7c0d9832a767245264ea3e05b525ea4d70>
(296)
- *M* source/src/protocols/helical_bundle/PerturbBundle.hh
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-38ad3b3d5c8ba693a8b89b524188d6b4c6e1293bfbc7bc2fd6a5ec27bc6bf0d7>
(42)
- *M* source/test/protocols.test.settings
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-9c214c7c7aa04f119433bca39c6fe25f202502f75d6fe0eda3991bed09c93052>
(1)
- *A*
source/test/protocols/helical_bundle/PerturbBundleCorrelatedTests.cxxtest.hh
<https://github.com/RosettaCommons/rosetta/pull/683/files#diff-4608d9c6c5fd199bb964c5fdfe23bbcd23ec5a1f4a7e1faa6b18c22d9bc89fb8>
(336)
Patch Links:
- https://github.com/RosettaCommons/rosetta/pull/683.patch
- https://github.com/RosettaCommons/rosetta/pull/683.diff
—
Reply to this email directly, view it on GitHub
<#683>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABACZUF4UKRVE5KPVJHCV5L4YTEVZAVCNFSM6AAAAACYNSKO6KVHI2DSMVQWIX3LMV43ASLTON2WKOZUGM3DKNBQGM2TMMY>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces sub-tags for PerturbBundle that specify Pearson correlation coefficients between bundle parameters. When present, correlated parameters are perturbed jointly via multivariate Gaussian sampling (Cholesky decomposition of the covariance matrix). Parameters not involved in correlations continue to be perturbed independently.
Adds a Cholesky decomposition wrapper in numeric/linear_algebra/ backed by Eigen::LLT, exposing only vector1-based types.