branch: master 「№61512」
Commited by: Brian Weitzner
GitHub commit link: 「5dee8ba67c4d3cc4」 「№5151」
Difference from previous tested commit:  code diff
Commit date: 2020-12-18 17:24:45

Merge pull request #5151 from RosettaCommons/weitzner/fix-hdf5-cmake-build Fix HDF5 cmake build

...


branch: master 「№61511」
Commited by: Andy Watkins
GitHub commit link: 「072ce4bc24aa689b」 「№5148」
Difference from previous tested commit:  code diff
Commit date: 2020-12-18 17:11:23

Merge pull request #5148 from RosettaCommons/everyday847/recces_updates RECCES updates and bugfixes

...


branch: master 「№61510」
Commited by: Sergey Lyskov
GitHub commit link: 「9fc8c1aad302d7ed」 「№5149」
Difference from previous tested commit:  code diff
Commit date: 2020-12-18 13:50:10

Merge pull request #5149 from RosettaCommons/benchmark fixing scientific.cofactor_binding_sites test

...


branch: master 「№61509」
Commited by: Nina Bozhanova
GitHub commit link: 「c37fbbcaf2d41c98」 「№5093」
Difference from previous tested commit:  code diff
Commit date: 2020-12-17 13:14:13

Merge pull request #5093 from RosettaCommons/ninabozhanova/chromophore Adding ReadResidueCoordinatesFromPDB class, which reads and saves xyz coordinates for the specified residue(s) from a PDB file, and a unit test for it.

...


branch: master 「№61508」
Commited by: Brian Coventry
GitHub commit link: 「896736e33ce16151」 「№4917」
Difference from previous tested commit:  code diff
Commit date: 2020-12-16 15:00:15

Merge pull request #4917 from RosettaCommons/bcov/dont_reinit_mover Option to not reload XML for every structure

...


branch: master 「№61507」
Commited by: Vikram K. Mulligan
GitHub commit link: 「8ad9c9f1a9359f05」 「№5139」
Difference from previous tested commit:  code diff
Commit date: 2020-12-15 17:54:38

Merge pull request #5139 from RosettaCommons/vmullig/BuriedUnsatHbonds2_to_protocols Move BuriedUnsatHbonds2 filter from devel to protocols This was requested by a user. @aleaverfay reports that this can be moved to protocols. Tasks: - [x] Move files. - [x] Update namespaces. - [x] Update `.src.settings` files. - [x] Check compilation. - [x] Check unit test compilation. - [x] Check that there exists a unit or integration test. --> Yes, several integration tests. - [x] Check that XSD functions exist. - [x] Add a description to the XSD function. - [x] Check that parse_my_tag function exists. - [x] Documentation. - [x] Beauty. Integration test changes are all cosmetic and expected.

...


branch: master 「№61506」
Commited by: Sergey Lyskov
GitHub commit link: 「5a82c7c9b91219aa」 「№5126」
Difference from previous tested commit:  code diff
Commit date: 2020-12-13 16:11:30

Merge pull request #5126 from RosettaCommons/benchmark Benchmark scripts update: adding SLURM driver

...


branch: master 「№61505」
Commited by: Vikram K. Mulligan
GitHub commit link: 「1295438cd4bd2be3」 「№5135」
Difference from previous tested commit:  code diff
Commit date: 2020-12-12 00:30:01

Merge pull request #5135 from RosettaCommons/vmullig/update_docs1 Update documentation so that main repo points to current master of docs. This is to add the page on using VSCode with RosettaScripts (https://www.rosettacommons.org/docs/wiki/scripting_documentation/RosettaScripts/Using-RosettaScripts-with-VSCode).

...


branch: master 「№61504」
Commited by: Rocco Moretti
GitHub commit link: 「ce262d3634861f3c」 「№5122」
Difference from previous tested commit:  code diff
Commit date: 2020-12-08 17:48:25

Merge pull request #5122 from RosettaCommons/roccomoretti/fix_PoseRTS_get_variants Fix issue with PoseResidueTypeSet::get_all_types_with_variants_aa() It looks like that due to caching behavior, PoseResidueTypeSet::get_all_types_with_variants_aa() will "double up" the underlying residue types. It turns out that special casing this function isn't necessary, as the base class implementation effectively only uses the public interface which is properly overloaded.

...


branch: master 「№61503」
Commited by: Jack Maguire
GitHub commit link: 「d183d3a67482f6c3」 「№5121」
Difference from previous tested commit:  code diff
Commit date: 2020-12-07 15:02:05

Merge pull request #5121 from RosettaCommons/JackMaguire/InverseRotCst Updating inverse rotamer CCs

...


branch: master 「№61502」
Commited by: Daniel Farrell
GitHub commit link: 「6c8a8f044a9959e1」
Difference from previous tested commit:  code diff
Commit date: 2020-12-03 12:51:28

