branch: master 「№57252」
Commited by: nollikai
GitHub commit link: 「4c62520477e8e3b5」 「№76」
Difference from previous tested commit:  code diff
Commit date: 2014-09-05 20:48:55

Merge pull request #76 from RosettaCommons/nollikai/CoupledMover Adding CoupledMover to protocols/simple_moves Created a new mover that performs coupled side chain / backbone moves. For ligands, this mover performs a rigid body rotation and translation coupled with ligand rotamer optimization. This mover currently uses ShortBackrubMover for backbone moves, BoltzmannRotamerMover for side chain and ligand rotamer moves and RigidBodyPerturberMover for rigid body moves. This mover is compatible with PackerTasks that allow positions to be designed, making it easy to incorporate backbone flexibility into sequence design. Since ligand moves can also be performed, this mover is particularly useful for the design of ligand binding sites. In the near future I will commit a protocol that uses this mover to predict the set of tolerated sequences for a given design problem by keeping track of all the sequences that are accepted during a Monte Carlo simulation.

...


branch: master 「№57251」
Commited by: Labonte
GitHub commit link: 「5b03965b6d65725e」
Difference from previous tested commit:  code diff
Commit date: 2014-09-05 19:04:51

fixing tests (My text editor erased two needed spaces again; grr.)

...


branch: master 「№57250」
Commited by: Labonte
GitHub commit link: 「d73c67d70eca28e9」
Difference from previous tested commit:  code diff
Commit date: 2014-09-05 15:51:19

Carbohydrates: mostly database updates This merge includes some addition of ATOM_ALIASes, a new sugar topology file, (so that I can load in sialyl-Lewis X,) and some sugar pilot app updates to reflect the recent options system clean-up. It also adds a formal +1 charge to all lower terminus peptide residues. ---------------------------------------- Unit test status: Not Run (no C++ code changed) Integration test status: 1 test change carbohydrates: expected, due to the +1 on peptide lower termini

...


branch: master 「№57249」
Commited by: Sergey Lyskov
GitHub commit link: 「08479a8cfe3f0600」
Difference from previous tested commit:  code diff
Commit date: 2014-09-04 21:52:57

Adding PyRosetta unit tests

...


branch: master 「№57248」
Commited by: nollikai
GitHub commit link: 「ffba37bbf059ce92」 「№75」
Difference from previous tested commit:  code diff
Commit date: 2014-09-04 18:28:24

Merge pull request #75 from RosettaCommons/nollikai/ClashBasedRepackShellSelector Adding ClashBasedRepackShellSelector to core/pack/task/residue_selector Created a new ResidueSelector that identifies residues that clash with any possible rotamer of all designable positions in a given PackerTask. This solves a problem I routinely encounter with distance-based repack shells, which never include the same residues I would have chosen from looking at the structure. Instead, this ResidueSelector can be used to define a repack shell that only includes residues whose side-chains clash with any rotamer of a design position, resulting in the selection of residues that I actually want to be repacked. This code was co-written with Roland Pache @rpache

...


branch: master 「№57247」
Commited by: Labonte
GitHub commit link: 「148d91b4d8be3329」
Difference from previous tested commit:  code diff
Commit date: 2014-09-04 16:13:34

Atom Typing: fixing two bugs related to atom typing NEWS: The following bugs have been fixed: - The patch system failed to correctly set chemical::Atom's MMAtomType name, so so any variant ResidueType had mismatched MMAtomType names and indices. - The patch system failed to correctly set new Elements when an AtomType changed. This was primarily an issue for cases when virtual atoms were changed to real atoms and vice versa. - The Gasteiger atom-typer failed to correctly assign GasteigerAtomTypes in those cases, because it relies on having the correct Element. (As an aside, I have also add a miscellany of my own glyco-PyRosetta pilot apps for tracking in Git.) ---------------------------------------- Unit test status: Pass Integration test status: 1 test changed carbohydrates: now showing correct atom typing

...


branch: master 「№57246」
Commited by: P. Douglas Renfrew
GitHub commit link: 「c23363cff2bb6e50」 「№74」
Difference from previous tested commit:  code diff
Commit date: 2014-09-04 12:37:19

Merge pull request #74 from RosettaCommons/dougrenfrew/normalmode_warning_fix Fix warning-as-errors error in NormalMode code

...


branch: master 「№57245」
Commited by: nollikai
GitHub commit link: 「e8de2ba799029509」 「№73」
Difference from previous tested commit:  code diff
Commit date: 2014-09-03 20:16:23

