branch: master 「№60008」
Commited by: Benjamin Basanta
GitHub commit link: 「224bfa8b5ed148bf」 「№2902」
Difference from previous tested commit:  code diff
Commit date: 2018-01-26 14:06:49

Merge pull request #2902 from RosettaCommons/basantab/update_helixbend_filter Update HelixBend filter

...


branch: master 「№60007」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「cc70cb9427f28239」 「№2768」
Difference from previous tested commit:  code diff
Commit date: 2018-01-26 11:03:51

Merge pull request #2768 from RosettaCommons/aleaverfay/revive_resource_manager merging branch aleaverfay/revive_resource_manager into master. New implementation of the ResourceManager. Instead of being this all seeing, all knowing piece of global data that knows what job is running and what resource you mean when you say "3mers", the new ResourceManager instead is a significantly more humble contraption that's responsible for loading data that should stay in memory between jobs and deallocate that memory when it's told it is no longer needed. The ResourceManager has three components: 1. The ResourceManager itself, 2. A set of ResourceLocators that can open a stream from some sort of input source (e.g. a file, or a database query), and 3. A set of ResourceLoaders that are responsible for loading a kind of Resrouce (e.g. a PoseResourceLoader responsible for loading Poses* into memory) A Resource, then, is a bitwise constant object that can be shared between concurrently running jobs. E.g., a loop-hash library, a fragment set, or a Pose*, or the SEWING graph. The ResourceManager only grants const access to the Resources it holds. A Resource is what you want to use when you have large, load-once data that is either expensive to create from disk, or occupies so much memory that you want to ensure there is only one of (but where different jobs might use different versions of it, so a Singleton would be inappropriate). The ResourceManager is accessible currently through rosetta_scripts_jd3. There is a new top-level \<Resources\> block to the parser::protocol XML file to say "These are resources that will be used for this job" so that the RosettaScriptsJobQueen (RSJQ) will know to put those resources into a special const-only section of the DataMap before the Movers and Filters and whatnot are loaded. Movers who want to use resources will ask the DataMap for the resources they need by name during "parse_my_tag". The RSJQ will figure out at startup when each resource can be deallocated and will tell the ResourceManager "you may now deallocate resource X" at the appropriate time. (The use of script_vars will make it trivially easy to have different resources used for different jobs). My eventual goal is to make abinitio work in RosettaScripts without the corrupting influence of global data (i.e. the sin against humanity of the frag_cache_ static data in core::fragment::FragmentIO). I would like people to start thinking more carefully about the lifetime of the data that they load and to begin integrating the ResourceManager into their protocol development. In the near future, I will be looking for more clients for the ResourceManager -- Movers and Filters that need load-once data -- and will be adding new attributes to these Movers and Filters to retrieve resources from the DataMap instead of loading them from scratch at each parse_my_tag. I will also be adding the ResourceManager to the (JD2) rosetta_scripts application so that it can be used there as well. I will also have to figure out how to incorporate it into Jack's new MultistageRosettaScripts. This PR will create quite a few cosmetic integration test changes. The old resource manager, though not directly used by anyone, was being indirectly used by lots of things, and the convoluted process of it's wake up did work that wasn't necessary and sent output to Tracers while doing so. I have also removed several of the integration tests for the old resource manager, and adapted several others to use the new resource manager. I paid close attention to all of the tests that were changing on my machine, fixing a handful of bugs that I had introduced along the way. (The testing server is showing me far more trajectory changes than I see locally. They are also inconsistent from revision to revision, so I think there is just something funny about the testing server.) *Pose itself is not a bitwise-constant class, and so instead of creating Pose objects and putting them into the ResourceManager, the PoseResourceLoader will create a wrapper class called a PoseResource which will give consumers a *copy* of the Pose that was loaded. This will hopefully be the outlier where the resource is loaded once, but where there might be multiple copies of the Resource in memory at one time.

...


branch: master 「№60006」
Commited by: Jack Maguire
GitHub commit link: 「d1c71d6b842cbf58」 「№2904」
Difference from previous tested commit:  code diff
Commit date: 2018-01-26 07:13:59

Merge pull request #2904 from RosettaCommons/JackMaguire/MCHBNetCorrection MC HBNet Correction. There was a small bug in the MC HBNet code that did not impact the legitimacy of results but strongly hindered the sampling ability of the MC HBNet protocol (credit goes to Scott for discovering there was a bug). That bug is now corrected and I took this opportunity to clean up the code in the class surrounding the bug.

...


branch: master 「№60005」
Commited by: Yang Hsia
GitHub commit link: 「4a32252da2d4d701」 「№2885」
Difference from previous tested commit:  code diff
Commit date: 2018-01-25 20:09:30

Merge pull request #2885 from RosettaCommons/tjbrunette/database_filters Tjbrunette/database filters

...


