branch: master 「№61144」
Commited by: Vikram K. Mulligan
GitHub commit link: 「321d95b6c7a2f2df」 「№4509」
Difference from previous tested commit:  code diff
Commit date: 2020-02-19 19:48:15

Merge pull request #4509 from RosettaCommons/vmullig/fix_simple_cycpep_predict_bug Fix a bug in simple_cycpep_predict with disulfides in MPI mode The addition of the DISULFIDE variants to the native pose when predicting structures of disulfide-cyclized peptides was messed up, but only in MPI mode. The issue was that the SimpleCycpepPredictApplication object is initialized differently in the non-MPI mode (reading directly from disk) or in MPI mode (one process reads from disk and broadcasts stuff to all other processes). The initialization of the native pose was depending on information that had not yet been received by all processes in the latter case (the sequence length). TODO: - [x] Check the `simple_cycpep_predict` scientific test (queued here: https://b3.graylab.jhu.edu/revision/commits/14718 ). --> Yes, this runs correctly still.

...


branch: master 「№61143」
Commited by: Jack Maguire
GitHub commit link: 「7bb3f803381ea6a4」 「№4498」
Difference from previous tested commit:  code diff
Commit date: 2020-02-19 08:21:36

Merge pull request #4498 from RosettaCommons/JackMaguire/FixFastDesignRampLogic Fixing CST Ramping Logic in FastDesign @AJVincelli reported at Winter RosettaCON 2020 that FastDesign did not respect the -relax:ramp_constraints false flag. At the time she thought it was due to MonomerDesign2019 but it turns out this bug was present for all of FastDesign.

...


branch: master 「№61142」
Commited by: Jack Maguire
GitHub commit link: 「286deaae4986f74e」 「№4501」
Difference from previous tested commit:  code diff
Commit date: 2020-02-19 07:44:18

Merge pull request #4501 from RosettaCommons/JackMaguire/FixThanhsBug Handling edge cases for the SequenceSymmetricAnnealer SequenceSymmetricAnnealer started out as a hack and slowly matured into a feature that was merged to master in #4117 and #4260. Some edge-case handling was missed during the de-hackifying process. The branch name is misleading. This is not Thanh's bug - this is my bug that Thanh found. Thanks Rocco for the review!

...


branch: master 「№61141」
Commited by: Amanda Loshbaugh
GitHub commit link: 「0d16bfb5a1f4a18d」 「№4435」
Difference from previous tested commit:  code diff
Commit date: 2020-02-18 21:02:31

Merge pull request #4435 from RosettaCommons/aloshbau/debug_params_python Aloshbau/debug params python

...


branch: master 「№61140」
Commited by: Rocco Moretti
GitHub commit link: 「7502917d27dea5f4」 「№4510」
Difference from previous tested commit:  code diff
Commit date: 2020-02-18 19:15:31

Merge pull request #4510 from RosettaCommons/roccomoretti/fix_timing_issue Fix issue with JD2 timing code. There was a runtime assert that we weren't finishing jobs before we started them. NTP clock adjustments can make start/end times non-monotonic, so accommodate for those.

...


branch: master 「№61139」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「2e16622e1f392bea」 「№4506」
Difference from previous tested commit:  code diff
Commit date: 2020-02-18 12:51:35

Merge pull request #4506 from RosettaCommons/jadolfbr/glycan_benchmarking3 Fix issues identified by CPPCheck.

...


branch: master 「№61138」
Commited by: Sergey Lyskov
GitHub commit link: 「16a2df6ce1af833c」 「№4504」
Difference from previous tested commit:  code diff
Commit date: 2020-02-15 14:19:42

Merge pull request #4504 from RosettaCommons/sergey/binder PyRosetta update, updating Pybind11 version to address PyTorch/TensorFlow import issues.

...


branch: master 「№61137」
Commited by: Steven Lewis
GitHub commit link: 「0ffed8fdc6a22988」 「№4505」
Difference from previous tested commit:  code diff
Commit date: 2020-02-15 12:32:30