Merge pull request #73 from RosettaCommons/nollikai/ShortBackrubMover Adding ShortBackrubMover to protocols/simple_moves Created a new mover that performs a three residue backrub move. Peptide bond rotations are also performed to minimize the displacement of backbone carbonyl oxygen atoms. This mover samples rotation angles from a normal distribution, unlike traditional backrub moves, which use a uniform distribution. The standard deviation of the rotation angle distribution can be set using set_rotation_std_dev( Real ). This mover is particularly useful when combined with BoltzmannRotamerMover to perform coupled side-chain / backbone moves.

...


branch: master 「№57244」
Commited by: Sergey Lyskov
GitHub commit link: 「9187fdbad97ebfcb」 「№72」
Difference from previous tested commit:  code diff
Commit date: 2014-09-03 12:01:28

Merge pull request #72 from RosettaCommons/PyRosetta Fixing PyRosetta namespace build

...


branch: master 「№57243」
Commited by: sarel
GitHub commit link: 「0262826e3a05eff0」
Difference from previous tested commit:  code diff
Commit date: 2014-09-03 06:56:30

Eliminating CircularPermutationFinder filter. In retrospect the filter didn't make much sense. No test changes expected.

...


branch: master 「№57242」
Commited by: Labonte
GitHub commit link: 「e6a2d558511e4ffc」
Difference from previous tested commit:  code diff
Commit date: 2014-09-02 21:57:24

ResidueProperties: fixing unit test; sorry! :rat:

...


branch: master 「№57241」
Commited by: Labonte
GitHub commit link: 「553781cd36b4f5a9」
Difference from previous tested commit:  code diff
Commit date: 2014-09-02 17:51:22

ResidueProperties: VariantTypes are now enums instead of strings NEWS: Similar to what I did with properties, **`VariantType`s are now `enum`s and the variant state of a given `ResidueType` is now stored in a vector of Booleans indexed by said `enum`s.** This is Part IIA of my refactoring of `ResidueType` properties in Rosetta. **Done:** - [x] Variant status stored in `ResidueProperties` as `vector1< bool >` and indexed by `VariantType`. - [x] Auto-code-generation script renamed and refactored to generate multiple files. - [x] String-look-ups removed from ~170 files. - [x] ~90 topology and patch files modified to reflect name-changes to `VariantType`s that would conflict with properties. - [x] Added new unit tests. - [x] Fixed any broken unit tests. - [x] Fixed any broken integration tests. - [x] Added way to handle on-the-fly `VariantType`s. (IMO, they should be avoided, but it is allowed here for backward compatibility.) - [x] Moved variant matching functions out of `ResidueType` and into `util.cc` and thoroughly refactored them. **Still To-Do:** - [ ] Refactor more central code that still relies on string-look-ups. (Much of the code involving switching from one variant to another involves making a list of all the `VariantType` strings in the before and after states and comparing them to select an appropriate `ResidueType`. I will fix this shortly.) Most of the "Still To-Do" is complete or nearly complete. I am trying to confirm that numeric changes in SWA and SWM integration tests are not something about which to worry. I thus decided to break this merge into two parts. If you are curious as to the progress, see pull request #56 on GitHub. ---------------------------------------- Unit test status: Pass Integration test status: 4 tests change inverse_rotamer_remodel, enzdes, Enzrevert_xml: output changes explaining custom VariantTypes carbohydrates: output changes to ResidueType::show()

...


branch: master 「№57240」
Commited by: nollikai
GitHub commit link: 「29ae477b69e07559」
Difference from previous tested commit:  code diff
Commit date: 2014-09-02 16:27:34

Fixing copy constructor in BoltzmannRotamerMover Setting randomize_resnum_ to true if resnum_ is not set.

...


branch: master 「№57239」
Commited by: nawsad
GitHub commit link: 「99a0f67d8cc17e40」
Difference from previous tested commit:  code diff
Commit date: 2014-08-31 15:05:10

Trying to fix what I broke in the last commit after changing the src/protocols/cluster/cluster.cc file. I added a new flag to allow clustering without superimposition during distance measure calculation.

...


branch: master 「№57238」
Commited by: nawsad
GitHub commit link: 「ed1b3f521cb99154」
Difference from previous tested commit:  code diff
Commit date: 2014-08-31 11:12:07

Made some changes to cluster.cc file. Added a flag called -skip_align to allow clustering without superimposition during RMSD matrix calculation. Used rmsd_no_super for that purpose.

...


branch: master 「№57237」
Commited by: nollikai
GitHub commit link: 「42ab8e20ef24a3ce」
Difference from previous tested commit:  code diff
Commit date: 2014-08-29 18:20:56

Removing unused variables in BoltzmannRotamerMover to get rid of warnings

...


< 1 .. 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 .. 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