branch: master 「№60152」
Commited by: Sergey Lyskov
GitHub commit link: 「4942466c12fa0449」
Difference from previous tested commit:  code diff
Commit date: 2018-04-12 01:17:04

beautifying

...


branch: master 「№60151」
Commited by: Sergey Lyskov
GitHub commit link: 「d3e04ebaf4c972e7」 「№3115」
Difference from previous tested commit:  code diff
Commit date: 2018-04-12 01:04:56

Merge pull request #3115 from RosettaCommons/benchmark fixing release and code_quality scripts

...


branch: master 「№60150」
Commited by: Andy Watkins
GitHub commit link: 「e00b011a5b613990」 「№3112」
Difference from previous tested commit:  code diff
Commit date: 2018-04-12 00:06:00

Merge pull request #3112 from RosettaCommons/everyday847/update_lores_potential Initial merge from a branch for updating the lores potential -- just cleans up code

...


branch: master 「№60149」
Commited by: Sergey Lyskov
GitHub commit link: 「951fe3cecceeaceb」 「№3077」
Difference from previous tested commit:  code diff
Commit date: 2018-04-11 17:07:31

Merge pull request #3077 from RosettaCommons/benchmark Upgrading Benchmark testing scripts to Python-3.6

...


branch: master 「№60148」
Commited by: Vikram K. Mulligan
GitHub commit link: 「a2a2ad66dd3af596」 「№3105」
Difference from previous tested commit:  code diff
Commit date: 2018-04-10 19:11:53

Merge pull request #3105 from RosettaCommons/vmullig/goto_killer Remove a bunch of unnecessary gotos. The only gotos remaining in Rosetta after this are in pilot apps (which we won't touch) and in `numeric/linear_algebra/rgg.cc` (which is an incomprehensible mess of gotos that nobody will ever dare to change). <img src="https://imgs.xkcd.com/comics/goto.png" />

...


branch: master 「№60147」
Commited by: Brahm Yachnin
GitHub commit link: 「bae7fc5e2f497d74」 「№3102」
Difference from previous tested commit:  code diff
Commit date: 2018-04-10 18:18:15

Merge pull request #3102 from RosettaCommons/BYachnin/global_SetupForSymmetry_option Add option to disable setting symmetry globally during SetupForSymmetry parse_my_tag This adds a new option, `set_global_symmetry_at_parsetime`, to the `<SetupForSymmetry>` mover. By default (true), the current behaviour is maintained. If set to false, the global option `symmetry_definition` is NOT set, which provides greater "safety" and flexibility for when symmetry should be used. This option is not backwards compatible with all symmetric protocols, however, necessitating the need to switch back and forth. The following integration tests are expected to fail due to new tracer output. This is entirely the expected behaviour: integration.mpi: threefold_symm_peptide_design integration.release_debug: crosslinkermover_tma_symm, homodimer_fnd_ref2015_memb, make_symmdef_file, minimize_with_elec_dens, mirror_symm, oligourea_design, repack_with_elec_dens, resource_database_locator, symm_disulfidize, symm_rotamer_boltzmann, symmetry_data_resource, threefold_symm_peptide_design, threefoldlinkermover_tbmb_symmetric, voids_penalty_energy_symmetry integration: crosslinkermover_tma_symm, homodimer_fnd_ref2015_memb, make_symmdef_file, minimize_with_elec_dens, mirror_symm, oligourea_design, repack_with_elec_dens, resource_database_locator, symm_disulfidize, symm_rotamer_boltzmann, symmetry_data_resource, threefold_symm_peptide_design, threefoldlinkermover_tbmb_symmetric, voids_penalty_energy_design_symmetry

...


branch: master 「№60146」
Commited by: Rocco Moretti
GitHub commit link: 「8bf3dc5b1239734f」
Difference from previous tested commit:  code diff
Commit date: 2018-04-10 18:00:47

beautifying

...


branch: master 「№60145」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「4441cacd03a9ff91」 「№3080」
Difference from previous tested commit:  code diff
Commit date: 2018-04-10 11:51:20

