branch: master 「№60072」
Commited by: Kale Kundert
GitHub commit link: 「333d99699777cd6a」 「№2979」
Difference from previous tested commit:  code diff
Commit date: 2018-02-26 17:09:17

Merge pull request #2979 from RosettaCommons/kalekundert/core_rosetta_scripts_utils Move parse_task_operations(), parse_score_function(), etc. into core.

...


branch: master 「№60071」
Commited by: Kale Kundert
GitHub commit link: 「213408af5611131b」 「№2977」
Difference from previous tested commit:  code diff
Commit date: 2018-02-24 11:43:49

Merge pull request #2977 from RosettaCommons/kalekundert/show_packer_task Show the whole packer task.

...


branch: master 「№60070」
Commited by: Vikram K. Mulligan
GitHub commit link: 「8f6a366c708cb747」 「№2975」
Difference from previous tested commit:  code diff
Commit date: 2018-02-23 05:46:13

Merge pull request #2975 from RosettaCommons/vmullig/fa_dun_ncaa_mirror_scoring_hotfix Fixing a *very* subtle bug introducing minor asymmetry in NCAA fa_dun scoring When I wrote the Voronoi-based well assignment code for the NCAA fa_dun scoring, I introduced a small bug: for mirror-image types (_e.g._ D-amino acids), I was forgetting to flip the mainchain torsion values when figuring out which backbone bin I was in. This meant that the boundaries between rotamer wells could be very slightly out of place. I discovered this in the peptoids branch, since it becomes most apparent in types in which the rotamer well centres change most with backbone torsion value changes. This pull request fixes the problem.

...


branch: master 「№60069」
Commited by: Jack Maguire
GitHub commit link: 「fc64acf459d38b80」 「№2966」
Difference from previous tested commit:  code diff
Commit date: 2018-02-22 21:42:05

Merge pull request #2966 from RosettaCommons/JackMaguire/MCHBNetCorrection This PR introduces an option to HBNet that allows HBNet's internal scores to be placed in the output poses (turned off by default). This would allow the user to access the scores using the CalculatorFilter or ReadPoseExtraScoreFilter and the scores would be included in the score.sc file.

...


branch: master 「№60068」
Commited by: Sergey Lyskov
GitHub commit link: 「73be6aaed039ffad」 「№2973」
Difference from previous tested commit:  code diff
Commit date: 2018-02-22 20:53:23

Merge pull request #2973 from RosettaCommons/sergey/binder Updating Binder submodule, adding include mapping for GCC regex headers. Switching PyRosetta build script to use SSH for Pybind11 and LLVM checkout. Triggering clean build.

...


branch: master 「№60067」
Commited by: Sebastian Rämisch
GitHub commit link: 「ab9c79ff627163b3」 「№2969」
Difference from previous tested commit:  code diff
Commit date: 2018-02-22 15:46:36

Merge pull request #2969 from RosettaCommons/raemisch/BugFixSimpleGlycosylateMover SimpleGlycosylate copy constructor changed to include proper residue selector.

...


branch: master 「№60066」
Commited by: Andy Watkins
GitHub commit link: 「ac6e7020dbc5a246」 「№2965」
Difference from previous tested commit:  code diff
Commit date: 2018-02-22 14:24:29

Merge pull request #2965 from RosettaCommons/everyday847/install_sample_farnesyl_movers Install and sample farnesyl moieties using stepwise

...


branch: master 「№60065」
Commited by: Jack Maguire
GitHub commit link: 「29d49b005cfec62b」 「№2972」
Difference from previous tested commit:  code diff
Commit date: 2018-02-22 14:21:16

Merge pull request #2972 from RosettaCommons/JackMaguire/MultistageRosettaScripts There was a bug in an integration test I added to master yesterday that causes it to always fail. I did not notice it because the testing server did not have a reference to "diff" against, but now that other people are pushing to master I can see that all the diffs are backtraces. My apologies to everyone who had to deal with these useless test failures!

...


branch: master 「№60064」
Commited by: Alexander Ford
GitHub commit link: 「e91aacb04ebba7da」 「№2964」
Difference from previous tested commit:  code diff
Commit date: 2018-02-21 21:21:28