Merge pull request #4505 from CyrusBiotechnology/smlewis/fix_werror_release_Debug fix some release_debug problems in FASTER's IG

...


branch: master 「№61136」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「7ebfc28f35f8ebef」 「№4473」
Difference from previous tested commit:  code diff
Commit date: 2020-02-15 11:01:50

Merge pull request #4473 from RosettaCommons/jadolfbr/glycan_benchmarking3 # WaterMediatedHbondMetric A metric to measure hydrogen bonds between a set of residues that are water-mediated. Docs: https://www.rosettacommons.org/docs/latest/scripting_documentation/RosettaScripts/SimpleMetrics/simple_metric_pages/WaterMediatedHbondMetric ## DEPTH: We only traverse a depth of 1 by default. Make sure to set the -ignore_waters flag to false in order to have Rosetta include the HOH residues. ## SELECTION: If one residue selector is given, will calculate bridged waters between residues of the selection and all [OTHER] residues, otherwise it will calculate bridges between one selection and another. If NO SELECTION is give, will report ALL bridged hbonds in a pose [by default without self-water-self hbonds]. ## HBOND: Since these are bridged hbonds, and h-bond networks can be rather complex, the numbers reported here are the unique h-bond paths from sele1 to sele2. If you give only a single residue selector, these are bridged hbonds from sele1 to OTHER residues in sele1. By default we do not include mediated hbonds back on itself, but this is an option. ## TIPS: It is generally recommended to repack the waters using the OptH TaskOperation before input into this metric, especially if only Oxygens were present. Using the option -include_vrt false will keep all waters present in the resulting structure. Use the option -corrections::water::wat_rot_sampling 10 to decrease the angle of sampling from a default of 30 to 10. This will result in many more rotamers, but will improve networks. Hydration shells can be calculated by passing selection1 as all waters in the pose, selection2 as the protein or chain, and then reporting only a single depth (with max_depth at 0 and 1 for the first and second shell waters." # HbondMetric A metric to report the total h-bonds residues from a selection to all [OTHER] residues, or from a set of residues to another set of residues. If No selection is given, will report ALL vs ALL. Docs: https://www.rosettacommons.org/docs/latest/scripting_documentation/RosettaScripts/SimpleMetrics/simple_metric_pages/HbondMetric ## Tips: Use the SummaryMetric to get total hbonds of a selection or total number of residues having some number of hbonds. . See the WaterMediatedBridgedHBondMetric for water-mediated h-bonds. By default does not report self-self hbonds # Etc - Added unit tests for both metrics - Fixed glycan integration tests - Add deprecated warning for -1 option in `test/run.py` as it will say subtests pass even though they don't.

...


branch: master 「№61135」
Commited by: Guangfeng Zhou
GitHub commit link: 「82fb3d1ac4ee4f5a」 「№4471」
Difference from previous tested commit:  code diff
Commit date: 2020-02-14 14:41:25

Merge pull request #4471 from RosettaCommons/guangfeng/galigdock_genparams Guangfeng/galigdock genparams

...


branch: master 「№61134」
Commited by: Rocco Moretti
GitHub commit link: 「aede1c1ca1988f60」 「№4500」
Difference from previous tested commit:  code diff
Commit date: 2020-02-14 10:11:01

Merge pull request #4500 from RosettaCommons/roccomoretti/fix_simple_cycpep_predict Fix typos in simple_cycpep_predict script.

...


branch: master 「№61133」
Commited by: Andy Watkins
GitHub commit link: 「94921cfa182447dd」 「№4494」
Difference from previous tested commit:  code diff
Commit date: 2020-02-13 17:32:50

Merge pull request #4494 from RosettaCommons/everyday847/fix_demos_failing Update demos submodule

...


branch: master 「№61132」
Commited by: Rocco Moretti
GitHub commit link: 「db9e98799b2b7be0」 「№4483」
Difference from previous tested commit:  code diff
Commit date: 2020-02-13 12:08:09

