branch: master 「№61016」
Commited by: Benjamin Basanta
GitHub commit link: 「00b2ddab2d4f71f2」 「№4332」
Difference from previous tested commit:  code diff
Commit date: 2019-11-02 19:45:46

Merge pull request #4332 from RosettaCommons/hahnbeom/gadock_bugfix_zero_phores add a logic to pass pharmacore match if no phore match is found

...


branch: master 「№61015」
Commited by: Vikram K. Mulligan
GitHub commit link: 「0924b7ecfe83abac」 「№4335」
Difference from previous tested commit:  code diff
Commit date: 2019-10-31 18:36:58

Merge pull request #4335 from RosettaCommons/vmullig/int_to_size_in_string_util Fixing bug that was preventing read of some large text files. In our string utilities, we have a function that reads in a text file and returns a string with the file's contents. This function reserves space based on the number of characters read in. This count was unfortunately being stored in a standard, signed int, which meant that long text files could result in overflow and a negative value being passed to string::reserve(). This corrects this by switching the integer to a platform::Size, which guarantees that the number of numbers that can be stored is greater than or equal to the maximum size of string that you could store.

...


branch: master 「№61014」
Commited by: Rocco Moretti
GitHub commit link: 「dc7a49ce5d95aa6f」 「№4290」
Difference from previous tested commit:  code diff
Commit date: 2019-10-31 11:50:00

Merge pull request #4290 from RosettaCommons/roccomoretti/bugprone-integer-division_fix Fix clang-tidy bugprone-integer-division Dividing two integers in C++ gives a (truncated) integer result. This may not be what you want. Clang-tidy has a check to see if you're doing an integer division and then using the result as a floating point. This flags a fair number of examples in Rosetta, some of which are obvious bugs. I've attempted to fix the instances which clang-tidy flags, mainly by converting them to actual floating point results. This may not be the best way to fix some of these, so feel free to adjust such that the intent is clearer. See https://github.com/RosettaCommons/main/pull/4290 for detailed discussion.

...


branch: master 「№61013」
Commited by: Rebecca Alford
GitHub commit link: 「5aed75f2e796a33a」 「№4327」
Difference from previous tested commit:  code diff
Commit date: 2019-10-29 08:37:43

Merge pull request #4327 from RosettaCommons/rfalford12/find-optimal-hydrophobic-thk Adding application for finding the lowest energy hydrophobic thickness

...


branch: master 「№61012」
Commited by: Vikram K. Mulligan
GitHub commit link: 「8733563663c9768b」 「№4325」
Difference from previous tested commit:  code diff
Commit date: 2019-10-25 23:03:02

Merge pull request #4325 from RosettaCommons/vmullig/tweak_simple_cycpep_predict_sci_test_cutoffs Tweak simple_cycpep_predict sci test cutoffs a wee bit. Some of these are a bit too lax at the moment. Based on the last half-dozen or so runs, I'm making them a little bit more stringent.

...


branch: master 「№61011」
Commited by: Ryan Pavlovicz
GitHub commit link: 「a218aa31552b99fb」 「№4324」
Difference from previous tested commit:  code diff
Commit date: 2019-10-25 18:47:34

Merge pull request #4324 from RosettaCommons/rpavlovicz/ddg_fixes Rpavlovicz/ddg fixes

...


branch: master 「№61010」
Commited by: Frank DiMaio
GitHub commit link: 「f98f7fbbce6b021d」 「№4323」
Difference from previous tested commit:  code diff
Commit date: 2019-10-25 14:45:41

Merge pull request #4323 from RosettaCommons/dimaio/hybridize_bugfixes Two hybridize fixes

...


branch: master 「№61009」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「91a31acab4e44577」 「№4321」
Difference from previous tested commit:  code diff
Commit date: 2019-10-25 11:12:21

Merge pull request #4321 from RosettaCommons/jadolfbr/fix_pyr_multi Patch PyRosetta build for multithreading - from Alex Ford.

...


branch: master 「№61008」
Commited by: Brahm Yachnin
GitHub commit link: 「144630bd1ecd2680」 「№4322」
Difference from previous tested commit:  code diff
Commit date: 2019-10-24 18:56:06

Merge pull request #4322 from RosettaCommons/BYachnin/fix_quality_clang_tidy_tests Fixing the ubuntu.clang.code_quality.clang_tidy test breakages introduced by my recent merge. Here's the broken test: https://b3.graylab.jhu.edu/test/562923 Here's the test for this revision: https://b3.graylab.jhu.edu/test/563115

...


branch: master 「№61007」
Commited by: Vikram K. Mulligan
GitHub commit link: 「91b4d2d1beee08f2」 「№4295」
Difference from previous tested commit:  code diff
Commit date: 2019-10-24 16:24:27

