branch: master 「№58564」
Commited by: Tom Linsky
GitHub commit link: 「e784524718214739」 「№1200」
Difference from previous tested commit:  code diff
Commit date: 2016-03-18 01:39:02

Merge pull request #1200 from RosettaCommons/tlinsky/disulfidize_glypro Add Disulfidize options to allow mutations from GLY, PRO to CYS

...


branch: master 「№58563」
Commited by: Tom Linsky
GitHub commit link: 「2e17b38dff4f4e1c」 「№1202」
Difference from previous tested commit:  code diff
Commit date: 2016-03-17 13:55:32

Merge pull request #1202 from RosettaCommons/tlinsky/constraint_generator Rename NtoC_RCG and RemoveCsts movers to better names

...


branch: master 「№58562」
Commited by: Rebecca Alford
GitHub commit link: 「3bbe46d476e83d2a」 「№1077」
Difference from previous tested commit:  code diff
Commit date: 2016-03-17 10:07:22

Merge pull request #1077 from RosettaCommons/rfalford12/transmembrane_selections Residue Selector for Transmembrane Spanning Regions This pull request includes residue selectors specific for transmembrane proteins. To use them, the pose must be membrane-aware (i.e. `AddMembraneMover` has already been applied to your pose). The following residue selectors are included here: New Residue Selectors in `src/core/select/residue_selector` * **TMSpanSelector**: Select all or a subset of transmembrane spans in the pose * **MembraneResidueSelector**: Select only the membrane residue (the special virtual that stores the membrane coordinate) * **ByMembraneDepth**: Select all residues located at a certain depth in the membrane Each residue selector includes a corresponding unit test in `test/core/select/residue_selector`

...


branch: master 「№58561」
Commited by: Labonte
GitHub commit link: 「2574e150990b65d0」 「№1197」
Difference from previous tested commit:  code diff
Commit date: 2016-03-14 18:29:26

Merge pull request #1197 from RosettaCommons/JWLabonte/sugars/input Carbohydrates: Allowing glycans with sialic acids to be created by sequence This merge will fix a bug preventing sialic acids from being read into Rosetta by IUPAC sequence. This was caused by the fact that the handedness designation is inherent to the 3-letter code for some codes, such as Neu.

...


branch: master 「№58560」
Commited by: Will Sheffler
GitHub commit link: 「19da22e6a3e4648e」
Difference from previous tested commit:  code diff
Commit date: 2016-03-14 14:02:17

moved my inactive pilot apps superficial changes to "ls src/apps/pilot/will" expected

...


branch: master 「№58559」
Commited by: Rocco Moretti
GitHub commit link: 「8593296b7113e18d」 「№1194」
Difference from previous tested commit:  code diff
Commit date: 2016-03-14 13:52:12

Merge pull request #1194 from RosettaCommons/roccomoretti/public_template_features Promote the template_features application to public. This application has been used in a published protocol, and external users are hoping to use it. A new template_features integration test has been added, and will "fail" the first time.

...


branch: master 「№58558」
Commited by: Morgan Nance
GitHub commit link: 「82596e4ff0fd9452」 「№1193」
Difference from previous tested commit:  code diff
Commit date: 2016-03-14 13:29:37

Merge pull request #1193 from RosettaCommons/mlnance/glycam_codes Expanding list of GLYCAM 3-letter codes. This merge will introduce a list of all the 3-letter GLYCAM codes and their corresponding Rosetta name.

...


branch: master 「№58557」
Commited by: Tom Linsky
GitHub commit link: 「6f819a74eba9a779」 「№1181」
Difference from previous tested commit:  code diff
Commit date: 2016-03-13 23:47:34

Merge pull request #1181 from RosettaCommons/tlinsky/constraint_generator Clean up AddConstraintsToCurrentConformation::parse_my_tag()

...


branch: master 「№58556」
Commited by: Vikram K. Mulligan
GitHub commit link: 「e50e360447011073」 「№1191」
Difference from previous tested commit:  code diff
Commit date: 2016-03-13 20:42:27

