branch: master 「№59928」
Commited by: Sergey Lyskov
GitHub commit link: 「3bae75bdbfd8efb1」 「№2806」
Difference from previous tested commit:  code diff
Commit date: 2017-12-18 19:45:24

Merge pull request #2806 from RosettaCommons/sergey/ui Adding UI release scripts

...


branch: master 「№59927」
Commited by: Sergey Lyskov
GitHub commit link: 「e927778a5f92d1d8」 「№2810」
Difference from previous tested commit:  code diff
Commit date: 2017-12-18 18:14:05

Merge pull request #2810 from RosettaCommons/sergey/binder updating build script, making machine-name calculation more stable

...


branch: master 「№59926」
Commited by: Rocco Moretti
GitHub commit link: 「6f96d35b3ca02742」 「№2807」
Difference from previous tested commit:  code diff
Commit date: 2017-12-18 11:07:11

Merge pull request #2807 from RosettaCommons/roccomoretti/option_tracer_issue Fix issue with Tracers and options which aren't found. With the recent tracer re-org, an unknown option results in an error from the Tracer system, as you attempt to use a tracer that hasn't been initialized from options yet. This PR fixes the double-error that occurrs, by merely printing a warning for uninitialized Tracers, rather than dying.

...


branch: master 「№59925」
Commited by: David E Kim
GitHub commit link: 「447ea5f8ceff42dc」 「№2779」
Difference from previous tested commit:  code diff
Commit date: 2017-12-16 12:39:29

Merge pull request #2779 from RosettaCommons/davidekim/windows_boinc_build Davidekim/windows boinc build

...


branch: master 「№59924」
Commited by: Adam Moyer
GitHub commit link: 「c500a55e47639030」 「№2802」
Difference from previous tested commit:  code diff
Commit date: 2017-12-15 13:30:30

Merge pull request #2802 from RosettaCommons/atom-moyer/Kinematics-Stub_from_Residue Utility functions for returning stub from residue orient atoms and RT from pair of residues

...


branch: master 「№59923」
Commited by: Andy Watkins
GitHub commit link: 「573953dcdfed81f1」 「№2801」
Difference from previous tested commit:  code diff
Commit date: 2017-12-15 10:51:39

Merge pull request #2801 from RosettaCommons/everyday847/cppcheck_resuppress Accidentally turned off cppcheck suppressions.

...


branch: master 「№59922」
Commited by: Andy Watkins
GitHub commit link: 「e1a015906a104fb4」 「№2798」
Difference from previous tested commit:  code diff
Commit date: 2017-12-14 14:26:31

Merge pull request #2798 from RosettaCommons/everyday847/fix_two_bugs Overzealous merge included two bad changes

...


branch: master 「№59921」
Commited by: Brian Weitzner
GitHub commit link: 「fa7b77a2cb5147b3」 「№2797」
Difference from previous tested commit:  code diff
Commit date: 2017-12-14 13:21:35

Merge pull request #2797 from RosettaCommons/weitzner/fix-gcc7-build Fix gcc 7 builds (w. cmake/ninja)

...


branch: master 「№59920」
Commited by: Andy Watkins
GitHub commit link: 「f953400f26c3d716」 「№2770」
Difference from previous tested commit:  code diff
Commit date: 2017-12-14 13:20:33

Merge pull request #2770 from RosettaCommons/everyday847/grab_bag Grab-bag of changes, predominantly automated code modernizations

...


branch: master 「№59919」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「9e169925ce4e4873」 「№2790」
Difference from previous tested commit:  code diff
Commit date: 2017-12-14 12:32:39

