branch: master 「№58004」
Commited by: Tom Linsky
GitHub commit link: 「d56231cdf0b9e94b」 「№655」
Difference from previous tested commit:  code diff
Commit date: 2015-07-23 00:35:32

Merge pull request #655 from RosettaCommons/tlinsky/prepro_filter Update preproline filter to allow E

...


branch: master 「№58003」
Commited by: Vikram K. Mulligan
GitHub commit link: 「d87cece545fd8f6b」 「№650」
Difference from previous tested commit:  code diff
Commit date: 2015-07-21 18:27:30

Merge pull request #650 from RosettaCommons/vmullig/repeat_energy Create an energy term that penalizes repeat stretches (e.g. poly-Q sequences) Yes, I know this is inherently non-pairwise decomposable. It won't work with the packer in its present form, but can be used for post-hoc scoring. Tasks: - Create forward declarations. - Create creator. - Create .cc and .hh files. - Register these. - Add energy type to the scoretype enum. - Write compute function. - With hooks for rapid computation given a vector of ResidueCOPs. - Flag for config file (with default version in database) that determines how the penalty is applied. - Default config file in database. - Unit tests. - Documentation.

...


branch: master 「№58002」
Commited by: Kale Kundert
GitHub commit link: 「676ada34cf47af3b」 「№640」
Difference from previous tested commit:  code diff
Commit date: 2015-07-21 18:11:41

Merge pull request #640 from RosettaCommons/kalekundert/link_residues Fix a bug that was causing LinkResidues to segfault.

...


branch: master 「№58001」
Commited by: Bobby Langan
GitHub commit link: 「b8f7b137a26c5e75」 「№643」
Difference from previous tested commit:  code diff
Commit date: 2015-07-21 17:12:29

Merge pull request #643 from RosettaCommons/BobbyLangan/sasa_bug_fix_pdbinfo Fixes pdb_info issue in SelectBySASA operation Added a pointer check before trying to fetch pdb_info in SASA operation

...


branch: master 「№58000」
Commited by: Vikram K. Mulligan
GitHub commit link: 「a319102c4c266dec」 「№649」
Difference from previous tested commit:  code diff
Commit date: 2015-07-21 04:06:40

Merge pull request #649 from RosettaCommons/vmullig/mpi_c_bool_issue Switching all instances of MPI_C_BOOL to MPI_CHAR Switching all instances of MPI_C_BOOL to MPI_CHAR to fix compilation issues on certain systems. I'm using MPI_CHAR for my dummy/acknowledgement signal because a char is the one datatype that's guaranteed to be one byte wide in the C++ standard, and I don't want to waste time sending more than one byte for an acknowledgement signal. (Unfortunately, the C standard did NOT originally have a boolean data type, so MPI_C_BOOL is not always defined in all flavours of MPI, apparently. Still, a C++ bool is 8 bits wide rather than 1 bit, since the smallest memory space that one can address is a byte, and a bool* wouldn't make sense if bools were 1 bit. This means that I'm not really losing anything by switchng this to a char.) No test changes expected.

...


branch: master 「№57999」
Commited by: Vikram K. Mulligan
GitHub commit link: 「ddae2316a55dd9d4」 「№635」
Difference from previous tested commit:  code diff
Commit date: 2015-07-21 00:58:44

Merge pull request #635 from RosettaCommons/vmullig/new_ncaas Adding a few more beta- and gamma-amino acids to the database Mostly cyclics (e.g. trans-ACPC). ...And in the process I caught a bug in the helical bundle code. Fixed. This causes the multirepeat integration tests to fail.

...


branch: master 「№57998」
Commited by: Tom Linsky
GitHub commit link: 「abb8415963531103」 「№644」
Difference from previous tested commit:  code diff
Commit date: 2015-07-19 01:23:16

Merge pull request #644 from RosettaCommons/tlinsky/prepro_filter Initial commit of pre-proline filter

...


branch: master 「№57997」
Commited by: Vikram K. Mulligan
GitHub commit link: 「112d6365f8e0f73c」 「№642」
Difference from previous tested commit:  code diff
Commit date: 2015-07-18 02:22:07

