branch: master 「№59864」
Commited by: Sergey Lyskov
GitHub commit link: 「7e01283cc220c42b」
Difference from previous tested commit:  code diff
Commit date: 2017-11-13 13:49:18

fixing build

...


branch: master 「№59863」
Commited by: Sergey Lyskov
GitHub commit link: 「82d7ec8ca644f9da」
Difference from previous tested commit:  code diff
Commit date: 2017-11-13 13:00:23

fixing build_rosetta so it works in clean-rebuild case

...


branch: master 「№59862」
Commited by: Sergey Lyskov
GitHub commit link: 「fddd870bbc54887f」
Difference from previous tested commit:  code diff
Commit date: 2017-11-13 12:15:19

triggering clean rebuild

...


branch: master 「№59861」
Commited by: Sergey Lyskov
GitHub commit link: 「81ed0ca0949fbf6f」 「№2710」
Difference from previous tested commit:  code diff
Commit date: 2017-11-12 18:23:55

Merge pull request #2710 from RosettaCommons/sergey/binder PyRosetta update. Adding bindings generation for constructor inherited from base class by 'using' declaration.

...


branch: master 「№59860」
Commited by: Jack Maguire
GitHub commit link: 「a2716b8a2510bb67」 「№2696」
Difference from previous tested commit:  code diff
Commit date: 2017-11-11 15:10:19

Merge pull request #2696 from RosettaCommons/JackMaguire/atom_level_HBondGraph2 Monte Carlo HBNet Update

...


branch: master 「№59859」
Commited by: Alexander Ford
GitHub commit link: 「25038a170d98e2f1」 「№2698」
Difference from previous tested commit:  code diff
Commit date: 2017-11-10 18:08:08

Merge pull request #2698 from RosettaCommons/fordas/pyrosetta_logging_support Pass pyrosetta logging output through logging module.

...


branch: master 「№59858」
Commited by: Rhiju Das
GitHub commit link: 「2ce00e73bb7a56be」 「№2693」
Difference from previous tested commit:  code diff
Commit date: 2017-11-10 15:49:36

Merge pull request #2693 from RosettaCommons/rhiju/PDB_components all tests pass - in integration tests, all changes are cosmetic, except sequence_recovery has slight deviation due to readin of some ligands; they are ignored in design calcs though.

...


branch: master 「№59857」
Commited by: Rocco Moretti
GitHub commit link: 「1a61e747d4b34518」 「№2593」
Difference from previous tested commit:  code diff
Commit date: 2017-11-09 11:03:33

Merge pull request #2593 from RosettaCommons/roccomoretti/no_pose_get_resnum Remove Pose dependency from get_resnum*() usage in parse_my_tags() The functions in core/pose/selection.hh which take a TagOP used to also take a Pose, which is sub-ideal, as the pose at parse_my_tag time is likely different from the pose at apply() time. Fix this by converting things to use ResidueSelectors for deferred parsing (for multi-residue selection), or by storing the resnum string directly and parsing it later (for single residues). I haven't fixed all Pose-dependent get_resnum usage, but I have eliminated the utility functions which take TagOPs, which is worth a commit so people don't re-introduce usage. PyRosetta User Alert: Due to the conversion from core::Size specification to std::string for residue specifications, the get/set interface of some classes have changed. This should be a minimal change, as you likely to wrap the inputs with a str() call -- but it does mean a number of scripts may need to be adjusted.

...


branch: master 「№59856」
Commited by: Sharon Guffy
GitHub commit link: 「54e43dafd7e76176」 「№2671」
Difference from previous tested commit:  code diff
Commit date: 2017-11-09 10:47:09

Merge pull request #2671 from RosettaCommons/guffysl/deprecate_legacy_sewing This branch deprecates the version of SEWING currently in master to legacy_sewing in preparation for the merge of the SEWING refactor. It also adds accurate xml schema for the legacy SEWING movers so that they can still be accessed through RosettaScripts. Integration test changes to continuous_sewing_hasher and discontinuous_sewing_hasher expected (namespace changes in tracers/options).

...


