branch: master 「№58260」
Commited by: Sergey Lyskov
GitHub commit link: 「f0f89815df465c9a」
Difference from previous tested commit:  code diff
Commit date: 2015-11-04 09:54:29

PyRosetta. Refactoring how C++ ‘struct’ handled (now binding access to data-members by default).

...


branch: master 「№58259」
Commited by: Doo Nam Kim
GitHub commit link: 「59462cfcdc6853cf」
Difference from previous tested commit:  code diff
Commit date: 2015-11-03 15:29:17

Commit without Rosetta Benchmark test (this commit will be safe though). Now I add a missed "generate_five_ss_model" option for sewing_hasher.

...


branch: master 「№58258」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「18440f18949698a7」
Difference from previous tested commit:  code diff
Commit date: 2015-11-03 11:55:42

More work on the hbond distance-polynomial refitting script

...


branch: master 「№58257」
Commited by: Andrew Watkins
GitHub commit link: 「81fb75ba6ce92f27」 「№882」
Difference from previous tested commit:  code diff
Commit date: 2015-11-03 11:52:19

Merge pull request #882 from RosettaCommons/everyday847/loop_simplify Loop structure simplification and miscellany

...


branch: master 「№58256」
Commited by: Doo Nam Kim
GitHub commit link: 「54dc8800d3e6dae7」 「№883」
Difference from previous tested commit:  code diff
Commit date: 2015-11-03 10:44:29

Merge pull request #883 from RosettaCommons/kimdn/master_sew [what has been updated for beta-sandwich_analysis] * Add a more rule so that two parallel short strands can be "sheet" for Tim-barrel [what has been updated for SEWING] * [model generation update] - sewing::hash_tag_only_terminal_Es is possible - User can provide an option (generate_five_ss_model) so that 'db -> node (model)' can generate '3_or_5_secondary_structure_based models' - added unit test (SewingHasherTests.cxxtest) for "db -> node (model/substructure) can generate 5_secondary_structure_based models" * [Model_trimmer update] - becomes little faster (don't care rest trimming steps if any preceding trimming decides to erase the model) - can do 'leave_models_with_E_terminal_ss' - can do 'leave_parallel_way_H_bonded_models_by_terminal_strands_only' - can do 'leave_antiparallel_way_H_bonded_models_by_terminal_strands_only' - can do 'model_should_have_at_least_one_E' - can do 'model_should_have_at_least_one_E_at_terminal_segment' * [hashing update] node (model) -> edge (score) can handle 'any number of secondary_structure' based models * [model assembly update] - User can choose between 27 and 125 boxes for neighborhood_lookup (-sewing:box_length), both scoring and assembly should use same box numbers * [ExhaustiveAssemblyMover newly added] - Enumerate every possible assembly exhaustively - User can choose 'dump_every_model_for_devel_purpose' option * [MonteCarloAssemblyMover update] - User can choose not to stick to best_score if specified 'min_assembly_score' as an option in parser - User can choose 'offset_bump_dsq' as an option [beautified some other's files] beautified except File utility/json_spirit/json_spirit_writer_template.h could not be beautified File utility/json_spirit/json_spirit_error_position.h could not be beautified File utility/json_spirit/json_spirit_writer_options.h could not be beautified

...


branch: master 「№58255」
Commited by: Tom Linsky
GitHub commit link: 「5b556a55a3551d6c」 「№878」
Difference from previous tested commit:  code diff
Commit date: 2015-11-01 19:08:40

Merge pull request #878 from RosettaCommons/tlinsky/hotfix Fix gcc 5.x.y cmake build

...


branch: master 「№58254」
Commited by: Vikram K. Mulligan
GitHub commit link: 「75b7c9466e48a2b1」 「№880」
Difference from previous tested commit:  code diff
Commit date: 2015-10-31 03:32:49

Merge pull request #880 from RosettaCommons/vmullig/reset_issue Fix the functionality of RESET The commutativity-breaking resfile command RESET, which is necessary for noncanonical design (since noncanonicals can only be turned ON while canonicals can only be turned off) wasn't resetting canonicals properly. This command now: - Disables all noncanonicals (as it did before). - Enables all canonicals (which it was not doing properly before). - Enables design and repacking. Which is what the documentation claimed that it was doing. I've also moved the RESET functionality to a single function in the ResidueLevelTask class, so that we don't have a lot of ways for external things to break commutativity. (Anything can call the reset() function, but it will always break commutativity in exactly this way.)

...


branch: master 「№58253」
Commited by: Vikram K. Mulligan
GitHub commit link: 「b167ac6b7fa079c9」 「№879」
Difference from previous tested commit:  code diff
Commit date: 2015-10-31 03:30:04

