branch: master 「№60760」
Commited by: Frank David Teets
GitHub commit link: 「029b99dee54888c4」 「№4000」
Difference from previous tested commit:  code diff
Commit date: 2019-06-06 18:32:09

Merge pull request #4000 from RosettaCommons/frankdt/repair_sewing_benchmark_test Adding sewing back to scientific/data folder

...


branch: master 「№60759」
Commited by: Vikram K. Mulligan
GitHub commit link: 「6cd4f066336d96d2」 「№3996」
Difference from previous tested commit:  code diff
Commit date: 2019-06-06 12:16:53

Merge pull request #3996 from RosettaCommons/vmullig/fix_fastrelax_disk_reads FastRelax repeatedly reads multiple scorefunction weights from disk, making it unusable on large clusters. Fixing this. Recent changes to FastRelax have it repeatedly reading not only its own relax script, but also scorefunction weights from disk. This means that I can't run anything that uses FastRelax or FastDesign on Mira or Theta, or other giant supercomputers. Fixing this again. We really need to implement something that firmly prohibits disk reads that are unmanaged by a central manager.

...


branch: master 「№60758」
Commited by: Sergey Lyskov
GitHub commit link: 「be093829227f42bd」 「№3993」
Difference from previous tested commit:  code diff
Commit date: 2019-06-05 20:50:55

Merge pull request #3993 from RosettaCommons/sergey/binder PyRosetta update - updating self-test.py script, adding support for --timeout flag - increasing tests timeout for PyRosetta releases in debug mode - adding pyrosetta.PyMOLRosettaServer module so it could be imported in PyMOL on Conda

...


branch: master 「№60757」
Commited by: Rebecca Alford
GitHub commit link: 「035a5a5994bb962f」 「№3974」
Difference from previous tested commit:  code diff
Commit date: 2019-06-05 18:15:37

Merge pull request #3974 from RosettaCommons/rfalford12/protonation-task-op Task Operation for including protonation variants during packing This PR adds a new task operation, called pHVariantTaskOperation, which allows sampling of protonated/deprotonated side chain variants during repacking. This is currently set up to enable variants for ASP, GLU, HIS, TYR, and LYS and restore the intended functionality of the -pH_mode flag developed by Krishna here. I've also added a unit test.

...


branch: master 「№60756」
Commited by: Jack Maguire
GitHub commit link: 「7cf2e6d6bbbff3b9」 「№3992」
Difference from previous tested commit:  code diff
Commit date: 2019-06-05 14:43:09

Merge pull request #3992 from RosettaCommons/revert-3991-revert-3984-JackMaguire/CxxExtras Retrying #3984 but with extra guards around the static asserts

...


branch: master 「№60755」
Commited by: Frank DiMaio
GitHub commit link: 「870548e2a4ec34e9」 「№3995」
Difference from previous tested commit:  code diff
Commit date: 2019-06-05 13:23:40

Merge pull request #3995 from RosettaCommons/dimaio/cart_bonded_option Changing user() options to check value instead

...


branch: master 「№60754」
Commited by: Amanda Loshbaugh
GitHub commit link: 「667ad6aba07b91aa」 「№3987」
Difference from previous tested commit:  code diff
Commit date: 2019-06-04 13:48:18

Merge pull request #3987 from RosettaCommons/aloshbau/scientific_1 Aloshbau/scientific 1

...


branch: master 「№60753」
Commited by: Rocco Moretti
GitHub commit link: 「d6e455f6fb09472a」 「№3991」
Difference from previous tested commit:  code diff
Commit date: 2019-06-04 10:58:07

Merge pull request #3991 from RosettaCommons/revert-3984-JackMaguire/CxxExtras Revert "Add extras=cxx14, cxx17, and cxx20" Reverts #3984 Looks like it broke the Mac pyrosetta test. Reverting until it's fixed.

...


branch: master 「№60752」
Commited by: Jack Maguire
GitHub commit link: 「c8f9569c03a26bae」 「№3984」
Difference from previous tested commit:  code diff
Commit date: 2019-06-04 08:31:56