Merge pull request #2790 from RosettaCommons/aleaverfay/fix_rotamer_addition_bug RotamerSet_::add_rotamer_to_existing bugfix Fixing a pretty big bug in the way rotamers are added to a RotamerSet_. Back in PR #2111, merged about three weeks ago, I added new code to decrease the number of different residue-types that the RotamerSet thought it was dealing with because before then, any new rotamer was appended to the end, and a rotamer would be considered a new type if its type didn't match the type of the one that proceeded it. There's a good amount of code in the packer, though, that scales quadratically with the number of types per residue. It's silly if you've alternated between lysine and arginine while appending rotamers to your set to declare there being 100 different residue types. (This is all just exposition from that PR) The bug I introduced in this PR occurred when a rotamer was added to a set that contained only a single type, or when a rotamer was added for the last type in the set (e.g. TYR) which can pretty easily happen! Basically, I wasn't appending rotamers from the last type until I got to the next type -- and this kind of logic will always miss the very last type in the list (there's no next type to trigger rotamer addition) so if you were repacking a residue, you would never get the new rotamers you were trying to add. Thanks Gideon for the test case that exposed this problem. Fixing a second, long-standing bug in tracking which rotamer is the input rotamer during rotamer deletion. Previously, if you deleted the input rotamer (in the function that took a vector1< bool > listing which rotamers to delete), the RotamerSet_ would not set the index of the input rotamer to 0 as it should have. This can lead to a segfault with my new code as the index of the input rotamer might be off the end of the rotamers_ vector. @gideonla

...


branch: master 「№59918」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「34adaaf5b1bb0625」
Difference from previous tested commit:  code diff
Commit date: 2017-12-13 10:25:37

beautifying

...


branch: master 「№59917」
Commited by: Andy Watkins
GitHub commit link: 「e59af9e8be1e96bd」 「№2795」
Difference from previous tested commit:  code diff
Commit date: 2017-12-12 20:45:24

Merge pull request #2795 from RosettaCommons/everyday847/build_full_model_bug Updates to build_full_model

...


branch: master 「№59916」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「b2adf5a9880d2407」 「№2794」
Difference from previous tested commit:  code diff
Commit date: 2017-12-12 08:30:11

Merge pull request #2794 from RosettaCommons/aleaverfay/template_parameter_indentation_beautifier_change Beautifying after fixing two issues with the beautifier. 1. The beautifier expected template preambles to include "<" and end with ">"; it's legal, however, to say things like: template NamedAtomID::NamedAtomID(std::string const &, Size); where no "<" is ever found. The beautifier now handles this appropriately. 2. The beautifier never properly handled multi-line-template-parameter-list indentation and so all the lines in the template parameters were flush to the left, even if the original line was indented. Now all lines after the first are indented one more level. I have just now updated the tools/ repo, so I'm closing out this PR.

...


branch: master 「№59915」
Commited by: Brandon Frenz
GitHub commit link: 「05023860e56cc93d」 「№2791」
Difference from previous tested commit:  code diff
Commit date: 2017-12-12 00:46:48

Merge pull request #2791 from RosettaCommons/bfrenz/glycan_refinetest_fix fix to glycan refinement integration test flags

...


branch: master 「№59914」
Commited by: Adam Moyer
GitHub commit link: 「5db73882f2540a60」 「№2789」
Difference from previous tested commit:  code diff
Commit date: 2017-12-12 00:08:57

Merge pull request #2789 from RosettaCommons/atom-moyer/Pose-ResiduePairs Pose.residue_pairs(selector1, selector2)

...


branch: master 「№59913」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「1f19a8d503b7ec36」 「№2781」
Difference from previous tested commit:  code diff
Commit date: 2017-12-11 14:25:39

Merge pull request #2781 from RosettaCommons/jadolfbr/dih_cst_generator Main === Add a `DihedralConstraintGenerator` class using @tlinsky 's wonderful `ConstraintGenerator` framework. One instance works on a single dihedral angle type (aka Phi OR Psi). Use multiple generator to add constraints for multiple angles. Mainly works with BB dihedrals, by setting phi,psi,omega (`dihedral` option). Works with glycan backbones as well up to omega2. Additionally, you can set arbitrary dihedrals by defining the 4 atom names and 4 residues you want. (`dihedral_atoms` and `dihedral_residues` options). The StandardDeviation for the `CircularHarmonic` Func is set to a default of 16 degrees, which was found by taking the mean SD Within a particular CDR cluster and averaging all of those means together. The 16 degrees represents a good default that allows some movement, as well as useful lever-arm effects, but typically not huge changes to the overall structure of the loops. Other ==== - Updates to code_templates to remove the THREAD_LOCAL keywords. - Update rosetta_scripts_jd3 to allow printing of BOTH a RosettaScript template and a JobDefinition template if used without `-job_definition` option Tests ==== Includes a comprehensive Unit test for the `DihedralConstraintGenerator` testing the setting of particular dihedrals, custom dihedrals, and parsing custom dihedral angles from a RosettaScript.

...


< 1 .. 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 .. 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