further fix of bug in jump sampling for RNA denovo. output of rna_denovo filters when they are note passed. Added -extra_minimize_chi_res option to allow flexibility of ligand in RNA puzzle.
notify author
notify list [rosetta-logs@googlegroups.com]
fixing bug in rna_denovo where chain_connections jumps were not sampled if connected residues were in rigid segments. big problem in rnapuzzle12 modeling!
notify author
notify list [rosetta-logs@googlegroups.com]
Fixing a bug that can cause full atom only Docking to ignore constraints.
Two integration tests change as a result of caching the constraints to
the pose before converting it to the full atom representation. These
tests are:
1) docking_distance_constraints
2) docking_site_constraints
The scores and final coordinates of the decoys that are produced by
these tests remain unchanged.
I observed changes in two matcher tests that resulted from swapping HIS
with HIS_D. This is a weird things that seems to occur sporadically (at
least on my system), and it is unlikely that these tests will change on
the test server. I wonder if there is anything we can do about that
because it's not great to ignore changing integration tests.
Big thanks to BK for discovering and reporting this bug.
notify author
notify list [rosetta-logs@googlegroups.com]
Created TrajectoryReportToDB to enable use of the features reporter system for trajectory output
TrajectoryReportToDB is a child Mover of ReportToDB, meaning most of its functionality
is the same as ReportToDB (e.g. any existing features reporter can be used with it).
The new behavior is that the class counts how many times each pose (identified by JD2 output tag)
has been "applied" in the features reporter system. A new table,
"trajectory_structures_steps", keeps track of which step iteration a particular struct_id
represents. Struct_ids can be grouped from the same output by using the existing tag field.
The mover has also a stride option to control how often features are reported.
The mover works in Rosetta Scripts, and could be particular useful as part of a parsed protocol
that is called multiple times, as in the generic monte carlo mover.
In the process of creating this class, I refactored some of the other database and features code,
but behavior should be unchanged.
I also removed SZ_MAX from core/types.hh, as it was causing an unused variable
warning/error on my system, preventing compilation.
This commit merges branch kylebarlow/general_dev into master
Expected test changes:
features: test now uses new reporter
features_database_schema: new mapping table
ligand_dock_script: numerical instability
notify author
notify list [rosetta-logs@googlegroups.com]
Fix performance benchmark (ContextDependentGeometricSolEnergy)
ContextDependentGeometricSolEnergy was using the HBondSet but not generating
it. This results in issues when run in a Scorefunction with only those
energy terms and no HBonding terms. Add cautious generation of the HBondSet in
the setup function (along the lines of the HBond terms).
No test changes expected.
notify author
notify list [rosetta-logs@googlegroups.com]
another merge from my branch rhiju/dms_score, which introduces rna_chem_map_lores score term. This allows chemical mapping data to guide fragment assembly, and is being tested in the RNA puzzles blind trials. Integration tests show changes in KIC_refine, SnugDock, antibody_H3, and a few other tests that look like floating point deviations. This has happened to me before when I update ScoreType.hh -- I will pay attention to whether there is an effect on the test server...
notify author
notify list [rosetta-logs@googlegroups.com]
Renaming core::scoring::getScoreFunction to core::scoring::get_score_function
This function violates our naming conventions, so I'm fixing it along with
getScoreFunctionLegacy.
Also fixing a bug in core/membrane/io/SpanFileIO.cc which was producing
unit test failures.
notify author
notify list [rosetta-logs@googlegroups.com]