Merge pull request #879 from RosettaCommons/vmullig/bintransition_bug Caught a mistake in BinTransitionCalculator.cc. This was affecting the setup of sub-bin cumulative probability distributions for the i+1 residue.

...


branch: master 「№58252」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「d8d67dd2ae1ff7d7」
Difference from previous tested commit:  code diff
Commit date: 2015-10-30 17:08:27

Updating the refit_hbond_polynomials.py script to more robustly handle cases where the new polynomial does not reach it's requisite height (+1.1).

...


branch: master 「№58251」
Commited by: Rhiju Das
GitHub commit link: 「768492fdfa0c9921」 「№877」
Difference from previous tested commit:  code diff
Commit date: 2015-10-30 12:04:59

Merge pull request #877 from RosettaCommons/rhiju/fix_up_to_virtual_phosphate Rhiju/fix up to virtual phosphate changes to integration tests are expected – due to virtualization of 5' phosphates of RNA that should have been happening anyway.

...


branch: master 「№58250」
Commited by: Vikram K. Mulligan
GitHub commit link: 「5c82e1cc2c9132ff」 「№870」
Difference from previous tested commit:  code diff
Commit date: 2015-10-29 19:59:45

Merge pull request #870 from RosettaCommons/vmullig/peppredict_boinc Add checkpointing to simple_peptide_predict app David Kim rightly pointed out that my peptide structure prediction app isn't checkpointing itself properly. While results would still be returned on BOINC, trajectories would likely be repeated if users stopped a work unit and re-started it. This will address that. Tasks: - Figure out how the BOINC stuff currently talks to the classic ab initio JobDistributor and to JD2. (I'll probably want to use the nstruct-level checkpointing of JD2, but first I want to understand how everything currently works.) - Figure out whether JD2's nstruct-level checkpointing somehow knows to skip jobs that failed. (I'll definitely need this, since my app heavily filters, so that many trajectories return no result.) - Get simple_cycpep_predict to checkpoint. (It was simpler to add checkpointing than to get it to use an existing JobDistributor, and I was able to time the checkpointing to my short jobs rather than the over-frequent checkpointing that I'd have if I relied on the BOINCJobDistributor). - Get the minirosetta with the simple_cycpep_predict protocol to talk properly to the text overlays in the BOINC graphics. - Test with the text overlay on the graphics (not tested yet). - While I'm at it, tweak the energy and RMSD updating in the graphics display. - Beauty - Documentation Cosmetic change to simple_cycpep_predict integration test expected (one extra line of output).

...


branch: master 「№58249」
Commited by: indigogo
GitHub commit link: 「5acb7f6f6879b41e」 「№875」
Difference from previous tested commit:  code diff
Commit date: 2015-10-29 03:22:56

Merge pull request #875 from RosettaCommons/indigogo/hbscan Indigogo/hbscan

...


branch: master 「№58248」
Commited by: Tim Jacobs
GitHub commit link: 「24eb779392765702」
Difference from previous tested commit:  code diff
Commit date: 2015-10-27 22:43:40

The big green button somehow did me wrong. This should fix the build.

...


branch: master 「№58247」
Commited by: Andrew Watkins
GitHub commit link: 「4a946503caccfc1b」 「№872」
Difference from previous tested commit:  code diff
Commit date: 2015-10-27 22:09:53

Merge pull request #872 from RosettaCommons/everyday847/remove_ncaa_rotlibs Remove most NCAA rotlibs from RosettaCommons/main

...


branch: master 「№58246」
Commited by: Tim Jacobs
GitHub commit link: 「48f5f7558bb6188d」 「№862」
Difference from previous tested commit:  code diff
Commit date: 2015-10-27 20:14:03

Merge pull request #862 from RosettaCommons/revert-860-revert-676-tjacobs2/sewing_motifs Merge of the SEWING framework for de novo protein design. Thanks to Sergey for fixing an issue with the Windows PyRosetta build. All tests pass. Expected changes to features and features_database_schema integrations tests. Also, two new tests for the continuous and discontinuous sewing hasher.

...


branch: master 「№58245」
Commited by: Rocco Moretti
GitHub commit link: 「cb11c3c576be8cbe」 「№871」
Difference from previous tested commit:  code diff
Commit date: 2015-10-27 19:19:33

Merge pull request #871 from RosettaCommons/roccomoretti/valgrind_mpi Fix integration.py w/r/t valgrind and MPI Not all test directories have non-MPI command files - don't fail if one isn't present

...


< 1 .. 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 .. 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