Merge pull request #4295 from RosettaCommons/vmullig/rocco_fix_to_hbond_geom Picking Rocco's fix to hbonds_geom.cc out of roccomoretti/bugprone-integer-division_fix. Description: In pull request #4290, Rocco has identified a number of places in which we have likely been making division errors by assuming that an integer divided by an integer gives a floating-point number (which it does not). These are bugs that need to be fixed. Unfortunately, at least one likely has implications for scoring or minimization. This is the change most likely to cause unit, integration, and scientific test changes, so I think it makes sense to test it and merge it entirely separately. I want to be sure that this is a change that we can make without re-calibrating the whole scoring function. Notes on the current scientific test failures and changes: -- make_fragments, RosettaCM, and glycan_structure_prediction are all failures-to-run because they're not yet in the current master. -- dock_glycans and mp_symdock fail in the same way as they do currently in master. -- Looking at fast_relax_5iter (which passes), I notice no remarkable qualitative difference from current master. (There are no large changes in the scores or score ranges, for example). -- Looking at antibody_snugdock (which passes), there are big jumps in the discrimination score, but I gather that this happens from run to run anyways. The plots look qualitatively similar. -- The simple_cycpep_predict test does a lot of sampling. Again, the E vs. RMSD lots look qualitatively very similar. -- All tests passing in master pass in this branch. Based on the scientific test results (https://b3.graylab.jhu.edu/revision/commits/13892), I'm pretty convinced that this change to scoring is sufficiently benign that we don't need to worry about recalibrating everything or about it invalidating scientific performance.

...


branch: master 「№61006」
Commited by: Frank DiMaio
GitHub commit link: 「a8ba3f14cdbce927」 「№4315」
Difference from previous tested commit:  code diff
Commit date: 2019-10-24 13:38:54

Merge pull request #4315 from RosettaCommons/dimaio/fix_hybrid_max_contig_insertion_option Fixing the behavior of max_contig_insertion in HybridizeMover.

...


branch: master 「№61005」
Commited by: Andy Watkins
GitHub commit link: 「b6a2dfe73d33f447」 「№4319」
Difference from previous tested commit:  code diff
Commit date: 2019-10-24 10:32:51

Merge pull request #4319 from RosettaCommons/everyday847/pdb_components_update update components

...


branch: master 「№61004」
Commited by: Ryan Pavlovicz
GitHub commit link: 「abb32da021840d6f」 「№3244」
Difference from previous tested commit:  code diff
Commit date: 2019-10-23 19:04:05

Merge pull request #3244 from RosettaCommons/rpavlovicz/water_branch_updates Updates to the beta_nov16 statistical water protocols.

...


branch: master 「№61003」
Commited by: Brahm Yachnin
GitHub commit link: 「eea4e61f58643611」
Difference from previous tested commit:  code diff
Commit date: 2019-10-22 19:36:09

Integrate nmer into mhc_epitope to allow packer-compatibility The "established" mechanism for de-immunizing proteins in Rosetta is using the NMerSVMEnergy class implemented by @indigogo . In contrast to MHCEpitopeEnergy, NMer is not inherently packer compatible. This PR essentially adds a new MHCEpitopePredictor that allows nmer to be packer-compatible, using the framework we established with mhc_epitope. While the SVM-based scoring is rather slow using the current SVMs, the common framework could still be used to score proteins outside of the context of the packer. In addition, if faster SVMs are added (or generated by the user), they could be used in a packer-compatible manner. In order to implement this, a few changes to both the MHCEpitopeEnergy class and the NMer classes needed to be made. Testing has not shown any changes triggered by these changes. (The failure for mhc_epitope_nmer_preload is expected, as the test was changed to introduce nmer stuff. The failure for mhc_epitope is cosmetic.) In addition to the nmer integration itself, this PR also makes some under-the-hood changes: -MHCEpitopeEnergy now handles Predictors that work using a core + potentially missing overhang definition of their peptides, where the "overhang" regions could hang off the end of the peptide chain. This is different from cases where the entire peptide is "core," meaning that some peptides at the end of the chain would not be counted. NetMHCII dealt with this internally, but nmer does not, so it was needed for equivalent treatment. Extendable to other Predictors that use this strategy. -Disk reads are now all handled by the ScoringManager, which should improve performance in certain cases. -Some things got moved around to address the split of `core.3` which took place some months ago. Thanks to @indigogo for originally writing the nmer code, and @vmullig for review (and particularly suggesting the ScoringManager improvements).

...


branch: master 「№61002」
Commited by: Daniel Farrell
GitHub commit link: 「068da34a45be898e」 「№4314」
Difference from previous tested commit:  code diff
Commit date: 2019-10-22 15:22:27

Merge pull request #4314 from RosettaCommons/danpf-rosetta-es-patch-1 python2->3 bug in rosettaES script

...


branch: master 「№61001」
Commited by: Brian Coventry
GitHub commit link: 「0d1acbb9263c0a12」 「№4317」
Difference from previous tested commit:  code diff
Commit date: 2019-10-22 13:56:29

Merge pull request #4317 from RosettaCommons/bcov/FixZeroMQ Fix ZeroMQ build

...


< 1 .. 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 .. 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