branch: master 「№58212」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「d0a0df5b9c58bf06」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 20:23:03

Remove protocols_f.5 from apps.test.settings. This will restore the mac unit tests to go with the removal of the library in Pull request #810.

...


branch: master 「№58211」
Commited by: Michael Pacella
GitHub commit link: 「e31164f231ca23bb」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 17:27:51

modifying the xcode project build_util.py to work with the latest master. Pull request #810 removed protocols_f.5 from all src.setting files (it appears to have been an empty library anyway), in order for the xcode make_project tool to work protocols_f.5 must be removed from the KNOWN_PROJECTS dictionary

...


branch: master 「№58210」
Commited by: davidekim
GitHub commit link: 「608068d0537e7a63」 「№845」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 13:51:41

Merge pull request #845 from RosettaCommons/davidekim/minimal_fragments Added support for multiple Vall database files when generating

...


branch: master 「№58209」
Commited by: Orly Marcu
GitHub commit link: 「af43864e0fc28c08」 「№839」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 13:05:08

Merge pull request #839 from RosettaCommons/kwikwag/peptiderive-talaris Kwikwag/peptiderive talaris

...


branch: master 「№58208」
Commited by: Rocco Moretti
GitHub commit link: 「47d25c40cab5d2c6」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 12:26:40

Fix inverse_rotamer_remodel integration test. If you put a tracer output statement that prints object addresses in the code, yeah, that's going to cause integration tests to fail.

...


branch: master 「№58207」
Commited by: Rhiju Das
GitHub commit link: 「501b202404d177da」 「№756」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 11:53:20

Merge pull request #756 from RosettaCommons/rhiju/remove_patch_selectors_from_daslab_code + Remove patch selectors from daslab code + For residue_type_set, name3_map_DO_NOT_USE and aa_map_DO_NOT_USE calls are still not suggested as best practices, but now run over a set of about 30 patches that were on by default in 2015 rosetta -- this allows unit tests and a few integration tests to not time out. Any new patches (e.g., upcoming metapatches) are not covered. + got rid of some legacy code (e.g., for setting up packer jobs for residue types with custom_variants in ResidueLevelTask_) since I could expand ResidueTypeSet to handle them. Only tests that change are integration -- inverse_rotamer_remodel remains broken; and ligand_motif_design generates fewer FullatomCustomPairDistanceEnergy AtomPairFunc lists, but that does not affect test results. The linux integration_release_debug_no_symbols show some change, but I think that's due to clang versions -- will monitor carefully.

...


branch: master 「№58206」
Commited by: Oriel Goldstein
GitHub commit link: 「0f58a6a16e769f6d」
Difference from previous tested commit:  code diff
Commit date: 2015-10-05 09:10:01

Update Doxyfile.01

...


branch: master 「№58205」
Commited by: Rocco Moretti
GitHub commit link: 「19257b04c137a658」 「№842」
Difference from previous tested commit:  code diff
Commit date: 2015-10-04 16:01:43

Merge pull request #842 from RosettaCommons/roccomoretti/inv_rot_remod Attempt to fix the inverse_rotamer_remodel integration test Recent changes mean that the inverse_rotamer_remodel integration test has gone from crashing silently to failing with a recognizable error. This provided an opportunity to start picking things apart. The current cause of failure looks to be an issue with the ReadResfileAndObeyLengthEvents taskoperation. The ReadResfileAndObeyLengthEvents taskop collects a number of Conformation LengthEvents and combines them to get a mapping of before to after residue numbers. The issue here is that the mapping code was pulling the total size from the stored Conformation (raw) pointer in the LengthEvents. This has two problems. The first is that it gets the length from the final conformation, rather than the length at the time the LengthEvent occured. The second is that the raw conformation pointer might have been invalidated, due to copying, etc. resulting in an invalid read. This pull request fixes that by storing the current value of the Conformation length when the LengthEvent is created, and then using that value (rather than the value from the Conformation pointer) when making the mapping. It does not address the more general issue of long-term storage of a raw Conformation pointer in Event objects, where the underlying Conformation might be invalidated in the meantime.

...


branch: master 「№58204」
Commited by: Rhiju Das
GitHub commit link: 「ddbdc3c921c8f15a」 「№803」
Difference from previous tested commit:  code diff
Commit date: 2015-10-03 00:35:49