Merge pull request #3080 from RosettaCommons/jadolfbr/simple_metrics SimpleMetrics for analysis, filters, and features This PR adds **SimpleMetrics** to Rosetta, which I'm hoping will be the way we write metrics and filters going forward. They are easy to write, easy to use and (IMO) powerful - as you can use them to analyze data, use all of them for filtering, and/or create features reporter databases. I have not rewritten all of the filters, as they do some really crazy stuff. Additionally, we can use this to revive the scientific benchmarks. These have all been tested. Extras: - MinMover now works with new the new MoveMapFactory in RS - utility to define/limit RS option xsd as a vector of strings - All simple metrics have code_templates ToDo: - [x] Test all code - [x] Write integration tests - [x] Write unit test suite - [x] Write Documentation # SimpleMetrics Base Class: **SimpleMetric** Main SubClasses: **RealMetric**: Returns `Real` **StringMetric**: Returns `string` **CompositeRealMetric**: Returns `map< string, Real >` **CompositeStringMetric**: Returns `map< string, string >` ## SimpleMetric code - `core/simple_metrics` - `core/simple_metrics/metrics` - `protocols/analysis/simple_metrics` The two main methods of these classes are ` calculate( const & pose ) const` which returns a value (listed above), and `void apply( & pose, prefix="", suffix="") const`, which runs calculate and adds data to the pose. - `calculate( const pose )` : The calculate method is basically the only method you will need to code in your derived simple metric. The value depends on the type of subclass you are deriving from. - `apply( pose, prefix="", suffix="")` : This method adds the data to the pose as setPoseExtraScore so EVERY metric can be easily output into the score file. This apply method is defined in each main class, **so you do not need to write it and can always rely on it**. The metric name that is output as the score tag is `prefix+metric()+suffix`. Additionally, each metric from a composite metric is named (the key from the map). ## Implemented SimpleMetrics ### Main **RMSDMetric**: - Calculate the RMSD between an input (native) or reference pose to the current pose. Accepts a `ResidueSelector`. Works for protein/ligands/glycans/etc. Can accept TWO `ResidueSelector`s in order to compare non-matching areas. More options code-wise. Many options accepted as a string to determine HOW the calculation is done. Default is to be robust against non-matching atoms in a residue, allowing comparison of post-traslational modifications and similar mutations (option `robust`). **DOES NOT SUPERIMPOSE ** (and nor should it) RMSD Types (`rmsd_type` rosetta_script option) ``` rmsd_protein_bb_heavy, rmsd_protein_bb_heavy_including_O, rmsd_protein_bb_ca, rmsd_sc_heavy, rmsd_sc, rmsd_all_heavy, rmsd_all, ``` **DihedralDistanceMetric**: - Return the normalized BB dihedral angle distance from directional statistics in degrees. This was used for North/Dunbrack CDR clustering, but can be useful for comparing loops or regions of interest. A good internal comparison of structural change - as lever-arms do not effect measurement too much, so natural fluctuation is compared well. This also does not require a superposition. Accepts a `ResidueSelector`. Works for proteins and glycans. **TotalEnergyMetric** - Returns the total energy of the score function. Can set a `ResidueSelector` to limit to only those residues (yes, the hbond-energy is decomposed). Can set input structure or reference pose to get **DELTAS** **CompositeEnergyMetric** - Returns the energy of each nonzero score term in a score function. Can set a 'ResidueSelector' to limit to only those residues (hbonds decomposed). Can set input structure or reference pose to get **DELTAS**. **SasaMetric**: - Calculate the SASA of the pose or set of residues from a `ResidueSelector` ### Utility **TimingMetric** - Safely output the time passed from construction till calculate/apply in minutes. Options for hours. Useful for getting runtimes or averaging runtimes for protocols. Using two between movers or sets of movers can allow you to calculate time between them. **SelectedResiduesMetric** - Output residues selected by a `ResidueSelector`. Either pose or PDB numbering. Useful to get at the pose-numbers of residues of interest. **SelectedResiduesPyMOLMetric** - Output residues selected by a `ResidueSelector` as a PYMOL selection. Useful for very complex selections such as Layer Selection. # RunSimpleMetrics Run the metrics defined in the the `<SIMPLE_METRICS>` block (or defined as sub tags) (or set via code). The RunSimpleMetrics (mover) takes a list of metrics and runs them, adding the data to the pose for direct output into the score file using any set prefix/suffix. In this way, we can use them to show differences between movers or sets of moves if desired. Recommended to use json-format score files. # SimpleMetricFilter Takes a single metric from to run as a filter (including strings and composites). ## General Use You are required to give a `cutoff` value and `comparison_type` (eq, ne, lt, gt, lt_or_eq, gt_or_eq) to control the behavior of the filter (basically, when to return True). We do not define the cutoffs within the metrics - as filters currently work. If you want to write a filter that does this, write a `SimpleMetric` and use it within a classic filter with a cutoff. Comparison is done as `value comparison_type cutoff`. So if your `cutoff=4.0` for RMSDMetric and your` comparison_type` is lt, we return true if the value is less than 4.0. ## StringMetrics String metrics only work with eq and ne and this is checked. Instead of cutoff, StringMetrics require a `match` option to be set, which is simply a string. In this way, you can filter unwanted SS, sequence changes, or some other metric. ## CompositeMetrics Composite metrics require an additional option, `composite_action`. This can be `any`, `all`, or a specific composite type. For example, the `CompositeEnergyMetric` can return the energy value or delta energy between an input pose for each energy term. If we set this to `any`, then we return TRUE if ANY composite matches. ALL only returns TRUE if all of the metrics match our filter criteria. Additionally, we can give, for example, 'chainbreak' to filter specifically on the chain break term. # SimpleMetricFeatures The SimpleMetricFeatures simply takes a list of metrics. You can control the table that they get written to and can run the same set multiple times. If the table columns do not match on subsequent runs, we will exit with an informative error message. ## Documentation: https://www.rosettacommons.org/docs/wiki/scripting_documentation/RosettaScripts/RosettaScripts#rosettascript-sections_simple_metrics https://www.rosettacommons.org/docs/wiki/scripting_documentation/RosettaScripts/SimpleMetrics/SimpleMetrics

