branch: master 「№58724」
Commited by: Vikram K. Mulligan
GitHub commit link: 「75fcb7efe0eda15c」 「№1383」
Difference from previous tested commit:  code diff
Commit date: 2016-06-05 06:41:07

Merge pull request #1383 from RosettaCommons/vmullig/fix_disulfidize_segfault Trying to fix segfault in Disulfidize when mutating a disulfide positionion to ala. The code wasn't properly calling core::conformation::break_disulfide(), resulting in a dangling disulfide partner that still thought that it was bonded to the mutated residue. At least, I think this is the problem.

...


branch: master 「№58723」
Commited by: Sergey Lyskov
GitHub commit link: 「38dcd38d55591b28」 「№1373」
Difference from previous tested commit:  code diff
Commit date: 2016-06-04 19:49:27

Merge pull request #1373 from RosettaCommons/sergey/binder Fixing Mac PyRosetta build

...


branch: master 「№58722」
Commited by: Andrew Watkins
GitHub commit link: 「8ea8c5526be93edb」 「№1381」
Difference from previous tested commit:  code diff
Commit date: 2016-06-04 15:02:55

Merge pull request #1381 from RosettaCommons/everyday847/pass_by_reference_where_appropriate Pass by reference cppcheck issues

...


branch: master 「№58721」
Commited by: Vikram K. Mulligan
GitHub commit link: 「a071e5285177f3eb」 「№1379」
Difference from previous tested commit:  code diff
Commit date: 2016-06-04 05:51:40

Merge pull request #1379 from RosettaCommons/revert-1359-vmullig/design_cycpep_app_2 Temporarily revert "Add design capability to the simple_cycpep_predict application" Reverts RosettaCommons/main#1359 There are a lot of weird instabilities in the integration tests that seem to have crept in with this merge, for reasons that I don't understand. I'm reverting this until I work this out.

...


branch: master 「№58720」
Commited by: Parisah
GitHub commit link: 「e8d13faeeddd3717」 「№1378」
Difference from previous tested commit:  code diff
Commit date: 2016-06-03 21:41:50

Merge pull request #1378 from RosettaCommons/hssnzdh2/crick_files adding crick_params for PPII and 3_10 helix

...


branch: master 「№58719」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「0354ef1bb541f005」 「№1334」
Difference from previous tested commit:  code diff
Commit date: 2016-06-02 18:23:33

Merge pull request #1334 from RosettaCommons/jadolfbr/pyrosetta_toolkit/fix_mutate PyRosetta Toolkit GUI: ================= Finally fixes the neighbor packing shell with mutate in the FullControlWindow that has been broken for sometime. Disables redirection of std::out to the terminal. The window looks nice, but the output in the terminal is way more useful. PyRosetta ======== Reinstate MutateResidue and separate how packing is done for neighbor residues into new function. Enable import of toolbox in rosetta ```__init__.py``` to re-inable default use of mutate_residue without imports. This has been requested by users on the forums, as well as used in various PyRosetta apps.

...


branch: master 「№58718」
Commited by: Jeliazko Jeliazkov
GitHub commit link: 「22f785ed0a9e53ce」 「№1338」
Difference from previous tested commit:  code diff
Commit date: 2016-06-02 10:12:59

Merge pull request #1338 from RosettaCommons/laurafulton/cdr_cluster_bug_fix fix null pointer crash (when cdrs are not identified) by adding exception

...


branch: master 「№58717」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「a3e7328121bcf787」 「№1368」
Difference from previous tested commit:  code diff
Commit date: 2016-06-01 19:33:27

Merge pull request #1368 from RosettaCommons/jadolfbr/carbohydrates/glycan_relax This PR covers some general code, bug fixes, and new code for antibodies, carbohydrates, and GlycanRelax. General ====== - _NeighborhoodResidueSelector_ completely refactored. Cleaned up. Simplifiied. Code that loop modeling used for getting neighbor residues, generalized and moved to core/select/util. This is now integrated with the _NeighborhoodResidueSelector_ to speed up neighbor calculation immensely (if scoring). - _ResidueSelector_ code_template cleaned up, fixed where needed. - Can now set a _ResidueSubset_ (```vector1<bool>```) in addition to a _ResidueSelector_ for the _OperateOnResidueSubset_ TaskOp - Can set an option in _OperateOnResidueSubset_ to flip the subset. So, for example, if your Selector chooses neighbor residues on each apply, you can operate on everything else. Bug Fixes ======== Disulfide link records properly skipped during read-in if output. This was causing a number of issues in being able to re-read in PDBs with disulfides that were output by Rosetta when using -write_pdb_link_records, which we use for carbohydrates Carbohydrates =========== - Adds a _GlycanResidueSelector_ to core. This can be used to both get ALL carbohydrates in a pose, or the glycans from specific root residues, like the carbohydrates given a particular ASN, or the branching residues from a particular carbohydrate residue in a tree. - Adds support for Side-Chain packing to GlycanRelax, with the default to pack all glycan residues and neighbors within the MC protocol, and at our final optimization step. Resfile support also given, as well as TF support through RosettaScripts. This enables OH group packing now that @JWLabonte has optimized this, as well as design of protein side-chains during the protocol. Antibodies ======== - Adds a _CDRResidueSelector_ for selecting residues of particular CDRs. @aleaverfay - Adds an _AntibodyRegionSelector_ for selecting residues of particular antibody regions, such as the antigen, framework, or CDRs Unit Tests ======= Added for all new _ResidueSelectors_

