branch: master 「№59733」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「bac373f7c59fd7bb」 「№2586」
Difference from previous tested commit:  code diff
Commit date: 2017-09-29 12:20:23

Merge pull request #2586 from RosettaCommons/jadolfbr/fix_jd3 Fix MPI-JD3 overwrite behavior The MPIWorkPoolJD was not properly checkpointing in order to continue the run, and overwriting already-complete files. This fix is from @aleaverfay. Thanks Andrew!

...


branch: master 「№59732」
Commited by: jkleman
GitHub commit link: 「475a8e69b1b61202」 「№2582」
Difference from previous tested commit:  code diff
Commit date: 2017-09-29 11:00:53

Merge pull request #2582 from RosettaCommons/jkleman/domains Jkleman/domains: Adding mp_domain_assembly protocol

...


branch: master 「№59731」
Commited by: Steve Bertolani
GitHub commit link: 「623325f6eb004afb」
Difference from previous tested commit:  code diff
Commit date: 2017-09-28 17:07:37

RosettaAI: Setting rosetta_scripts_scripts submodule to latest origin/master version.

...


branch: master 「№59730」
Commited by: Brian Weitzner
GitHub commit link: 「514306d6a7f1d2b2」
Difference from previous tested commit:  code diff
Commit date: 2017-09-27 21:06:45

Removing the check for canonical amino acids in the DumpSingleResidueRotamers mover. It appears to be unnecessary and I want to use this with NCAAs.

...


branch: master 「№59729」
Commited by: Daniel Farrell
GitHub commit link: 「af0fe23c4f7abb07」
Difference from previous tested commit:  code diff
Commit date: 2017-09-26 16:49:01

RosettaAI: Setting rosetta_scripts_scripts submodule to latest origin/master version.

...


branch: master 「№59728」
Commited by: Rocco Moretti
GitHub commit link: 「d6b45ae5514df4f6」
Difference from previous tested commit:  code diff
Commit date: 2017-09-26 11:27:02

Beautifying forgotten file.

...


branch: master 「№59727」
Commited by: Rocco Moretti
GitHub commit link: 「75460266bdf98bbd」 「№2556」
Difference from previous tested commit:  code diff
Commit date: 2017-09-26 10:56:38

Merge pull request #2556 from RosettaCommons/roccomoretti/xml_to_MMfactory Change parse_my_tag() to use MoveMapFactories. The parse_movemap() functionality used in parse_my_tag() took a Pose. This was less than desirable, as there's no guarantee that the pose that the move map will be used on will be related in any significant way to the input pose being passed to parse_my_tag(). Now the parse_my_tag() will generate a core::select::movemap::MoveMapFactory object from the tag specification, rather than a MoveMap itself. This will be then applied against the pose in the apply() function to get a MoveMap that is actually used. By waiting for apply() (and re-generating the MoveMap for each call to apply), the MoveMap thus generated will reflect the status of the pose as it is then, rather than the pose as it was in the input.

...


branch: master 「№59726」
Commited by: Brian D. Weitzner
GitHub commit link: 「e48877f42cfc459b」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 22:54:39

Reducing the sigfigs for the cenrot unit test comparisons because compilers and reasons and that's too much precision anyway

...


branch: master 「№59725」
Commited by: Brian D. Weitzner
GitHub commit link: 「9f16acbccaae537e」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 21:07:34

Modifying etable unit tests to fix a linking error with clang 9.0

...


branch: master 「№59724」
Commited by: Brian D. Weitzner
GitHub commit link: 「b44020c5aab410a5」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 18:30:58

Updating setup_platforms.py for macOS High Sierra

...


branch: master 「№59723」
Commited by: Andy Watkins
GitHub commit link: 「3e5835f2c95cb9b9」 「№2554」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 17:54:56

Merge pull request #2554 from RosettaCommons/everyday847/repair_new_align_pdb Repair assignment of align_pose vs. native pose

...


branch: master 「№59722」
Commited by: Benjamin Basanta
GitHub commit link: 「d0dd8491da3f250d」 「№2572」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 15:28:34

Merge pull request #2572 from RosettaCommons/basantab/fix_ConsensusLoopDes_doubleHis Bug fix for ConsensusLoopDesign: His was added twice

...


branch: master 「№59721」
Commited by: Jack Maguire
GitHub commit link: 「9e757a28e8213df6」 「№2577」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 11:50:45

Merge pull request #2577 from RosettaCommons/JackMaguire/monte_carlo_hbnet Small bug fixes in Monte Carlo HBNet

...


branch: master 「№59720」
Commited by: Daniel Farrell
GitHub commit link: 「a8dfc3f6d83e12c5」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 11:08:45

merge with master

...


branch: master 「№59719」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「800052099596f139」 「№2576」
Difference from previous tested commit:  code diff
Commit date: 2017-09-25 11:03:54

Merge pull request #2576 from RosettaCommons/Cyrus/mergetarget Cyrus/mergetarget From Steven Lewis: * minor tweaks to unit test code template * interface tweaks to CoupledMovesProtocol - allow setting of scorefunction/taskfactory externally. Note that the ctor of CoupledMovesProtocol does custom setup on the scorefunction, presumably to support the angle dependencies of Backrub. This was refactored into a standalone configure function. parse_my_tag is routed through this to address https://github.com/RosettaCommons/main/issues/2455 @anumazam * FillAUTOTaskOperation. CoupledMovesProtocol uses ClashBasedRepackShellSelector to automatically select what residues should repack; the functionality only works when using a resfile with the AUTO command. The TaskOperation allows you to activate this without an actual resfile by filling in the AUTO command’s effect. (This is the most conservative way to fix this problem, as requested by others interested in this code; in lieu of https://github.com/RosettaCommons/main/issues/2434). Note a change to line 247 of CoupledMovesProtocol (sorry, no link, I presume it would break) to support this. Unit test for FillAUTOTO. * bugfix for https://github.com/RosettaCommons/main/issues/2494. Unit test for LoopAnalyzerMover to prevent recurrence. I had to change the reference values in the unit tests after updating from master; I think they were affected by https://github.com/RosettaCommons/main/pull/2309 (the NYC hackathon). Discovered an insufficiency in Loops:verify_against in writing the utest; improved its range of problem detection. Test implications: unit tests: two new ones integration tests: expected changes due to LoopAnalyzerMover (gains extra output) FAIL LoopAnalyzer FAIL AnchoredDesign FAIL AnchoredPDBCreator FAIL loop_creation These need to be watched on the test server but probably won’t change: failing in on my test machine due to some weird binary file; probably spurious: FAIL backrub_interface_ddG FAIL InterfaceDdG FAIL cluster_calibur fails on my test machine because of its git dependency: FAIL code_template_tests_unit FAIL code_template_tests_app FAIL code_template_tests_src

...


branch: master 「№59718」
Commited by: Steven Lewis
GitHub commit link: 「16fcd331a1c46ece」 「№2560」
Difference from previous tested commit:  code diff
Commit date: 2017-09-24 21:16:02

Merge pull request #2560 from RosettaCommons/smlewis/cyrus/XMLs_from_XRW_rosettascriptstestbranch Update rosetta_scripts_scripts submodule with cyrus-sourced XSD XRW scripts. Also update with a bunch of other people's scripts, apparently. I'm tired of the "wait for test server results, oh, someone has changed the base version, you have to test again" dance.

...


< 1 .. 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 .. 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