branch: master 「№57060」
Commited by: Kyle Barlow
GitHub commit link: 「69bdc0880056bf29」
Difference from previous tested commit:  code diff
Commit date: 2014-07-14 12:28:04

Turned -Werror back on for CMake builds For "build," I turned on all -Werror, instead of just one type, so hopefully that works. Also modified the Werror_check integration test to check all CMakeLists files.

...


branch: master 「№57059」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「63b3063809cf28d2」
Difference from previous tested commit:  code diff
Commit date: 2014-07-14 11:21:46

Fixing the build error I just added.

...


branch: master 「№57058」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「bce1c9be093418b2」
Difference from previous tested commit:  code diff
Commit date: 2014-07-14 10:45:14

Aaaaaaaa - these unused-private-field warnings are awful! I've spent an hour and am only half way through core. I can't get anything done here. I'm giving up.

...


branch: master 「№57057」
Commited by: sarel
GitHub commit link: 「e2d579e79f69db2c」
Difference from previous tested commit:  code diff
Commit date: 2014-07-13 03:14:04

Adding debug flag to SeqprofConsensus to limit the amount of text output. No test changes expected

...


branch: master 「№57056」
Commited by: Rhiju Das
GitHub commit link: 「434e2a39041dfeef」
Difference from previous tested commit:  code diff
Commit date: 2014-07-12 22:07:33

fixing moveable_jump setting in minimizing for FARFAR/rna_denovo

...


branch: master 「№57055」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「9f731aa3a7cd8f39」
Difference from previous tested commit:  code diff
Commit date: 2014-07-12 14:59:00