branch: master 「№60004」
Commited by: Sergey Lyskov
GitHub commit link: 「3035d01b15944127」 「№2905」
Difference from previous tested commit:  code diff
Commit date: 2018-01-25 17:40:22

Merge pull request #2905 from RosettaCommons/benchmark Updating benchmark python-install script so it now use default platform compiling when building Python. Updating scons .settings files to fix weekly release builds.

...


branch: master 「№60003」
Commited by: Sergey Lyskov
GitHub commit link: 「567fe682a74dab03」
Difference from previous tested commit:  code diff
Commit date: 2018-01-25 13:48:12

hot fixing benchmark scripts so PyRosetta4.* tests work on HighSierra

...


branch: master 「№60002」
Commited by: Jack Maguire
GitHub commit link: 「87c19440bcfbc764」 「№2814」
Difference from previous tested commit:  code diff
Commit date: 2018-01-24 11:58:44

Merge pull request #2814 from RosettaCommons/JackMaguire/MultistageRosettaScripts Multistage Rosetta Scripts

...


branch: master 「№60001」
Commited by: Vikram K. Mulligan
GitHub commit link: 「f7d913b5ce98f93c」 「№2898」
Difference from previous tested commit:  code diff
Commit date: 2018-01-24 00:20:27

Merge pull request #2898 from RosettaCommons/vmullig/fix_voids_penalty_config Fixing a little problem in EnergyMethodsOptions setter functions that was preventing configuration of the voids_penalty energy term from RosettaScripts XML.

...


branch: master 「№60000」
Commited by: Brian Weitzner
GitHub commit link: 「01656b9eba5858bc」 「№2893」
Difference from previous tested commit:  code diff
Commit date: 2018-01-23 22:40:24

Merge pull request #2893 from RosettaCommons/weitzner/cxxtest-python-version cxxtest python compatibility

...


branch: master 「№59999」
Commited by: Vikram K. Mulligan
GitHub commit link: 「683a3e7ad3aedc76」 「№2895」
Difference from previous tested commit:  code diff
Commit date: 2018-01-23 18:30:18

Merge pull request #2895 from RosettaCommons/vmullig/fix_bluegene_build_again Trying to fix Blue Gene/Q build again. The Blue Gene/Q build was broken by the renumbering/renaming of protocols libraries. This corrects that. No test changes expected.

...


branch: master 「№59998」
Commited by: Sergey Lyskov
GitHub commit link: 「5933691167a084a7」 「№2890」
Difference from previous tested commit:  code diff
Commit date: 2018-01-23 13:29:44

Merge pull request #2890 from RosettaCommons/sergey/f2 Updating profile Benchmark script so it honor compiler platform setting and run on local machines instead of HPC.

...


branch: master 「№59997」
Commited by: Vikram K. Mulligan
GitHub commit link: 「90e7110210c63e39」 「№2887」
Difference from previous tested commit:  code diff
Commit date: 2018-01-23 07:25:57

Merge pull request #2887 from RosettaCommons/revert-2886-revert-2883-vmullig/rotamer_read_refactor Re-merge refactor of the rotamer library reader. This was originally merged as pull request #2883. When I tested that PR, the Intel icc build was broken; the fix to that unfortunately broke the gcc build, and I didn't catch that before merging. I reverted that merge, and will fix the issue here and re-merge. Reverts RosettaCommons/main#2886 (i.e. this is a reversion of the reversion of the initial merge, reinstating the initial merge). This should be merged before merging #2855.

...


branch: master 「№59996」
Commited by: Brian Weitzner
GitHub commit link: 「00462c2fd4221f12」 「№2892」
Difference from previous tested commit:  code diff
Commit date: 2018-01-22 20:12:16

Merge pull request #2892 from RosettaCommons/weitzner/pymol-pyrosetta-link Update PyMOL<–>Rosetta link to be python 2/3 compatible

...


branch: master 「№59995」
Commited by: Andy Watkins
GitHub commit link: 「c709e699377a6b54」 「№2878」
Difference from previous tested commit:  code diff
Commit date: 2018-01-21 15:56:13

Merge pull request #2878 from RosettaCommons/everyday847/save_times Re-enable "save times" option in the jd3 version of the FARFAR job distributor

...


branch: master 「№59994」
Commited by: Sergey Lyskov
GitHub commit link: 「c6a4f315d1c63e18」 「№2889」
Difference from previous tested commit:  code diff
Commit date: 2018-01-20 17:35:47

Merge pull request #2889 from RosettaCommons/sergey/f fixing PyRosetta GCC build

...


branch: master 「№59993」
Commited by: Sergey Lyskov
GitHub commit link: 「d6c6aa6aa6e93f07」 「№2884」
Difference from previous tested commit:  code diff
Commit date: 2018-01-20 17:35:28

Merge pull request #2884 from RosettaCommons/ui merging latest ui changes to master

...


< 1 .. 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 .. 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