Merge pull request #1191 from RosettaCommons/revert-1190-revert-1176-vmullig/genkic_tweaks2 Re-merge "Add a low-memory mode option to GenKIC" This reverts RosettaCommons/main#1190 (reverting the reversion, bringing back the original merge). This adds a low-memory option to GenKIC (minus the bug that I had inadvertently created the first time I tried to merge this). Tasks: - [x] Debug integration tests that fail to run. - [x] Fix vector element erasure issue that was causing the problem. - [x] Re-beautify.

...


branch: master 「№58555」
Commited by: Frank DiMaio
GitHub commit link: 「afbea8b332443711」 「№1192」
Difference from previous tested commit:  code diff
Commit date: 2016-03-13 18:59:37

Merge pull request #1192 from RosettaCommons/dimaio/fix_centroid_symm_silent Small bugfix for reading symmetric centroid silent files inadvertantly introduced in mirrorsymm checkin

...


branch: master 「№58554」
Commited by: Andrew Watkins
GitHub commit link: 「8b2b03e5246e1262」 「№1189」
Difference from previous tested commit:  code diff
Commit date: 2016-03-13 13:59:18

Merge pull request #1189 from RosettaCommons/everyday847/use_ss_min_with_bb_grid_sampler I introduced a cppcheck error that I now have fixed. Merging.

...


branch: master 「№58553」
Commited by: Vikram K. Mulligan
GitHub commit link: 「cf67ecafcc9919be」 「№1190」
Difference from previous tested commit:  code diff
Commit date: 2016-03-13 08:56:12

Merge pull request #1190 from RosettaCommons/revert-1176-vmullig/genkic_tweaks2 Revert "Add a low-memory mode option to GenKIC" Whoops! Merged too soon -- there were some integration test failures.

...


branch: master 「№58552」
Commited by: Vikram K. Mulligan
GitHub commit link: 「e1b0646ec5b95ffc」 「№1176」
Difference from previous tested commit:  code diff
Commit date: 2016-03-13 08:53:31

Merge pull request #1176 from RosettaCommons/vmullig/genkic_tweaks2 Add a low-memory mode option to GenKIC I modified GenKIC a while back to store full solution poses rather than just solution DoF vectors. This was to accommodate the pre-selection mover, which could modify the pose in complicated ways that would not be captured by just storing DoFs. However, this can create problems for users who want to do a lot of sampling: memory becomes an issue. This adds an option to restore the old behaviour. Tasks: -- Add the option. -- Modify GeneralizedKIC::add_solution() to store either a vector of solution poses (default mode) or a vector of loop DoFs (low-memory mode). -- Modify final selection to use either the vector of solution poses (default mode) or the vector of loop DoFs (low-memory mode). -- Modify selection logic. -- Add warning if low-memory mode is used with a preselection mover. -- Debug. -- Integration test. -- Unit test. -- Documentation. -- Beauty.

...


branch: master 「№58551」
Commited by: Andrew Watkins
GitHub commit link: 「c7e31c28628af3fc」 「№327」
Difference from previous tested commit:  code diff
Commit date: 2016-03-12 22:16:21

Merge pull request #327 from RosettaCommons/aleaverfay/lbfgs_as_default Unit test failures have been rectified. Integration test failures are expected, seeing as they each use minimization that is now lbfgs.

...


branch: master 「№58550」
Commited by: Vikram K. Mulligan
GitHub commit link: 「f39be5c97b8c3125」 「№1187」
Difference from previous tested commit:  code diff
Commit date: 2016-03-12 21:53:12

Merge pull request #1187 from RosettaCommons/vmullig/add_talaris2014_tests Adding sfxn_fingerprint tests for talaris2014. Our default scorefunction should have a regression test to ensure that it doesn't change beneath us. (Granted, all but one of the terms are shared with talaris2013 -- but still, we should test it.)

...


branch: master 「№58549」
Commited by: Andrew Watkins
GitHub commit link: 「437d2bd4c9107c19」
Difference from previous tested commit:  code diff
Commit date: 2016-03-12 16:23:01

Update RotamerSet.cxxtest.hh Again, fixing unit test build

...


< 1 .. 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 .. 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