...


branch: master 「№58716」
Commited by: Vikram K. Mulligan
GitHub commit link: 「2901de5732899211」 「№1359」
Difference from previous tested commit:  code diff
Commit date: 2016-06-01 15:11:54

Merge pull request #1359 from RosettaCommons/vmullig/design_cycpep_app_2 Add design capability to the simple_cycpep_predict application This allows the simple_cycpep_predict application to design every conformation that it samples. Tasks: - Add option for design. - Add option to read in file allowing specification of allowed residues by position. - Add options for prohibiting D-amino acids in negative-phi region of Ramachandran space, and prohibiting L-amino acids in positive-phi region. - Have the above options actually set up the SimpleCycpepPredictApplication's settings. - Read per-residue options from a file. - Unit test for this. - Override file read by slave processes in MPI mode. - Have the above options actually DO something -- i.e. add design to the SimpleCycpepPredictApplication::genkic_close() function. - Set up design TaskOperations. - Unit test. - Debug problems revealed by unit test. - Eliminate/refactor anything in SimpleCycpepPredictApplication that would cause repeated reads from disk. - Check that this also results in no disk reads in beta_nov15 mode. - Double-check this at the end. - Integration test. - MPI-mode integration test. - Documentation. - Beauty. - Test on Jojo. - Test on Cetus (Blue Gene/Q test nodes). - Performance benchmarks on Mira (Blue Gene/Q production nodes). - Fix broken unit tests. Also: X Add option to exclude i - i+1 hydrogen bonds from hydrogen bond count. --> Separate pull request. - Add option to stop sending jobs after a certain amount of execution time has elapsed (and just collect whatever has completed). - Add timer, to facilitate benchmarking. - Add support for external constraints file. (Would need to handle circular permutations, though). --> Separate pull request. - Add support for separate .comp files for L-alpha, L-beta, D-alpha, and D-beta regions of Ramachandran space. - Add the options. - Have these files be read in. - Add them to the parsed protocol for design (with a SequenceConstraint and a suitable ResidueSelector). - In MPI mode, have the master process read these data from disk and transmit them to the slaves, to avoid repeated read-ins. (This means setting comp_file_contents_L_alpha_, comp_file_contents_D_alpha_, comp_file_contents_L_beta_, comp_file_contents_D_beta_, and abba_bins_). - Have global aa_composition setup files cache their data, rather than being re-read from disk whenever the score type is instantiated. - Test this.

...


branch: master 「№58715」
Commited by: Sergey Lyskov
GitHub commit link: 「e054830eb86735bc」
Difference from previous tested commit:  code diff
Commit date: 2016-06-01 00:10:38

Adding command.mpi.sh to ignore list so it will not show up in regression test diff

...


branch: master 「№58714」
Commited by: Frank DiMaio
GitHub commit link: 「551a71c407c5ed0d」 「№1370」
Difference from previous tested commit:  code diff
Commit date: 2016-05-31 21:21:06

Merge pull request #1370 from RosettaCommons/dimaio/symmmult_fix Change score_multiply in SymmInfo to Real-valued (was Size). Symm test failures are expected, they are either numeric noise (from Size->Real conversion), or bugs fixed.

...


branch: master 「№58713」
Commited by: Vikram K. Mulligan
GitHub commit link: 「0dbd0947f9c960f2」
Difference from previous tested commit:  code diff
Commit date: 2016-05-31 20:11:51

Fixing divide-by-zero edge case in AACompositionEnergy.

...


branch: master 「№58712」
Commited by: Hahnbeom Park
GitHub commit link: 「557d20a0ffd23ea3」 「№1366」
Difference from previous tested commit:  code diff
Commit date: 2016-05-31 14:25:00

Merge pull request #1366 from RosettaCommons/hahnbeom/residue_depth Adding residue depth filter

...


branch: master 「№58711」
Commited by: Vikram K. Mulligan
GitHub commit link: 「996f1cd1879fe7c9」 「№1365」
Difference from previous tested commit:  code diff
Commit date: 2016-05-29 20:38:26

Merge pull request #1365 from RosettaCommons/vmullig/fix_rama_uninit Trying to fix uninitialized var issue flagged by Valgrind. Turns out that it was a couple of new variables that were initialized in the default Ramachandran constructor, but not in an alternative constructor.

...


branch: master 「№58710」
Commited by: Rhiju Das
GitHub commit link: 「1fdd40a139d1fb97」 「№1367」
Difference from previous tested commit:  code diff
Commit date: 2016-05-29 13:10:19

Merge pull request #1367 from RosettaCommons/rhiju/magnesium_in_stepwise Code updates needed for modeling RNA residues around magnesium ions for ERRASER and stepwise modeling. Includes code for optimizing water locations and orientations around Mg(2+) during stepwise. No tests change, except for floating point issues & minor output changes to mg_modeler & number_of_residue_types, which are expected.

...


branch: master 「№58709」
Commited by: Sergey Lyskov
GitHub commit link: 「bcfbf55f0cbe1405」
Difference from previous tested commit:  code diff
Commit date: 2016-05-27 17:37:20

Adding measurement units to profile test graphs legends

...


< 1 .. 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 .. 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