Merge pull request #4483 from RosettaCommons/roccomoretti/restype_converter_roundtrip Promote restype_converter application to public I initially implemented the restype_converter app as a pilot application, because the output formats were a bit sketchy in their completeness. With this PR, I fleshed out the params file output, such that it should be able to output lines for each of the input lines in the params file. Theoretically, the params files should now round-trip on a functional basis, though they don't necessarily round-trip on a textual one. (Loss of comments, reorganization, different precisions & spacings, equivalent ways of writing the same thing, etc.) I think this is usable enough to promote it to public. The SDF output files aren't necessarily round-trippable, but they're usable if all you want is atoms, bonds and coordinate information. I also extended the restype_converter integration test to make sure most all of the current params file lines are represented (and output), as well as implementing a basic round-trip test for fullatom types.

...


branch: master 「№61131」
Commited by: Rocco Moretti
GitHub commit link: 「3387ec42a9999de1」 「№4486」
Difference from previous tested commit:  code diff
Commit date: 2020-02-12 15:03:57

Merge pull request #4486 from RosettaCommons/roccomoretti/crash_report_server Add script for reporting crashes to the crash report server. For a while now Rosetta has been producing crash report logs. Part of the intent of having these would be to eventually collect those reports so we could see where Rosetta was having bugs or needed better error handling. -- The big limit to this so far being putting together the actual site to collect the data. Luki offered to put together such a website, and has done an awesome job of it: https://crash.rosettacommons.org/ (Submission of crash reports is open to the public, but viewing the reports needs a Github login.) There's still some open questions about how we want to summarize/organize/report the crash reports, but the actual crash report collection should be feature complete, and we have basic crash report search and summary functionality. This PR adds mention of the site into the crash report logs, as well as adding a script which can automatically collect and submit the crash reports. I also addressed a non-crash which was being reported as the most prevalent crash. (The exception raised by JD2 to report an issue with a job.) Not only will this reduce noise on the crash report server, this has the added benefit of making the tracer output look nicer in the case of errors.

...


branch: master 「№61130」
Commited by: Rocco Moretti
GitHub commit link: 「feb6ebf6c93447cb」 「№4485」
Difference from previous tested commit:  code diff
Commit date: 2020-02-08 17:37:31

Merge pull request #4485 from RosettaCommons/roccomoretti/fix_broken_tests Attempt to smash a bunch of broken tests in master on the test server. I looked at the failures in master, and saw if I could make some quick technical fixes. Not treated were "scientific" failures

...


branch: master 「№61129」
Commited by: Vikram K. Mulligan
GitHub commit link: 「3d4081e711726d93」 「№4474」
Difference from previous tested commit:  code diff
Commit date: 2020-02-08 02:21:28

Merge pull request #4474 from RosettaCommons/vmullig/no_movemap_controlling_packing_in_fastrelax Ensure more consistent default user interface for FastRelax At some point, someone added something to FastRelax that disables packing at positions where the MoveMap prohibits sidechain minimization. This is counter-intuitive behaviour: normally, MoveMaps control minimization and task operations control packing. This is what we teach new users, and this is what experienced users expect, so it's an unexpected side-effect to disable minimization at a position and to find that that position is no longer packing. Worse, this is one-way behaviour: a user that sets up a task operation that prohibits packing at position 5 does not automatically disable sidechain minimization at position 5, but a user who disables sidechain minimization at position 5 _does_ prevent packing at position 5. I'm disabling this behaviour unless the user opts _in_ by turning on a suitable commandline flag, RosettaScripts option, or C++ and Python-accessible option in the FastRelax object. Tasks: - [x] Add commandline flag to turn _on_ the old behaviour. - [x] Add FastRelax setting to turn _on_ the old behaviour. - [x] Setters and getters for C++ and Python. - [x] Option accessible to `parse_my_tag()` and `provide_xml_schema()` for RosettaScripts. - [x] Have the option enable the old behaviour, and disable it otherwise. - [x] Beauty. - [x] Check tests. - [x] Update documentation.

Sergey Lyskov 5 years
demo!
...


< 1 .. 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 .. 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