Make addVirtualResAsRoot add a residue to its own chain (#5116) I think that this is a reasonable change since it doesn't make sense to have the virtual root in the same chain grouping as the last residue of the pose that you are adding it too. the current implementation is annoying because if you're trying to make sure the pdb_info is is line with experimental data I use pose.chain_sequence(i) to get the polymeric entities, then each are aligned. Adding an X at the end can make this annoying. If this PR breaks a lot -- then I will figure out the corner case in my own code. * Make vrt residue on its own chain * update ssa test

...


branch: master 「№61501」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「0f25f47ae98dc403」
Difference from previous tested commit:  code diff
Commit date: 2020-12-02 09:02:52

Merge pull request #5110: aleaverfay/bugfix_pepspec_anchor_at_term pepspec: copy coords instead of overwriting anchor This fixes a bug brought to me by Astghik Tsokolakyan who was getting a segfault from the count_pair code and saw that I had written count_pair. Astghik was using the pepspec application setting the pep_anchor to be the first residue in the peptide, but also extending the peptide 3 residues off both the N- and C-termini. The extension code works nicely building off the termini, but after the extension completes, it does some centroid modeling and switches back to fullatom where it calls "replace_residue" on the anchor residue to restore its rotamer. This is a problem when the anchor residue in the original pose was a termini residue and its a middle-of- the-chain residue after the extensions have been added. One solution is to not anchor from either termini, but that can't be the right solution as the app in its documentation says that you should be able to use a single residue for the anchor. The bug fix is to copy the coordinates that can be copied from the original residue into the new residue.

...


branch: master 「№61500」
Commited by: Sergey Lyskov
GitHub commit link: 「fac69dd63b19b7d5」 「№5111」
Difference from previous tested commit:  code diff
Commit date: 2020-12-01 22:40:56

Merge pull request #5111 from RosettaCommons/sergey/residue-fix fixing update_ResidueType_enum_files script

...


branch: master 「№61499」
Commited by: Vikram K. Mulligan
GitHub commit link: 「22408fd82586485c」 「№5108」
Difference from previous tested commit:  code diff
Commit date: 2020-12-01 19:31:04

Merge pull request #5108 from RosettaCommons/vmullig/update_energy_method_tracers Update tracer names for classes in core/energy_methods This is a follow-up PR to #5103 . That PR corrected the namespaces for files in `core/energy_methods`, but was not intended to alter output (so that I could confirm that there were no integration test changes). This replaces the tracer names with ones reflecting the new namespaces, which _will_ change a lot of integration tests (but trivially in each case). <b>Note:</b> The initial diff includes all the changes from PR #5103, since this is branched off of that branch. Once #5103 is merged, I will merge the latest master into this branch to make it clearer that the only changes are from commit d6df11b, only updating tracer names. - [x] PR #5103 must be merged before this PR. - [x] Update integration tests that selectively unmute tracers.

...


branch: master 「№61498」
Commited by: Vikram K. Mulligan
GitHub commit link: 「3eaef2aa50482bc2」 「№5103」
Difference from previous tested commit:  code diff
Commit date: 2020-12-01 15:03:03

Merge pull request #5103 from RosettaCommons/vmullig/clean_up_namespaces_a_wee_bit Clean up the namespaces a bit. When energy methods were moved from core/scoring to core/energy_methods in order to split core.3 and create the current core.4, there was a need to finish the split quickly: linking the enormous core.3 library was taking too long and using too much memory for some people's systems, and the change needed to be in master before additional energy methods were added. Unfortunately, this meant that the energy methods retained their old namespace, breaking the convention of ensuring that directory structure and namespace match in Rosetta. This PR aims to clean this up, and to change the namespace for the energy methods that are in core/energy_methods from core::scoring to core::energy_methods. Note: in the interests of keeping the integration tests interpretable, this PR does not change tracer names. Pull request #5108 will subsequently update the tracer names. This PR must be merged before that one. For reviewers: Although this is a huge PR, it should only change namespaces. (The only other cases are a few places where I switched new to make_shared, and one or two places where I switched MyClass myobject = MyClass( params ) to MyClass myobject( params ).) Nothing in this PR should alter Rosetta function or output (but for possible trajectory changes that are hard to anticipate from mysterious things that the compiler does differently).

...


branch: master 「№61497」
Commited by: Teun Hoevenaars
GitHub commit link: 「d763ec9657e8bce5」 「№5105」
Difference from previous tested commit:  code diff
Commit date: 2020-11-30 14:37:59

Merge pull request #5105 from RosettaCommons/teunhoevenaars/fix_mathvector_sum error corrected of a zero initialization without type

...


< 1 .. 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 .. 354 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled