branch: master 「№58628」
Commited by: Rocco Moretti
GitHub commit link: 「2c8402493efd5aee」 「№1270」
Difference from previous tested commit:  code diff
Commit date: 2016-04-17 11:53:06

Merge pull request #1270 from RosettaCommons/roccomoretti/appexcepthandling_speedup Attempt to speed up the app_exception_handling itegration test.

...


branch: master 「№58627」
Commited by: Labonte
GitHub commit link: 「b7e897de86c9e849」 「№1245」
Difference from previous tested commit:  code diff
Commit date: 2016-04-15 18:54:36

Merge pull request #1245 from RosettaCommons/JWLabonte/sugars/general PyRosetta/Carbohydrates: Adding sample files/tests for sugars to ship with PyRosetta This merge adds a new directory to PyRosetta and a new unit test for carbohydrate functionality within PyRosetta. It also includes a miscellany of other sugar- and/or PyRosetta-specific tweaks/improvements/corrections. This merge also fixes a bug in the Windows build, because apparently "rad2" is a keyword for Windows! Thanks to @lyskov All unit tests pass. carbohydrates test changes expected.

...


branch: master 「№58626」
Commited by: Yang Hsia
GitHub commit link: 「9546568d2a2517e7」 「№1220」
Difference from previous tested commit:  code diff
Commit date: 2016-04-14 19:48:05

Merge pull request #1220 from RosettaCommons/yhsia/MutateSelf Added option "mutate_self" to MutateResidue mover.

...


branch: master 「№58625」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「954c876de631d23c」 「№1252」
Difference from previous tested commit:  code diff
Commit date: 2016-04-14 14:02:20

Merge pull request #1252 from RosettaCommons/jadolfbr/sugars/glycan_clash_check Adding a pilot app specifically for glycan clashes which quantifies clashes between specified glycan branches and other chains and glycan branch - glycan branch clashes. Does not count clashes for intra glycan branch. Does not echo input files, adds info to output scorefile to allow for MPI runs. Also adding description of Rosetta LJ in AtomType from a description by @aleaverfay in a dev list discussion some years ago (sigma1 vs sigma2) to help future travelers. Clash Definition ============ Atom is clashing if it clashes with ANY other atom Count up clashes (hard and soft) per-residue - Hard: - distance <= LJ1 + LJ2 - Soft: - distance <= (LJ1 + LJ2) * (1 - S). S is between 0 and 1. Here, we use .33 as default. -> Intuitive definition, easily conceptualized, still quantitative Relevant Options: ====== -glycan_branches - Required. Vector of glycan branches. Rosetta Residue numbering or PDB like RosettaScripts -chech_chains - Required. A list of chains to compute chain-based clashes. If not given, will only compute glycan-glycan clashes! -ignore_hydrogens - Should we calculate only heavy-heavy atom clashes? -soft_clash - When we calculate atom-atom distances using LJ distances, clash if distance < (atomI_LJ + atomJ_LJ)*(1 - soft_clash)

...


branch: master 「№58624」
Commited by: Labonte
GitHub commit link: 「93d738b90e0bc37f」 「№1274」
Difference from previous tested commit:  code diff
Commit date: 2016-04-14 11:43:40

Merge pull request #1274 from RosettaCommons/JWLabonte/sugars/CAPRI_redux Carbohydrates: CAPRI Redux Part II missing file; unit tests pass; carbohydrates test changes expected

...


branch: master 「№58623」
Commited by: GIdeon Lapidoth
GitHub commit link: 「b1a514c449e4beda」 「№1248」
Difference from previous tested commit:  code diff
Commit date: 2016-04-14 03:48:26

Merge pull request #1248 from RosettaCommons/fixRestrictToAlignedSegments Added name attribute in RestrictToAlignedSegments TO to fit new XML s…

...


branch: master 「№58622」
Commited by: Vikram K. Mulligan
GitHub commit link: 「b69eccb0e535cacc」 「№1224」
Difference from previous tested commit:  code diff
Commit date: 2016-04-13 18:14:25

Merge pull request #1224 from RosettaCommons/vmullig/binselector Add a ResidueSelector to select residues based on their torsion bin (e.g. ABEGO bin) This should be useful for peptide design, as well as for canonical design in which one might want to design positions in the A bin with helix-favouring residues and positions in the B bin with strand-favouring residues, etc. Tasks: - Create ResidueSelector with Jared's nifty scripts. - Add BinSelectorCreator to ResidueSelectorCreators.hh. - Add ResidueSelector to core.3.src.settings. - Loading of bin definitions. - Write apply() function. - Write parse_my_tag() function. - Unit tests. - Selector XSD. - Integration test. - Add bin_params files for selecting residues in L- or D-proline bins. - Test for this, too. - Option to only select alpha-amino acids. - Documentation. - Beauty. Also: X Fix PhiSelector bug identified by Parisa --> put off to a future pull request. - Fix a little bug in the RESET command in ResidueLevelTask_ (unnecessary debug_asserts that tripped things up in debug mode). - Integration test for PhiSelector, too.

...


branch: master 「№58621」
Commited by: Rocco Moretti
GitHub commit link: 「710c6acaf5b543ab」 「№1268」
Difference from previous tested commit:  code diff
Commit date: 2016-04-13 15:34:30