Merge pull request #803 from RosettaCommons/rhiju/remove_placeholder_residue_types *Removing last exponential blow up in ResidueTypeSet* Reduces setup time for FA_STANDARD residue type set from 1.1 seconds to 0.40 seconds on my machine. Allows activation of all available patches (e.g., ones currently under command-line control; see https://github.com/RosettaCommons/main/pull/756) and new 'metapatches' (see https://github.com/RosettaCommons/main/pull/844) without blowup of setup time & memory. All Rosetta modes now compatible with refactored ResidueTypeSet and accessor function, including adducts; and lots of code cleanup. Only tests that change are integration tests: + _fiber_diffraction_fad_, _fold_and_dock_ (cosmetic, tracer debug now registers instantiation of D-AA residue types) + _inverse_rotamer_remodel_ (broken before at SequenceMapping) + _mm_params_ now loops through D-AA residue types, though does not actually check mm parameters for those-- could do so. + _dna_interface_design_ changes at late stage; tracked down to a difference in a random number in a SmallMin move -- all the 'physics' of the simulation, including number of adduct rotamers used in design, appears preserved up to that point and later -- may be a sign of a memory leak. + _number_of_residuetypes_ now does not report on total number of residue types, which is no longer computed, but on the components of ResidueTypeSet, e.g.: ``` apps.pilot.doug.number_of_residuetypes: The FA_STANDARD ResidueTypeSet contains 364 base ResidueTypes, 71 Patches, and 0 custom ResidueTypes ``` instead of ``` apps.pilot.doug.number_of_residuetypes: The FA_STANDARD ResidueTypeSet contains 42632 ResidueTypes ```

...


branch: master 「№58203」
Commited by: Rocco Moretti
GitHub commit link: 「50a40789725c36ea」 「№843」
Difference from previous tested commit:  code diff
Commit date: 2015-09-30 18:43:02

Merge pull request #843 from RosettaCommons/roccomoretti/mm_params_fix Attempt to fix issues with the mm_params integration test. Use Rhiju's ResidueType sorter to fix the order of iteration in mm_params.cc

...


branch: master 「№58202」
Commited by: Tom Linsky
GitHub commit link: 「c09d7d950c718e8c」 「№810」
Difference from previous tested commit:  code diff
Commit date: 2015-09-30 16:00:46

Merge pull request #810 from RosettaCommons/tlinsky/sheettopo Update SheetConstraintsRCG and SecondaryStructureFilter to work with …

...


branch: master 「№58201」
Commited by: Tom Linsky
GitHub commit link: 「b1eb14003265987a」 「№841」
Difference from previous tested commit:  code diff
Commit date: 2015-09-30 11:24:36

Merge pull request #841 from RosettaCommons/tlinsky/matcher_multiplepose Matcher now appends existing remarks to new matcher remarks

...


branch: master 「№58200」
Commited by: Vikram K. Mulligan
GitHub commit link: 「876fac6a3fa16f99」 「№834」
Difference from previous tested commit:  code diff
Commit date: 2015-09-29 17:40:52

Merge pull request #834 from RosettaCommons/vmullig/disulfidize_symmetry Allow the Disulfidize movers to add disulfides across a symmetric interface. Tasks: - Add declare_chemical_bond() function to SymmetricConformation class. - Add ScoreFunctionOP to DisulfidizeMover class. - Edit DisulfidizeMover's parse_my_tag to let user set scorefunction. - Get global scorefunction if user specifies no scorefunction. - Check symmetric iff symmetric pose. - Get core::utility::rebuild_disulfide() to work with symmetric poses. - Use symmetric packer. - Use symmetric minimizer. - Fix issue in case where the symmetric copy is the same residue as the original. - Fix additional strange issue causing rare failure. - Seems to be caused by independently finding multiple disulfides at equivalent positions. - Beauty. - Add integration test. - Update documentation. - Set scorefunction. - Use with symmetric pose.

...


branch: master 「№58199」
Commited by: Tom Linsky
GitHub commit link: 「50f2cf33691711f9」
Difference from previous tested commit:  code diff
Commit date: 2015-09-29 17:13:29

Fix option naming in parse_my_tag

...


branch: master 「№58198」
Commited by: Tom Linsky
GitHub commit link: 「9d3b69a7a8ab0e97」 「№825」
Difference from previous tested commit:  code diff
Commit date: 2015-09-29 17:02:20

Merge pull request #825 from RosettaCommons/tlinsky/pdbinfo_selector Create ResiduePDBInfoHasLabel residue selector

...


branch: master 「№58197」
Commited by: Tom Linsky
GitHub commit link: 「7df645a61ee84e4a」 「№812」
Difference from previous tested commit:  code diff
Commit date: 2015-09-29 16:55:23

Merge pull request #812 from RosettaCommons/tlinsky/sequence_selector Initial commit of PrimarySequenceNeighborhoodSelector

...


< 1 .. 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 .. 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