branch: master 「№57092」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「91abef97bcfa3749」
Difference from previous tested commit:  code diff
Commit date: 2014-07-21 15:25:31

Fixing the unit test build following Rhiju's renaming; also fix Andrew Watkin's uninitialized variable warnings / errors.

...


branch: master 「№57091」
Commited by: Frank DiMaio
GitHub commit link: 「fc7eae4a91aa8c85」
Difference from previous tested commit:  code diff
Commit date: 2014-07-21 13:58:26

Fixing a build error in PhenixInterface

...


branch: master 「№57090」
Commited by: sarel
GitHub commit link: 「15b4898de2996664」
Difference from previous tested commit:  code diff
Commit date: 2014-07-21 05:47:08

I hate git #n. Who knows why this file disappeared and reappeared. Anyway, bringing it back.

...


branch: master 「№57089」
Commited by: Andrew Watkins
GitHub commit link: 「2e01a30044f104f8」
Difference from previous tested commit:  code diff
Commit date: 2014-07-20 11:30:01

Somehow when I pulled master before pushing to sync changes, ResetBaselineMover.cc was changed and ResetBaselineMover.hh was not, leading to two inconsistent solutions to the unused parameter in its parse_my_tag function. Whoops!

...


branch: master 「№57088」
Commited by: Rhiju Das
GitHub commit link: 「b56d0a7490da4f11」
Difference from previous tested commit:  code diff
Commit date: 2014-07-20 07:08:38

should restore unit test builds

...


branch: master 「№57087」
Commited by: Andrew Watkins
GitHub commit link: 「f8cb555766f7fe10」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 23:57:16

Support for homocysteine and D-homocysteine disulfides. Earlier, I implemented params files for a disulfide bonded homocystine and D-homocystine, and I further made it so that Conformation could conceive of these residue connections. That didn't mean that they would be scored, though, or that a variety of protocols that might have been primed to think of disulfides strictly in terms of SG atoms and comparisons to aa::cys and such were any more prepared. Now they are: every protocol I could find that had a special disulfide behavior that was specifically about cysteine disulfides (and shouldn't be) no longer makes that assumption. Now, some caveats. There still aren't centroid files for NCAAs, which include homocysteine and D-homocysteine. I didn't implement them. That said, whenever they're implemented, disulfides formed from them will work, so that's nice. Essentially, I didn't bend over backwards to implement new protocols or new functionality, but my aim was that--for protocols that ought to be agnostic to cysteine type but that for some reason were married to tepid ol' cysteine, now they aren't. Importantly, since there really isn't a wealth of e.g. D-homocy stine disulfide structural data, it's not easy to empirically validate these structures, but we're expanding our capabilities.

...


branch: master 「№57086」
Commited by: Rhiju Das
GitHub commit link: 「10307e741f0c0e5f」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 22:56:49

Renaming/cleanup of variables to better match conventions. Mostly affects stepwise stuff, but I have always been annoyed PDBInfo -- acronyms should be separated by underscores -- so this is now PDB_Info. Merge of master and rhiju/swm_cleanup. Integration tests checked -- all changes cosmetic.

...


branch: master 「№57085」
Commited by: Kale Kundert
GitHub commit link: 「dc4aae71ad26a083」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 22:11:52

Update the RestrictToLoops task operations. This commit adds a RestrictToLoops task operation, which is closely related to the RestrictToLoopsAndNeighbors task operation. Support for rosetta scripts was implemented for both task operations, although the documentation has not been updated to reflect this. Unit tests were added for RestrictToLoops. No integration test changes expected.

...


branch: master 「№57084」
Commited by: Doo Nam Kim
GitHub commit link: 「235643847de5f123」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 15:51:50

[update of SandwichFeatures] - added 'min_dis_between_sheets_by_all_res' column to see a relationship between 'min_dis_between_sheets_by_all_res' and 'holes' (surprisingly, no relationship found) - refactored SandwichFeatures much more by introducing WriteToDBFromSandwichFeatures.cc - should not change any integration tests other than (expected) features and features_database_schema (if any)

...


branch: master 「№57083」
Commited by: Rocco Moretti
GitHub commit link: 「68a25f6cf54d946a」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 14:46:35

Fix Segfault with RestrictToInterfaceVectorOperation and nonexistant chains. If you passed a chain number or jump to RestrictToInterfaceVectorOperation which didn't exist in the pose, your run would segfault. Look for the error and utility exit appropriately. Fixes bug 0000039 Meiler lab powercoding with Alyssa Lokits.

...


branch: master 「№57082」
Commited by: Rocco Moretti
GitHub commit link: 「aa7b53799ffbe6b4」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 13:38:21

Make usage of boost::uint64_t explicit Certain compiler/platforms get confused about uint64_t - make it explicit that Rosetta is using the boost version (as it's more portable). This fixes bug 0000332 Meiler lab powercoding with Alyssa Lokits

...


branch: master 「№57081」
Commited by: Labonte
GitHub commit link: 「9c0da88971665bf2」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 12:19:46

bug fix in cmake Python script

...


branch: master 「№57080」
Commited by: Labonte
GitHub commit link: 「f2edd736eb538366」
Difference from previous tested commit:  code diff
Commit date: 2014-07-19 00:08:02

ResidueType: Residue properties are now stored in a separate class. This push is first in a series of major refactorings of how proeprties for ResidueTypes are handled in Rosetta. I will be discussing more about WHY and what I did at the developer meeting, but the highlights are thus: * Properties, such as POLAR, TERMINUS, LIPID, METALBINDING, etc., are no longer stored in a vector of strings AND a series of is_foo_ bools in ResidueType; instead, they are stored in a ResidueProperties class, to which ResidueType has an OP. * Within ResidueProperties, the properties are stored in a vector of bools keyed by a ResidueProperty enum. * enum values are auto-generated by a script, found in core/chemical/ residue_properties. * The script auto-runs at compile (like update_options) and the generated code files are not tracked by git. (I modified Scons, cmake, & xcode.) * To add new properties, simply add a new line to the core/chemical/ residue_properties/general_properties.list file. * Any property can be accessed by ResidueType.properties().has_property( PROPERTY ). * Wrappers still exist in Residue and ResidueType to access current properties indirectly, (such as is_protein(),) but those could be deprecated if we decide on that. ---------------------------------------- Unit test status: Pass Integration test status: 2 changes rings & carbohydrates: intentional output changes

...


branch: master 「№57079」
Commited by: Doo Nam Kim
GitHub commit link: 「2aaa55467391abbe」
Difference from previous tested commit:  code diff
Commit date: 2014-07-18 19:41:19

[update of SandwichFeatures] - refactored SandwichFeatures by introducing CheckForSandwichFeatures.cc - better comments - should not change any integration tests other than (expected) features and features_database_schema (if any)

...


branch: master 「№57078」
Commited by: Rocco Moretti
GitHub commit link: 「c6e4ce1e050ea86c」
Difference from previous tested commit:  code diff
Commit date: 2014-07-18 19:35:23

Attempt to fix builds.

...


branch: master 「№57077」
Commited by: P. Douglas Renfrew
GitHub commit link: 「0f55db26652041ab」
Difference from previous tested commit:  code diff
Commit date: 2014-07-18 15:54:32

Forgot the apps. Removing unused variable. Fixing build.

...


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