Merge pull request #642 from RosettaCommons/vmullig/zibo_bundlegridfilter Create a filter for reporting helical bundle parameters. This creates a new filter, the BundleReporterFilter. The main purpose of this filter is to look at a parametric pose and dump out (a) the bundle parameters, and (b) the Rosetta energy, given a scorefunction. By default, the filter always returns true, though it can be set to return false always, or to filter based on the energy (much like the ScoreType filter). Tasks: Create the filter files (-.cc, -.hh, -.fwd.hh, -Creator.hh) Register them with the appropriate init files. Get the filter to write out parameters. Handle the case of the filter receiving a non-parametric pose. Get the filter to score and write out the score. Get the filter to filter on score, if the user so wishes. Integration test. Documentation. Also: Fixed problems with the ScoreType filter (uninitialized variables).

...


branch: master 「№57996」
Commited by: Andrew Watkins
GitHub commit link: 「7f5d9be29aafa47c」
Difference from previous tested commit:  code diff
Commit date: 2015-07-16 20:10:34

And naturally a modified patches.txt made it in. Sorry for the scare, friends.

...


branch: master 「№57995」
Commited by: Andrew Watkins
GitHub commit link: 「1861ce18b4dc9789」
Difference from previous tested commit:  code diff
Commit date: 2015-07-16 17:28:50

Fixing a stupid hbs_dock_design bug (somehow I wasn't initializing the Mover; I'm not sure how this ever worked--maybe because I mostly invoke it using NcbbDockDesignProtocol now) and adding an AtomType found in the HBS linker to the split_unfolded default energies

...


branch: master 「№57994」
Commited by: Tom Linsky
GitHub commit link: 「e5fd4a4aeade07a5」 「№619」
Difference from previous tested commit:  code diff
Commit date: 2015-07-16 15:05:53

Merge pull request #619 from RosettaCommons/tlinsky/tomponents Move denovo design base classes from devel to protocols

...


branch: master 「№57993」
Commited by: Kyle Barlow
GitHub commit link: 「12782030840e8802」 「№628」
Difference from previous tested commit:  code diff
Commit date: 2015-07-15 14:50:47

Merge pull request #628 from RosettaCommons/kylebarlow/general_dev Fixing -Wpotentially-evaluated-expression warnings-as-errors added in Clang-3.6 Some of these occurred in the cppdb external code. I first tried updating this code to the newest released version, but this didn't fix the warnings, and also broke a pilot app, so I reverted that change. I suppressed the warnings in the external code, as we do not maintain it, and it doesn't look like a warning that really matters anyways. In the Rosetta code, I think the warning was being caused by a deference of an owning pointer not playing well with typeid(), so I fixed the warning by first creating a temporary reference to typeid(). We seem to be good OOPers for the most part, so there aren't many uses of typeid() in the codebase to bring this up again.

...


branch: master 「№57992」
Commited by: Tom Linsky
GitHub commit link: 「13a0ed8920b8c7bc」 「№638」
Difference from previous tested commit:  code diff
Commit date: 2015-07-15 14:48:16

Merge pull request #638 from RosettaCommons/tlinsky/fixconsensusdesign ConsensusLoopDesign: Change behavior when there is no data

...


branch: master 「№57991」
Commited by: Sergey Lyskov
GitHub commit link: 「556ffa39039a5430」
Difference from previous tested commit:  code diff
Commit date: 2015-07-14 19:28:04

Updating scientific/_template_.py script so it now check is score files was generated

...


branch: master 「№57990」
Commited by: Sergey Lyskov
GitHub commit link: 「c2e7e131f1020ce5」
Difference from previous tested commit:  code diff
Commit date: 2015-07-14 16:03:20

Updating Simian filter in code_duplication test. Adding length of duplicated code block to compared text.

...


branch: master 「№57989」
Commited by: Labonte
GitHub commit link: 「228d0f1cd964f233」
Difference from previous tested commit:  code diff
Commit date: 2015-07-14 10:43:31

FoldTree: Refactor Part II NEWS: FoldTree no longer outputs with its own endl In addition, FoldTree unit tests have begun to be expanded. You can monitor the ongoing progress of this refactor at pull request #630. ---------------------------------------- Unit test status: Pass Integration test status: ~80 changed tests

...


< 1 .. 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 .. 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