Fixing signed/unsigned integer comparison (that I guess gcc doesn't catch?)

...


branch: master 「№57054」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「c7f5e0de21cfe9d2」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 21:18:47

Reducing the memory use for Rama and Rama2B. This commit brings in modifications to the Ramachandran and Ramachandran2B classes to dramatically reduce the memory usage needed to perform the sampling used by KIC and the next-generation KIC loop modeling protocols. Previously, the Ramachandran table would look at all 36x36 phi/psi bins and write down the phi and psi angles for each bin with a probability above some very small threshold; then it created a very large table with several thousand entries and write down the phi/psi values into that table proportionately. I.e., if one phi/psi bin had 10% probability then if there were 2500 entries in the table, that bin would have its entries written down 250 times. Then, this table could be use to proprotionately draw phi/psi values. The new strategy is to compute the cumulative distribution function for the phi and psi bins, to then draw a random number between 0 and 1, and then to find the phi/psi bin where its CDF value is less than the random number and the next phi/psi bin's CDF value is greater than the random number. This strategy has remarkably little memory overhead; just as much as is needed to store the probabilities in the first place. This brings NGK's memory use down from 5GB+ (since the Rama2B's memory footprint was 20x larger) to basically the same memory overhead as the rest of Rosetta. Thanks to Brian for discussions on how to implement this and to Amelie and Roland for running the loop modeling benchmarks to make sure nothing worsened. All unit tests pass. Integration tests using KIC and next-generation KIC all change.

...


branch: master 「№57053」
Commited by: Rhiju Das
GitHub commit link: 「a4eff6ed2ccbf3ea」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 15:34:31

adding -unvirtualize_phosphate_res flag to rna_graft for silly cyclic-diAMP case.

...


branch: master 「№57052」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「29b8bebab9e47521」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 15:20:12

Fixing the buried_unsat_kinemage integration test which has been failing. Forgot to add find_buns.cc to my last commit.

...


branch: master 「№57051」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「d0dffb44cc524528」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 15:14:34

Fixing the buried_unsat_kinemage integration test which has been failing. Also fixing an initialization-list order error in some of Jared's code and getting rid of copoius quantities of trailing whitespace.

...


branch: master 「№57050」
Commited by: jadolfbr
GitHub commit link: 「6ccc8b0c1d77e2ab」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 14:53:59

fix more constructor variable ordering

...


branch: master 「№57049」
Commited by: jadolfbr
GitHub commit link: 「c1d0d174678973b9」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 14:02:20

fix copy constructor ordering to fix gcc build

...


branch: master 「№57048」
Commited by: Sergey Lyskov
GitHub commit link: 「b1d3e6953f8eecec」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 12:23:37

Updating regression tests comparison logic, increasing full-diff log size.

...


branch: master 「№57047」
Commited by: sarel
GitHub commit link: 「1463d07d94b401fa」
Difference from previous tested commit:  code diff
Commit date: 2014-07-11 03:10:07

Fixing FilterScan's resfile control when using deltafilters

...


branch: master 「№57046」
Commited by: jadolfbr
GitHub commit link: 「671dc14c542f97c5」
Difference from previous tested commit:  code diff
Commit date: 2014-07-10 17:42:46

Add a set of simple_movers for grafting, make all and GraftMovers and utility movers available to RS This commit adds a set of simple movers to protocols/grafting, which are basically wrappers to some grafting utility functions. Combined with SavePoseMover and the main GraftMovers, both CCDEndsGraftMover and AnchoredGraftMover, one can create a grafting protocol within RS. Adds unit tests for all the simple movers No integration test changes expected. Here is an example RS for grafting CDRS from one renumbered antibody into another: <ROSETTASCRIPTS> <MOVERS> <SavePoseMover name=save_current reference_name=current/> <SavePoseMover name=save_CDR reference_name=CDR/> <SavePoseMover name=restore_current restore_pose=1 reference_name=current/> <SavePoseMover name=restore_ab restore_pose=1 reference_name=ab pdb_file=%%from%%/> <ParsedProtocol name=save_cdr_restore > <Add mover=save_CDR /> <Add mover=restore_current /> </ParsedProtocol> <ParsedProtocol name=save_current_restore_ab > <Add mover=save_current /> <Add mover=restore_ab /> </ParsedProtocol> <KeepRegionMover name=k_L1 start_pdb_num=24L end_pdb_num=42L nter_overhang=2 cter_overhang=2/> <KeepRegionMover name=k_L2 start_pdb_num=57L end_pdb_num=72L nter_overhang=2 cter_overhang=2/> <KeepRegionMover name=k_L3 start_pdb_num=107L end_pdb_num=138L nter_overhang=2 cter_overhang=2/> <KeepRegionMover name=k_H1 start_pdb_num=24H end_pdb_num=42H nter_overhang=2 cter_overhang=2/> <KeepRegionMover name=k_H2 start_pdb_num=57H end_pdb_num=69H nter_overhang=2 cter_overhang=2/> <KeepRegionMover name=k_H3 start_pdb_num=107H end_pdb_num=138H nter_overhang=2 cter_overhang=2/> <CCDEndsGraftMover name=graft_L1 start_pdb_num=23L end_pdb_num=43L spm_reference_name=CDR copy_pdbinfo=1/> <CCDEndsGraftMover name=graft_L2 start_pdb_num=56L end_pdb_num=73L spm_reference_name=CDR copy_pdbinfo=1/> <CCDEndsGraftMover name=graft_L3 start_pdb_num=106L end_pdb_num=139L spm_reference_name=CDR copy_pdbinfo=1/> <CCDEndsGraftMover name=graft_H1 start_pdb_num=23H end_pdb_num=43H spm_reference_name=CDR copy_pdbinfo=1/> <CCDEndsGraftMover name=graft_H2 start_pdb_num=56H end_pdb_num=70H spm_reference_name=CDR copy_pdbinfo=1/> <CCDEndsGraftMover name=graft_H3 start_pdb_num=106H end_pdb_num=139H spm_reference_name=CDR copy_pdbinfo=1/> </MOVERS> <PROTOCOLS> <Add mover_name=save_current /> <Add mover_name=restore_ab/> <Add mover_name=k_L1 /> <Add mover_name=save_cdr_restore/> <Add mover_name=graft_L1/> <Add mover_name=save_current_restore_ab/> <Add mover_name=k_L2/> <Add mover_name=save_cdr_restore/> <Add mover_name=graft_L2/> <Add mover_name=save_current_restore_ab/> <Add mover_name=k_L3/> <Add mover_name=save_cdr_restore/> <Add mover_name=graft_L3/> <Add mover_name=save_current_restore_ab/> <Add mover_name=k_H1/> <Add mover_name=save_cdr_restore/> <Add mover_name=graft_H1/> <Add mover_name=save_current_restore_ab/> <Add mover_name=k_H2/> <Add mover_name=save_cdr_restore/> <Add mover_name=graft_H2/> <Add mover_name=save_current_restore_ab/> <Add mover_name=k_H3/> <Add mover_name=save_cdr_restore/> <Add mover_name=graft_H3/> <Add mover_name=save_current/> </PROTOCOLS> </ROSETTASCRIPTS>

...


branch: master 「№57045」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「9a44b63e4ea66334」 「№46」
Difference from previous tested commit:  code diff
Commit date: 2014-07-10 17:06:30

Merge pull request #46 from RosettaCommons/momeara/HBond_xmax_params_bug_fix Fix broken H-Bond polynomials in Talaris2013

...


< 1 .. 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 .. 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