branch: master 「№61240」
Commited by: Jack Maguire
GitHub commit link: 「89feb597bd8a91cb」 「№4524」
Difference from previous tested commit:  code diff
Commit date: 2020-04-16 12:50:02

Merge pull request #4524 from RosettaCommons/JackMaguire/auto_ig This PR adds simple logic to prevent new users from spending a preventably-large amount of time precomputing 2-body energies.

...


branch: master 「№61239」
Commited by: Morgan Nance
GitHub commit link: 「ecbee2fe85fcbbcf」 「№4634」
Difference from previous tested commit:  code diff
Commit date: 2020-04-15 17:46:16

Merge pull request #4634 from RosettaCommons/mlnance/sugar/fix_sacch_seq_building Fix Pose building from saccharide sequence

...


branch: master 「№61238」
Commited by: Rocco Moretti
GitHub commit link: 「330299f3325c1c3f」 「№2466」
Difference from previous tested commit:  code diff
Commit date: 2020-04-14 14:48:44

Merge pull request #2466 from RosettaCommons/roccomoretti/parse_tag_interface_change Change the interface to parse_my_tags This is the final merge in a series of merges to reduce the interface of parse_my_tag(). This PR removes the Pose parameter from the parse_my_tag() function on Movers and Filters, leaving it as `void parse_my_tag( utility::tag::TagCOP tag, basic::datacache::DataMap &)` (like most other RosettaScripts objects.). The Movers map and Filters map parameters have been merged into the DataMap object, and the Pose parameter has been removed completely. -- In general, there's no reason to rely on the state of the Pose at parse time. There's no guarantee that the state of the Pose at parse time will match that at apply time. Instead, you should cache the information (residue selections, chain designations, etc.) and then evaluate it on the pose passed to apply. There are various objects which allow you to do this deferral more generally. Correspondingly, APPLY_TO_POSE has been removed. An empty APPLY_TO_POSE section is fine, but any content in that section will result in an error. See https://www.rosettacommons.org/docs/latest/scripting_documentation/RosettaScripts/Updating-RosettaScripts for more information about how to convert an XML using APPLY_TO_POSE to something that will work with the new scheme.

...


branch: master 「№61237」
Commited by: Yue Ying
GitHub commit link: 「50a65c5a982c344c」 「№4639」
Difference from previous tested commit:  code diff
Commit date: 2020-04-13 22:05:30

Merge pull request #4639 from RosettaCommons/dig_param_io_fix Dig.params and Rho.params IO_String & comments quick fix

...


branch: master 「№61236」
Commited by: Guangfeng Zhou
GitHub commit link: 「454bc7c6da604865」 「№4644」
Difference from previous tested commit:  code diff
Commit date: 2020-04-13 18:56:04

Merge pull request #4644 from RosettaCommons/guangfeng/galiganddock_bugfix Guangfeng/galiganddock bugfix

...


branch: master 「№61235」
Commited by: Vikram K. Mulligan
GitHub commit link: 「5c06e1405761a9f4」 「№4642」
Difference from previous tested commit:  code diff
Commit date: 2020-04-13 15:43:29

Merge pull request #4642 from RosettaCommons/vmullig/helical_bundle_predict_sequences Add support to helical_bundle_predict for arbitrary heteropolymer building-blocks. This is mainly an input issue. This PR lets you put in a sequence file containing a whitespace-separated list of residue type names in lieu of a FASTA file. This pull request also updates the EnvPairPotential so that it properly handles D-amino acids.

...


branch: master 「№61234」
Commited by: Vikram K. Mulligan
GitHub commit link: 「11cdcb4e0a1580f4」 「№4641」
Difference from previous tested commit:  code diff
Commit date: 2020-04-13 15:41:45

Merge pull request #4641 from RosettaCommons/vmullig/add_centroid_ncaas Add centroid params files for AIB, ORN, DAB, and DAP. This adds centroid-mode params files for commonly-used noncanonicals, plus a unit test confirming that they work as expected.

...


branch: master 「№61233」
Commited by: Morgan Nance
GitHub commit link: 「76f4bd6d8c8ead62」 「№4562」
Difference from previous tested commit:  code diff
Commit date: 2020-04-13 13:24:25

Merge pull request #4562 from RosettaCommons/mlnance/sugar/add_more_sugar_codes Adding more "easy" sugar PDB codes from the ligand list of the ProCarb database

...


