branch: master 「№59477」
Commited by: Rocco Moretti
GitHub commit link: 「ddc87c2f0380b6a9」 「№609」
Difference from previous tested commit:  code diff
Commit date: 2017-05-14 11:24:21

Merge pull request #609 from RosettaCommons/roccomoretti/cartbonded_auto_torsion Cart_bonded: automatically add torsion parameters if missing The cart_bonded term can automatically pull bond lengths and angles from the ResidueType if there isn't values listed in the database. It didn't, however, do anything about constrained improper torsions (e.g. for planar systems). These changes take the existing improper torsion parameter generation code from molfile_to_params.py that @yfsong added and puts it into Rosetta to allow autogeneration of torsional restraints for planar systems (aromatic bonds, double bonds to carbon) for ResidueTypes which don't already have any data listed in the database. -- It doesn't change anything for other sorts of impropers (e.g. aniline protons) that might also have a constrained geometry, though those should be easy enough to add later, if someone figures out what needs to be added. Potential User Facing Change: While the autogeneration of parameters should be turned off if you feed manual parameters for the residue to -score::extra_improper_file, the behavior of the residue identifier for that file (and for the Rosetta database files) has changed. For non-protein, non-nucleic acid residue types, the residue identifier is the full name, rather than the name3. In most cases this shouldn't be an issue (as normally for ligands and the like name3 == full name), but it might catch someone out on edge cases.

...


branch: master 「№59476」
Commited by: Rocco Moretti
GitHub commit link: 「76c5b2d906af280e」 「№2260」
Difference from previous tested commit:  code diff
Commit date: 2017-05-14 11:07:47

Merge pull request #2260 from RosettaCommons/roccomoretti/fix_ligand_database_io Attempt to fix ligand_database_io test I think I've tracked the instability in this test to the use of a std::set< ConstraintOP > in ResidueTorsionRestraints. This was used in removing/re-adding constraints, such that the order of the constraint addition was different run-to-run, as the address layout is different. Different constraint orders means that there are slight differences in energy summing (due to machine precision rounding), which snowball during minimization. Changing the set to a vector1 appears to fix the instability issue. Integration test changes in ligand docking tests expected, as they settle down to their (hopefully) stable trajectories.

...


branch: master 「№59475」
Commited by: Rocco Moretti
GitHub commit link: 「c66e78da477d251a」
Difference from previous tested commit:  code diff
Commit date: 2017-05-14 11:01:49

Clean up and beautify files in master

...


branch: master 「№59474」
Commited by: havranek
GitHub commit link: 「229c8f84cb6394f0」 「№2244」
Difference from previous tested commit:  code diff
Commit date: 2017-05-13 09:20:22

Merge pull request #2244 from RosettaCommons/havranek/memfix_sasa Havranek/memfix sasa

...


branch: master 「№59473」
Commited by: Rocco Moretti
GitHub commit link: 「98b4e41183c5a05f」 「№2098」
Difference from previous tested commit:  code diff
Commit date: 2017-05-12 16:15:23

Merge pull request #2098 from RosettaCommons/roccomoretti/Transform_reporting_additions Fixes to ligand scoring grid caching While docking large ligands with multiple starting locations, I realized the ligand docking scoring grid caching wasn't working appropriately. * Only the conformation and not the grid center was being hashed, which means for multiple starting locations you could get a grid from the cache that wasn't over any of your ligand. * Const-correctness was not a thing in the scoring grid hierarchy, which meant that even if you get the correct caching key, the cached grid might not be what you want, as it might have been modified in the meantime. -- I attempted to impose const-correctness and proper copy-before-modifying semantics on the scoring grid. While I was at it, I added more reporting functionality to the Transform mover, to recognize when the grid size is inadequate, and to recommend a grid size that's hopefully better. (Grid size recommendation are still somewhat "beta".)

...


branch: master 「№59472」
Commited by: Christine Kang
GitHub commit link: 「dadbb40b38ec2d42」 「№2206」
Difference from previous tested commit:  code diff
Commit date: 2017-05-11 19:24:03

Merge pull request #2206 from RosettaCommons/csykang/retro_inverso Adding a pilot app: This pilot app will take a pose and generate a retroinverso version of it.

...


branch: master 「№59471」
Commited by: Rocco Moretti
GitHub commit link: 「94998f0e5b038b6d」
Difference from previous tested commit:  code diff
Commit date: 2017-05-11 16:10:16

Back out ligand_database_io debugging changes.

...


branch: master 「№59470」
Commited by: Rocco Moretti
GitHub commit link: 「1f2fd2a44a2f110e」 「№2247」
Difference from previous tested commit:  code diff
Commit date: 2017-05-11 10:22:29

