branch: master 「№62024」
Commited by: David P. Nannemann
GitHub commit link: 「24d4a35244f1f4b9」
Difference from previous tested commit:  code diff
Commit date: 2023-07-01 16:44:39

Fixing FavorSequenceProfile to accept reference_name (#6407) * relatively surface-level changes to parse_my_tag and xml_schema to enable functionality already present. * Add reference_name to xml_schema * adding an integration test for FavorSequenceProfile inputs. Removing extra reference_name definition from provide_xml_schema()

...


branch: master 「№62023」
Commited by: David P. Nannemann
GitHub commit link: 「76b79b34c0b944a4」
Difference from previous tested commit:  code diff
Commit date: 2023-07-01 16:42:58
scientific.sb_talaris13_fast_design

changes XSD to describe that this selector is only functional with PROTEIN ResidueTypes. Does not alter code to check for appropriate types. (#6411)

...


branch: master 「№62022」
Commited by: Rituparna Samanta
GitHub commit link: 「010564c584044eac」 「№6412」
Difference from previous tested commit:  code diff
Commit date: 2023-06-30 08:21:16

Merge pull request #6412 from RosettaCommons/Rituparnasamanta/membrane_ensemble_docking_modify_int_test edits on the integration test of a previously closed PR

...


branch: master 「№62021」
Commited by: Rocco Moretti
GitHub commit link: 「be92069389921d63」 「№6352」
Difference from previous tested commit:  code diff
Commit date: 2023-06-12 14:30:06

Merge pull request #6352 from RosettaCommons/roccomoretti/quick_restyping Speed PDB loading by adding a Quick-and-Dirty ResidueTyping option. One of the major contributors to the speed of PDB loading is figuring out the ResidueTypes to use. PR #5659 fixes this somewhat, but it still contributes non-trivially. For most PDBs (e.g. simple all-protein ones), figuring out the ResidueTypes is straightforward. As such, I've implemented an alternative ResidueTyping scheme which can be enabled with the new command line option -fast_restyping (and the corresponding option on StructFileReaderOptions. The way it works is to assume that the three letter code in the PDB is equivalent to the full type name. This should work for the canonical amino acids and -extra_res_fa ligands. To support more inputs, there's some epicycles added. The primary one is a fix-up for terminus patching. There's also some special casing for HIS/HIS_D calling, as well as D-aa/DNA/RNA/VRT. We also use the HETNAM specification if that's helpful, as well as falling back to the chemical components dictionaries for most everything else. -- The HETNAM records go part of the way towards round-tripping (that is, being able to read any Rosetta-outputted PDB properly with the flag on), but are insufficient. Adding full ResidueType name annotations in the output would be necessary for full support, and that's a potential future direction if this flag seems useful for people. This approach is far from complete. In particular, most patching which happens due to the presence of atom names is missed (deliberately so). This is particularly an issue with carbohydrate-containing residues. The option is definitely not recommended for general use, though if you have "simple" PDBs (non-modified proteins, mostly), it should hopefully work for you. Caveat emptor, though. In my test set, the time needed for ResidueType loading (which takes ~33% of the total runtime with current master) is reduced by a factor of 10, and most of the remaining portion of that is actually CCD residue type loading or ResidueTypeFinder time.

...


branch: master 「№62020」
Commited by: Rocco Moretti
GitHub commit link: 「6782069df68f44d7」 「№6343」
Difference from previous tested commit:  code diff
Commit date: 2023-06-12 14:28:26

Merge pull request #6343 from RosettaCommons/roccomoretti/avoid_atomtree_updates Speed up PDB loading by deferring AtomTree updates. Benchmarking indicates that ~10-15% of the time for PDB loading is due to AtomTree::update_sequence_numbering(), which is called for each residue addition. This is completely unnecessary, as we can just call setup_atom_tree() after we're all done adding the residues. To enable this we create a new Conformation function which takes a list of residues to append and does the addition all at once. A quick test shows we do save ~10-15% of the time with this approach, and as far as I can tell we don't lose anything by the rearrangement.

...


branch: master 「№62019」
Commited by: Rocco Moretti
GitHub commit link: 「ede1a5fd3fa9f7bc」 「№5659」
Difference from previous tested commit:  code diff
Commit date: 2023-06-12 14:27:18
scientific.sb_talaris13_fast_design

Merge pull request #5659 from RosettaCommons/roccomoretti/speed_up_scoring Speed up PDB loading by improving the ResidueTypeFinder. Rosetta 3.13 is about 30% slower than Rosetta 3.12 when doing a plain rescoring of a large number of PDBs. I tracked that down to PDB file loading, specifically extra time in the ResidueTypeFinder, in large part due to patching. I was able to rearrange some things to reduce wasted effort and make things more efficient. I my hands, we're now about twice as fast as Rosetta 3.13 when doing plain re-scoring. It still looks like the ResidueTypeFinder is a substantial factor in the runtime (as measured by perf), but not necessarily in an easily fixable way.

...


branch: master 「№62018」
Commited by: Moritz Ertelt
GitHub commit link: 「9fbc647ae7024a22」 「№6313」
Difference from previous tested commit:  code diff
Commit date: 2023-06-12 09:45:27

Merge pull request #6313 from RosettaCommons/moritzertelt/predict_PTM Introduces a new PTMPredictionMetric which can be used for predicting post-translational modifications.

...


branch: master 「№62017」
Commited by: Eric Bell
GitHub commit link: 「5c0229034035d988」 「№6404」
Difference from previous tested commit:  code diff
Commit date: 2023-06-06 11:32:41

Merge pull request #6404 from RosettaCommons/ewbell94/nproTweak Npro assignment bugfix

...


branch: master 「№62016」
Commited by: Rocco Moretti
GitHub commit link: 「c56c2463e22f8ac3」 「№6401」
Difference from previous tested commit:  code diff
Commit date: 2023-05-30 12:52:41

Merge pull request #6401 from RosettaCommons/roccomoretti/fix_transform Fix multi-repeat sampling in Transform mover. An edit to the Transform mover meant that the best_ligand (which is eventually output) was being reset across repeats, rather than being accumulated across all repeats. This meant that having a repeat setting other than 1 (which is thankfully the default) was meaningless, as all the n-1 repeats before the last one didn't affect the output structure. A minor adjustment means that we can continue to accumulate the best_ligand across all the repeats.

...


branch: master 「№62015」
Commited by: Sergey Lyskov
GitHub commit link: 「06649904cf0b80dc」 「№6403」
Difference from previous tested commit:  code diff
Commit date: 2023-05-26 16:56:32

Merge pull request #6403 from RosettaCommons/sergey/binder fixing PyRosetta documentation

...


branch: master 「№62014」
Commited by: Rituparna Samanta
GitHub commit link: 「9b3660a893207250」 「№6197」
Difference from previous tested commit:  code diff
Commit date: 2023-05-26 08:14:51

Merge pull request #6197 from RosettaCommons/Rituparnasamanta/membrane_ensemble_docking Rituparnasamanta/membrane ensemble docking

...


branch: master 「№62013」
Commited by: Claiborne Tydings
GitHub commit link: 「3005410f249eabf5」 「№6020」
Difference from previous tested commit:  code diff
Commit date: 2023-05-22 17:24:47

Merge pull request #6020 from RosettaCommons/peisenhuth/custom_scores_based_clustering Peisenhuth/custom scores based clustering. Adding functionality to take in a file with a list of scores to use during clustering and their corresponding pdb.

...


branch: master 「№62012」
Commited by: Eric Bell
GitHub commit link: 「0fb29f9efbb20190」 「№6395」
Difference from previous tested commit:  code diff
Commit date: 2023-05-17 11:18:39

Merge pull request #6395 from RosettaCommons/ewbell94/fixm2pp Fixes to molfile_to_params_polymer.py

...


branch: master 「№62011」
Commited by: Jack Maguire
GitHub commit link: 「dbbb5449bf9583f5」 「№6399」
Difference from previous tested commit:  code diff
Commit date: 2023-05-16 05:06:33

Merge pull request #6399 from RosettaCommons/JackMaguire/MacM1Clang14Unused Remove Unused Variables (Apple Clang 14.0 Update)

...


branch: master 「№62010」
Commited by: Rocco Moretti
GitHub commit link: 「ca38097f3f10164b」
Difference from previous tested commit:  code diff
Commit date: 2023-05-10 12:37:35

beautifying

...


branch: master 「№62009」
Commited by: Rocco Moretti
GitHub commit link: 「bc73dcc1df28c14a」 「№6390」
Difference from previous tested commit:  code diff
Commit date: 2023-05-10 12:29:39

Merge pull request #6390 from RosettaCommons/roccomoretti/iterative_kinematic_clone Convert kinematics::tree::Atom::clone() to use a non-recursive algorithm The kinematics::tree::Atom::clone() is currently a recursive one, which looks to potentially have issues with stack size limits on certain machines for large proteins. (Well, possibly. That's the best tea-leaf reading we have for some issues we see on Foldit with M1 Macs.) It looks rather straightforward to hold the "todo" list on the heap, and handle the parent/child reassignment non-recursively. This should avoid ultra-deep program stacks, and does not seem to affect program runtime.

...


< 1 2 3 4 5 6 7 8 9 10 11 12 .. 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