branch: master 「№61232」
Commited by: Andy Watkins
GitHub commit link: 「1b9e8416beaf6b16」 「№4628」
Difference from previous tested commit:  code diff
Commit date: 2020-04-11 12:08:40

Merge pull request #4628 from RosettaCommons/everyday847/FARFAR_ligand_flexibility Ligand flexibility in FARFAR2

...


branch: master 「№61231」
Commited by: Frank DiMaio
GitHub commit link: 「3121c734db02d2b6」 「№4619」
Difference from previous tested commit:  code diff
Commit date: 2020-04-10 12:29:24

Merge pull request #4619 from RosettaCommons/dimaio/bbi_init_from_pdb Two changes for design of crystal lattices: * add the ability to supply a reference pose to BuildingBlockInterface * add the ability to add named symmetric DOFs to TaskAwareSymmMinMover

...


branch: master 「№61230」
Commited by: Sergey Lyskov
GitHub commit link: 「c1f98fedd9d01a85」 「№4631」
Difference from previous tested commit:  code diff
Commit date: 2020-04-10 11:44:22

Merge pull request #4631 from RosettaCommons/benchmark Updating benchmark scripts so they can be run on Windows. Updating PyMOL mover, reducing max-packet-size lower bounds.

...


branch: master 「№61229」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「d6acfa4cdbcffc69」
Difference from previous tested commit:  code diff
Commit date: 2020-04-10 10:41:58

python_cc_reader module to python3 (#4590) Submodule update for the tools repository which includes a large structural change to the `python_cc_reader` module and its conversion to python3. The directory structure for the `python_cc_reader` module is now as follows: ``` tools/ python_cc_reader/ python_cc_reader/ beauty/ code_improvement/ cpp_parser/ external/ inclusion_removal/ library_splitting/ tests/ utility/ ``` The rationale for this dirname-within-dirname structure was given on this page: https://docs.python-guide.org/writing/structure/ At the top level `python_cc_reader`directory live the user-level scripts such as `library_levels.py` and `beautify_changed_files_in_branch.py.` Within the lower level `python_cc_reader/python_cc_reader` directories live the modules that actually do all the heavy lifting. These scripts are imported by a number of other scripts in the `tools` repository, and I have updated all of these scripts.

...


branch: master 「№61228」
Commited by: Guangfeng Zhou
GitHub commit link: 「55e216a0de8f80ab」 「№4637」
Difference from previous tested commit:  code diff
Commit date: 2020-04-08 18:49:54

Merge pull request #4637 from RosettaCommons/guangfeng/galiganddock_bugfix Guangfeng/galiganddock bugfix

...


branch: master 「№61227」
Commited by: Rocco Moretti
GitHub commit link: 「8e488be728785270」 「№4316」
Difference from previous tested commit:  code diff
Commit date: 2020-04-08 17:41:08

Merge pull request #4316 from RosettaCommons/roccomoretti/mover_filter_map_remove Remove Movers_map and Filters_map from the Mover/Filter parse_my_tag interface. There's no actual reason to have a Movers_map and Filters_map separate from the DataMap we pass to parse_my_tag(), it's simply a historical artifact. Removing them (and placing their data into the DataMap) allows us to reduce the importance of Filters in RosettaScripts, and also will allow us to use Movers/Filters as parameters in setting up more complex ResidueSelectors, SimpleMetrics, etc. This PR removes the Mover & Filters map from the main interface for parse_my_tag(), going from 5 parameters to 3. This is merge one of a two part merge, where the second merge removes the pose parameter. That should hopefully be merged in shortly.

...


branch: master 「№61226」
Commited by: Rocco Moretti
GitHub commit link: 「ea7d9db17e866ad5」 「№4635」
Difference from previous tested commit:  code diff
Commit date: 2020-04-08 14:58:32

Merge pull request #4635 from RosettaCommons/roccomoretti/master_fixes Fix some master tests. The alpine build test seems to have issues with public virtual inheritance of VirtualBase - we can just remove that. Also fix some unused usings issues with clang-tidy.

...


branch: master 「№61225」
Commited by: Rocco Moretti
GitHub commit link: 「94006ef4e50388a2」 「№4611」
Difference from previous tested commit:  code diff
Commit date: 2020-04-08 10:03:59

Merge pull request #4611 from RosettaCommons/roccomoretti/database_md5 Add a database_md5 integration test. Going off a suggestion by Sergey, have an integration test which dumps the MD5 hashes of all the database files. This should hopefully help us debug situations in the future where test server databases get 'dirty' with state.

...


< 1 .. 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 .. 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