Merge pull request #2964 from RosettaCommons/fordas/pyrosetta_wheel Add support for pyrosetta wheel distributions.

...


branch: master 「№60063」
Commited by: Jack Maguire
GitHub commit link: 「53a8ebe8c0585f22」 「№2959」
Difference from previous tested commit:  code diff
Commit date: 2018-02-21 11:40:49

Merge pull request #2959 from RosettaCommons/JackMaguire/MultistageRosettaScripts Adding Clustering Feature in Multistage Rosetta Scripts I am adding the ability for Multistage Rosetta Scripts to increase diversity by clustering results between stages. I will talk about this more at winter rosettacon next week if you are interested. I expect it to look something like this: ``` <PROTOCOLS> <Stage num_results_to_keep="2000" > ... </Stage> <Cluster num_results_to_keep="1000"> <SomeKindOfMetric/> </Cluster > <Stage> ... </Stage> </PROTOCOLS> ```

...


branch: master 「№60062」
Commited by: Ryan Pavlovicz
GitHub commit link: 「19ab00f908f3cef2」 「№2967」
Difference from previous tested commit:  code diff
Commit date: 2018-02-20 21:09:36

Merge pull request #2967 from RosettaCommons/rpavlovicz/fix_water fix variable declaration in PackPwatRotamersMover

...


branch: master 「№60061」
Commited by: Vikram K. Mulligan
GitHub commit link: 「352681675b0dc6ac」 「№2946」
Difference from previous tested commit:  code diff
Commit date: 2018-02-20 21:05:03

Merge pull request #2946 from RosettaCommons/vmullig/hbnet_energy_options Add alternative ramping options for the HBNet energy The HBNet energy currently gives a quadratically-ramping bonus for larger and larger hydrogen bond networks. @basantab observed that this results in giant hydrogen bond networks if there is any way at all to form these, at the expense of bad packing or other undesirable features. A "diminishing returns" ramping function might be better. This pull request adds options for linear, logarithmic, and square root ramping. It also adds an option for a maximum network size, beyond which there's no bonus. Tasks: - [x] Add enum for the new ramping types. - [x] Add different calculators for the bonus function. - [x] Add means for setting ramping type from flags. - [x] Add means for setting ramping type from RosettaScripts. - [x] Unit tests for different ramping types. - [x] Add option for max network size. - [x] Modify calculator for max network size. - [x] Add means for setting max network size from flags. - [x] Add means for setting max network size from RosettaScripts. - [x] Unit tests for max network size. - [x] Documentation for ramping types. - [x] Documentation for max network size. - [x] Beauty.

...


branch: master 「№60060」
Commited by: Alexander Ford
GitHub commit link: 「7b9c4aa095a2d74e」 「№2963」
Difference from previous tested commit:  code diff
Commit date: 2018-02-20 19:57:40

Merge pull request #2963 from RosettaCommons/fordas/inline_aa_comp_constraint Add support for inline aa composition constraint definition.

...


branch: master 「№60059」
Commited by: Scott Boyken
GitHub commit link: 「4c9f2871afa87959」 「№2947」
Difference from previous tested commit:  code diff
Commit date: 2018-02-20 15:21:52

Merge pull request #2947 from RosettaCommons/sboyken/keep_info_labels_symmetric options to preserve PDBInfoLabels when detecting / generating symmetric poses; works with SetupForSymmetry and DetectSymmetry movers by simply adding keep_pdb_info_labels="true" to these movers. Longterm would be good to decide whether people want this to be default, and could be hooked into deeper symmetry code

...


branch: master 「№60058」
Commited by: Yang Hsia
GitHub commit link: 「80c856983f7c5c29」 「№2955」
Difference from previous tested commit:  code diff
Commit date: 2018-02-20 15:18:15

Merge pull request #2955 from RosettaCommons/yhsia/AddResidueLabelMover_asu AddResidueLabelMover - only label asu

...


branch: master 「№60057」
Commited by: Sergey Lyskov
GitHub commit link: 「90028316834dcbca」 「№2954」
Difference from previous tested commit:  code diff
Commit date: 2018-02-20 14:28:58

Merge pull request #2954 from RosettaCommons/sergey/f fixing uninitialized data members in src/core/pack/rotamer_set/*

...


< 1 .. 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 .. 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