Merge pull request #1268 from RosettaCommons/roccomoretti/icc_pseudofix Change RotamericSingleResidueDunbrackLibrary to avoid unnecessary intermediate data structure. This should fix the current issue with fa_dun score differences between GCC and ICC. This doesn't, however, necessarily address the underlying issue of why ICC was breaking the code when optimizing. I've (separately) put together a test case to pass along to Intel as a possible bug report.

...


branch: master 「№58620」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「f7017b003254f119」 「№1269」
Difference from previous tested commit:  code diff
Commit date: 2016-04-13 14:41:32

Merge pull request #1269 from RosettaCommons/jadolfbr/antibodies/skip_cis_trans_cluster_matching Jadolfbr/antibodies/skip cis trans cluster matching Adds an option to Rosetta Antibody for North/Dunbrack Clusters: -allow_omega_mismatches_for_north_clusters - Skip first grouping by cis and trans designation for clusters in which a cis/trans designation currently does not exist. This is due to the North clusters being first grouped by the omega cis/trans for each residue, and then clusters within that (for example TTTTTTTCTT ). This directly relates to the sequence profiles used for design. We may eventually make this option default on, but for now it stays off. If a cluster for a CDR cannot be found because of this mismatch, we give a nice warning to users in Red and let them know of this new option. Also add an integration test for identify_cdr_clusters. Thanks to @lyskov for helping with the tracer colors. I added some info to the Tracer header that gives examples on how to do it for most common purposes.

...


branch: master 「№58619」
Commited by: Labonte
GitHub commit link: 「96317f60b41d20b2」 「№1259」
Difference from previous tested commit:  code diff
Commit date: 2016-04-13 00:54:05

Merge pull request #1259 from RosettaCommons/JWLabonte/sugars/branching Post-ChemicalXRW: removing the -read_pdb_link_records option LINK records are now read always. All unit tests pass. Integration test changes expected where options have been changed. Note that the C-terminal_conjugation patch causes a bug in some unit tests, so it has been commented out of patches.txt until the bug has been squashed. In the meantime, it can be included by the option system.

...


branch: master 「№58618」
Commited by: havranek
GitHub commit link: 「90f9d2e4a7b91dc8」 「№1266」
Difference from previous tested commit:  code diff
Commit date: 2016-04-12 23:34:26

Merge pull request #1266 from RosettaCommons/havranek/multipole_sasa Bugfix to VDWTinker, adding analytical, differentiable SASA term.

...


branch: master 「№58617」
Commited by: Xiaotong Zuo
GitHub commit link: 「d586c96c037e0457」 「№1265」
Difference from previous tested commit:  code diff
Commit date: 2016-04-11 22:40:43

Merge pull request #1265 from RosettaCommons/xiaotongzuo/carbohydrate Carbohydrates: Adding new sugar params and patch files

...


branch: master 「№58616」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「0bed02c846ef09fa」 「№1262」
Difference from previous tested commit:  code diff
Commit date: 2016-04-11 19:23:33

Merge pull request #1262 from RosettaCommons/jadolfbr/antibodies/de_loop_design Antibody DE Loop Design Description ======== This PR finally enables Proto CDR4, also known as the DE loop, to sequence design within RosettaAntibodyDesign. L4 and H4 are specified the same way as others within the cdr instruction file. L4 and H4 can also be specified as neighbor CDRs. 'DE' can used as in 'ALL' keyword in the instructions file to set options for both loops. Proto CDR4 is not designed by default. Testing ===== Unit tests have been updated to include and test this new functionality, and an integration test has been added. The current antibody_designer integration test has also been shorted by changing the min type.

...


branch: master 「№58615」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「697d468bc6d6f8eb」 「№1264」
Difference from previous tested commit:  code diff
Commit date: 2016-04-11 15:17:41

Merge pull request #1264 from RosettaCommons/jadolfbr/sugars/glycan_relax_random_start Glycan Relax updates Description ========= This PR makes the default number of Glycan Relax rounds to 50 and adds two ways to start the modeling off, either by randomly sampling every glycan torsion first from the move map, or by randomly sampling each torsion using the sugarBB probabilities for those with which we have sugarBB data. @raemisch Has run preliminary tests on 50k models per experiment and found that if you do not have a real starting glycan conformation, that 50 or 75 rounds and random start both produces greater sampling diversity in the final models (with a lower number of decoys needed) and enriches for low-energy models. Still much benchmarking to do, but this is a start. Options ====== cmd-line: - -glycan_relax_random_start - -glycan_relax_sugar_bb_start RS: - random_start - sugar_bb_start

...


branch: master 「№58614」
Commited by: Tom Linsky
GitHub commit link: 「3e859bfd62e9fd3b」 「№1263」
Difference from previous tested commit:  code diff
Commit date: 2016-04-10 21:05:57

Merge pull request #1263 from RosettaCommons/tlinsky/disulfidize_mutate_to_ala Disulfidize no longer mutates disulfides outside of specified subsets to ALA

...


branch: master 「№58613」
Commited by: Sergey Lyskov
GitHub commit link: 「25879bcba067c46f」 「№1261」
Difference from previous tested commit:  code diff
Commit date: 2016-04-10 00:20:32

Merge pull request #1261 from RosettaCommons/sergey/binder Fixing some PyRosetta compilation and linking errors

...


< 1 .. 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 .. 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