Merge pull request #2247 from RosettaCommons/roccomoretti/asst_test_fixes Two quick test fixes * ResidueType::delete_atom() was using atom data after deleting, which the unit.addsan tests was tripping over. * There was an uninitialized member variable in NPDHBondInteractionGraph that unit.ubsan was tripping over.

...


branch: master 「№59469」
Commited by: Vikram K. Mulligan
GitHub commit link: 「23790bf4900cd4b3」 「№2251」
Difference from previous tested commit:  code diff
Commit date: 2017-05-10 20:07:20

Merge pull request #2251 from RosettaCommons/vmullig/fix_select_by_layer_bug Caught a bug in SelectResiduesByLayer DSSP was being called even when explicitly disabled.

...


branch: master 「№59468」
Commited by: Vikram K. Mulligan
GitHub commit link: 「5b7bf922647cd329」
Difference from previous tested commit:  code diff
Commit date: 2017-05-10 19:19:18

Beautifying unbeautified files in master.

...


branch: master 「№59467」
Commited by: Rocco Moretti
GitHub commit link: 「74763ccf397f9ca3」
Difference from previous tested commit:  code diff
Commit date: 2017-05-09 15:12:07

More annotation of ligand_database_io integration test. I can't replicate the test server changes locally, so hopefully more loging output will help track down the instability.

...


branch: master 「№59466」
Commited by: Sergey Lyskov
GitHub commit link: 「3dbeb922166a5e97」 「№2248」
Difference from previous tested commit:  code diff
Commit date: 2017-05-09 15:09:44

Merge pull request #2248 from RosettaCommons/sergey/f Adding bindings for xyzMatrix .xy properties

...


branch: master 「№59465」
Commited by: Andrew Watkins
GitHub commit link: 「e6398966e7d219b7」 「№2246」
Difference from previous tested commit:  code diff
Commit date: 2017-05-09 15:02:45

Merge pull request #2246 from RosettaCommons/everyday847/stepwise_NCNTs Somehow, my last PR stopped being updated with commits in this branch...

...


branch: master 「№59464」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「2bda40f8d7d11383」 「№2239」
Difference from previous tested commit:  code diff
Commit date: 2017-05-09 09:20:15

Merge pull request #2239 from RosettaCommons/aleaverfay/faster_lkball_rpe LK_Ball performance improvements Two speedups for lk_ball in anticipation of it becoming part of the default score function. First: Avoid construction/destruction of a count_pair object in the LK_BallEnergy evaluation by using the "invoker" scheme where a stack-allocated object with the virtual function "invoke" is handed a stack-allocated count-pair object by the CountPairFactory. This avoids a call to new and delete. Stack allocation is much much faster than heap allocation. (The same thing could be done with the FA_ElecEnergy.) This speeds up the off-rotamer packer by 1.18x when using lk_ball. Second: Speed up lk-ball when using the linear-memory interaction graph by splitting RPE calculations for LK_BallEnergy into bb/bb, bb/sc, sc/bb, and sc/sc interactions. This drops LK-ball evaluation from being the largest single expense in the packer's deltaE calculation, to being the smallest of the atom-wise energy calculations. This is surely the result of the tighter bounding sphere pruning that allows the calculation to skip interaction calculations that it can prove are out of range.

...


branch: master 「№59463」
Commited by: Andrew Watkins
GitHub commit link: 「fb7757bba4706249」 「№2249」
Difference from previous tested commit:  code diff
Commit date: 2017-05-08 16:24:51

Merge pull request #2249 from RosettaCommons/everyday847/RT_count Update ignore_list to ignore RT # change

P. Douglas Renfrew 7 years
I like this commit in spirit...but, you need to make an exception for the "number_of_residuetypes" integration test
Andy Watkins 7 years
We discussed this on Slack -- for everyone else watching, there's still a differently-formatted line in that integration test that will still change.
...


branch: master 「№59462」
Commited by: Rocco Moretti
GitHub commit link: 「e057771426ce584c」 「№2100」
Difference from previous tested commit:  code diff
Commit date: 2017-05-08 10:42:00

Merge pull request #2100 from RosettaCommons/roccomoretti/RosettaScripts_empty_sfxn A few small, unrelated administrative changes. * Tell git to ignore the DAlphaBall executable if it's built (in main/source/external/DAlpahBall/) * Update the naive/default runtimes for integration tests. This was originally going to add "empty" to the list of pre-defined scorefunctions in RosettaScripts -- I dropped that plan, as it conflicts with the manual definition of "empty" within the XML, which a number of scripts are using.

...


< 1 .. 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 .. 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