branch: master 「№59855」
Commited by: Rocco Moretti
GitHub commit link: 「ae8488525cfbb94c」 「№2707」
Difference from previous tested commit:  code diff
Commit date: 2017-11-09 10:18:56

Merge pull request #2707 from RosettaCommons/roccomoretti/reb_insertion_codes Add insertion code support to per_residue_energies and residue_energy_breakdown. Uses the antibody-style 123C:I for chain C, residue 123, insertion code I. Omit insertion code if unused.

...


branch: master 「№59854」
Commited by: Alexander Ford
GitHub commit link: 「08290b8e656e01ce」 「№2706」
Difference from previous tested commit:  code diff
Commit date: 2017-11-09 08:23:23

Merge pull request #2706 from RosettaCommons/fordas/chainbreak_filter_fix Update chainbreak filter 'apply' to filter if chainbreaks are present.

...


branch: master 「№59853」
Commited by: Orly Marcu
GitHub commit link: 「c54e55cbcf2ff7c7」 「№2695」
Difference from previous tested commit:  code diff
Commit date: 2017-11-09 04:12:52

Merge pull request #2695 from RosettaCommons/orlypolo/split-peptideDeriverFilter-to-classes Separating classes that lived under the same PeptideDeriverFilter files

...


branch: master 「№59852」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「711043ab49744780」 「№2670」
Difference from previous tested commit:  code diff
Commit date: 2017-11-08 08:11:54

Merge pull request #2670 from RosettaCommons/aleaverfay/simple_lkball_performance_improvements Performance improvements for LK_Ball Performance improvements for LK_Ball that will perhaps improve multithreaded performance In particular: LKB_ResidueInfo now holds a pointer to the singleton-managed array of WaterBuilders that it needs to compute the coordinates of the waters in scoring/derivative calculation. Previously, it had to go to the Singleton and obtain a ReadLock on the singleton once per residue per score function evaluation. Yikes! I'm hoping this reduces lock contention. Unrelatedly, I noticed that a signficant amount of time is spent in setup-for-minimization in the construction of residue-pair atom neighbor lists. The big expense: pushing back atom-index pairs into an array. So I am now reserving space for 100 atom-index pairs. Also. The water-positional-derivative calculation is somewhat slow and needed only during derivative evaluation, but was being computed at every score function evaluation. So that is another source of speed. Finally, LKBall was allocating and deallocating lots of small arrays during scoring and derivative evaluation. Those small arrays have been replaced with fixedsizearray1's which can be allocated on the stack. This requires knowing an upper bound on the number of waters per heavyatom, which is now hard coded to 4 in the constant MAX_N_WATERS_PER_ATOM defined in LK_BallInfo.hh. This constant controls the size of these fixedsizearray1s. In my hands relax_jd3 is performing just as fast in multithreaded mode and MPI mode at a small benchmark of 100 relax trajectories of 1ubq with 40 worker threads. @fdimaio @vmullig @phbradley

Andrew Leaver-Fay 7 years
There's a pretty uniform drop in running times for the profile tests. That's good news.
...


branch: master 「№59851」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「6b6d165febcb6ec9」 「№2686」
Difference from previous tested commit:  code diff
Commit date: 2017-11-07 18:06:06

Merge pull request #2686 from RosettaCommons/jadolfbr/skip_crap_structures Enable old databases to load disulfide residues. With the switch from CYD residue type to a proper patch, old databases could no longer load in. This fixes that with a simple string replace in the res_type table column to the current name with the patch. Also fix an unimplemented option in RosettaAntibodyDesign, and expand a antibody database unit test.

...


branch: master 「№59850」
Commited by: Rocco Moretti
GitHub commit link: 「7fae3efdbc577d5a」
Difference from previous tested commit:  code diff
Commit date: 2017-11-07 11:27:59

Fix PEP Version presence in integration test diffs.

...


branch: master 「№59849」
Commited by: Scott Boyken
GitHub commit link: 「1027f6176ac11852」 「№2703」
Difference from previous tested commit:  code diff
Commit date: 2017-11-05 14:24:09

Merge pull request #2703 from RosettaCommons/sboyken/fix_xcode Fix Xcode make_project.py

...


< 1 .. 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 .. 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