Rocco Moretti 6 years
It looks like the new simple_metric_features and simple_metric_filter integration tests are in a "perma-broke" state.
Jared Adolf-Bryfogle 6 years
Thanks Rocco, I'll fix this after the commit freeze.
...


branch: master 「№60144」
Commited by: Rocco Moretti
GitHub commit link: 「f9e0cf84fc444a6c」 「№3107」
Difference from previous tested commit:  code diff
Commit date: 2018-04-09 19:15:52

Merge pull request #3107 from RosettaCommons/roccomoretti/only_for_extras_dummy Add dummy cc file for 'only_for_extras' build. It appears the static build doesn't like an empty source list when an 'only_for_extras' library isn't active. Add a dummy source file which will be used for that purpose. Should fix the mac.clang.static.build.release test on the test server

...


branch: master 「№60143」
Commited by: Zander Harteveld
GitHub commit link: 「8dd9fff3c41e0f77」 「№3104」
Difference from previous tested commit:  code diff
Commit date: 2018-04-07 03:04:25

Merge pull request #3104 from RosettaCommons/jaumebonet/expandWriteSSEMover WriteSSEMover add phipsi output

...


branch: master 「№60142」
Commited by: Sergey Lyskov
GitHub commit link: 「3c2e9cb43351da54」 「№3067」
Difference from previous tested commit:  code diff
Commit date: 2018-04-06 10:49:04

Merge pull request #3067 from RosettaCommons/sergey/zeromq Adding ZeroMQ as external library via Git submodule

...


branch: master 「№60141」
Commited by: Vikram K. Mulligan
GitHub commit link: 「3bfd6ef7200bafb7」 「№3090」
Difference from previous tested commit:  code diff
Commit date: 2018-04-06 03:49:57

Merge pull request #3090 from RosettaCommons/vmullig/fix_sidechain_conjugation Just fix SIDECHAIN_CONJUGATION patch. Since pull request #3089 generated controversy, I'm cherry-picking out the changes that actually seem to fix the problem that I'm seeing and leaving the others for later. This pull request corrects the SIDECHAIN_CONJUGATION patch, and fixes a few little things in the Patch and PatchOperation classes. It does not alter the Conformation class in any way. Cosmetic integration test changes are expected from the Patch tracer name correction, and some trajectory changes in those integration tests involving sidechain-conjugated ASP or GLU are expected too (e.g. the simple_cycpep_predict isopeptide tests).

...


branch: master 「№60140」
Commited by: Vikram K. Mulligan
GitHub commit link: 「bfdb5e490e47e1ef」 「№3098」
Difference from previous tested commit:  code diff
Commit date: 2018-04-06 02:47:47

Merge pull request #3098 from RosettaCommons/vmullig/fix_nterm_proline_error Fix bug in simple_cycpep_predict with N-terminal prolines and isopeptide bonds. The issue was that the app is trying to sample the cis conformation of the peptide bond preceding the proline, which it can't do in the isopeptide case with proline at the N-terminus. Fixed.

...


branch: master 「№60139」
Commited by: Andy Watkins
GitHub commit link: 「c44882c4944c6198」 「№3097」
Difference from previous tested commit:  code diff
Commit date: 2018-04-05 19:34:51

Merge pull request #3097 from RosettaCommons/everyday847/odd_error Allow rna_minimize to 'remember its place' for big silent files

...


branch: master 「№60138」
Commited by: Jacob O'Connor
GitHub commit link: 「d9519a2ad8cddad8」 「№3095」
Difference from previous tested commit:  code diff
Commit date: 2018-04-05 14:52:17

Merge pull request #3095 from RosettaCommons/JacobOConnor/SimpleCycPepPredictPermute Fixing Bug in SimpleCycPepPredict

...


branch: master 「№60137」
Commited by: Rocco Moretti
GitHub commit link: 「15ef52adc03631da」 「№3094」
Difference from previous tested commit:  code diff
Commit date: 2018-04-05 11:23:26

Merge pull request #3094 from RosettaCommons/roccomoretti/RotamerSetFactory_symmetry Fix RotamerSetFactory How RotamerSetFactory was handling symmetry was sub-optimal. I've removed SymmetricRotamerSetFactory and consolidated logic in RotamerSetFactory in a non-options-system dependent way.

...


< 1 .. 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 .. 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