Merge pull request #3984 from RosettaCommons/JackMaguire/CxxExtras Add extras=cxx14, cxx17, and cxx20 Adding extras for newer c++ versions. This probably won't impact the end users much but it would help developers prototype with newer features or play with external libraries that require newer versions. I also added macros like CXX14_OR_LATER because it seems cleaner than comparing __cplusplus to 201402L

...


branch: master 「№60751」
Commited by: Labonte
GitHub commit link: 「37f52b3fe3a5f276」 「№3983」
Difference from previous tested commit:  code diff
Commit date: 2019-06-03 17:41:54

Merge pull request #3983 from RosettaCommons/JWLabonte/PTMs/CK1 This merge simply adds a new database file for a special consensus sequence for beta-catenin substrates for the CK1 kinase enzyme and one for CK2.

...


branch: master 「№60750」
Commited by: Labonte
GitHub commit link: 「f05112a81e56b932」 「№3980」
Difference from previous tested commit:  code diff
Commit date: 2019-06-03 17:31:40

Merge pull request #3980 from RosettaCommons/JWLabonte/PTMs/cofactors Coenzymes: Adding ATP to the Rosetta database by default This merge adds a `.params` file for ATP so that Rosetta will load structures with ATP correctly. The current parameters it pulls from the PDB have Hs on all the phosphates, and this is silly. Anyone using ATP-bound structures will see changes in their results. All integration test changes are expected; all unit tests pass.

Rocco Moretti 5 years
This PR seems to have broken the ligand_motif_design integration test. (Probably because that test already provides an ATP via -extra_res_fa.)
...


branch: master 「№60749」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「d8f9b4a90a8f2caa」
Difference from previous tested commit:  code diff
Commit date: 2019-05-30 13:47:16

Fix EnergyMap::operator += (#3977) The convention for increment-and-assign type operators is to return a reference to the object that has just been incremented, thereby facilitating multiple increments in a single statement ``` a += ( b+= c ); ``` The original author* of the EMapVector class (aka EnergyMap) did not realize this and so this class does not return a reference, and instead returns void. This has never been a problem for C++ code as no one has seemingly wanted to chain increment-and-assign operations. PyBind11, however, will take the returned type and assign it to the original object: ``` emap1 += emap2 ``` is interpretted as: ``` emap1 = (emap1 += emap2) ``` so that this code: ``` emap1 += emap2 print("Surpise!", emap1) ``` will print ``` Surprise! None ``` This PR changes the signature of just the EMapVector's operator+= and similar methods, but surely there are other places in the code where operators are not conforming to the C++ conventions. *I am the original author of this code.

...


branch: master 「№60748」
Commited by: Rocco Moretti
GitHub commit link: 「7121b5aa8f472b7a」 「№3972」
Difference from previous tested commit:  code diff
Commit date: 2019-05-30 10:55:34

Merge pull request #3972 from RosettaCommons/roccomoretti/more_pdb_loading_fixes Better categorization for PDB Diagnostic scientific tests. Add additional categories to the PDB Diganostic scientific test to knock down the number of "unknown" test failures. Mostly this isn't actually fixing any of the failures, just categorizing them better. (Though there are a few small functional changes.)

...


branch: master 「№60747」
Commited by: Andy Watkins
GitHub commit link: 「91e17dbc6fd0dd53」 「№3978」
Difference from previous tested commit:  code diff
Commit date: 2019-05-29 18:47:39

Merge pull request #3978 from RosettaCommons/everyday847/SWM_checkpointing_hotfix Update StepWiseMonteCarlo.cc

...


branch: master 「№60746」
Commited by: Sergey Lyskov
GitHub commit link: 「808795efd9a378a1」 「№3959」
Difference from previous tested commit:  code diff
Commit date: 2019-05-23 12:26:15

Merge pull request #3959 from RosettaCommons/sergey/binder Updating PyRosetta so it could be build with Python-3.7 on Mac

...


branch: master 「№60745」
Commited by: Sergey Lyskov
GitHub commit link: 「775ba71381a76771」 「№3970」
Difference from previous tested commit:  code diff
Commit date: 2019-05-22 18:33:52

Merge pull request #3970 from RosettaCommons/sergey/scientific Adding workaround for shebang line overflow. Minor fixes to scientific test template and already imlemented tests.

...


< 1 .. 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 .. 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