branch: master 「№59589」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「59a652f08f663811」 「№2384」
Difference from previous tested commit:  code diff
Commit date: 2017-07-14 08:27:19

Merge pull request #2384 from RosettaCommons/aleaverfay/jd3_multiple_results_per_job JD3: Jobs produce multiple of JobSummary/JobResult pairs Imagine that a job produces 1000 poses because it's efficient for it to produce many at once. What then? Should it put all 1000 poses into a single JobResult? When the JobQueen selects Pose 884 to advance to the next round of the protocol, will all 1000 Poses be sent as a single serialized JobResult to the remote node, so it can extract all 1000, and then take the single Pose it cares about? That seems like a bad idea! JD3's initial design didn't plan for this. The new system I'm working on here instead has a Job produce a list of outputs allowing the JobDistributor to serialize and store them all separately. Then when result 884 needs to get sent to the remote node as input to the next job, only a single Pose has to be transferred. Also, the other 999 poses can be deallocated. Job's ```run()``` method now returns a ```CompletedJobResult``` as before, but this previous typedef is now a struct containing a vector1 of JobSummary/JobResult pairs in addition to a JobStatus. If a job produces more than one Pose, each Pose could (should) be put into separate PoseJobResult and entered into a separate entry in the CompletedJobOutput array. The JobQueen's interface now changes: * ```note_job_completed(...)``` now informs the JQ of the number of job results produced * ```completed_job_summary( ... )``` now includes the index of the JobSummary (1..nresults for that job) * ```completed_job_result( ... )``` similarly includes the index of the JobResult * ```jobs_that_should_be_output``` now returns a list of Size/Size pairs * ```job_results_that_should_be_discarded``` also returns a list of Size/Size pairs The PoseOutputters now handle extra outputs the same way that JD2 handles multiple Pose outputs for a single job -- i.e. the names given to the extra poses written as .pdbs or silent structures append an extra _0001, _0002 after the job_id; e.g. job 4311 run on PDB 1l2y.pdb which produces < 9999 output Poses would write to 1l2y_4311_0001.pdb, 1l2y_4311_0002.pdb, etc. There's really no reason for the integration test changes I'm seeing on the server, and I'm suspicious that it's just a hiccup related to Frank's merge of PR #2371 which fixed several bugs in symmetric minimization.

...


branch: master 「№59588」
Commited by: Andrew Watkins
GitHub commit link: 「80f93bd0a1c30f6b」 「№2393」
Difference from previous tested commit:  code diff
Commit date: 2017-07-13 15:26:41

Merge pull request #2393 from RosettaCommons/everyday847/stepwise_integration_test_pre_fix Pre-emptive alteration to 'stepwise' silent file tags (just in integration tests) The 14 integration test changes to stepwise integration tests are EXPECTED; they reflect a nomenclature change so it will be easier to detect REAL changes later.

...


branch: master 「№59587」
Commited by: TJ Brunette
GitHub commit link: 「46dab53953a8e5c8」 「№2388」
Difference from previous tested commit:  code diff
Commit date: 2017-07-13 13:27:13

Merge pull request #2388 from RosettaCommons/tjbrunette/near_native_fast_fix fix to closure_type flag in NearNativeLoopCloser

...


branch: master 「№59586」
Commited by: Andrew Watkins
GitHub commit link: 「9ae4e0d3fa705e12」 「№2391」
Difference from previous tested commit:  code diff
Commit date: 2017-07-13 12:02:05

Merge pull request #2391 from RosettaCommons/everyday847/my_app A fragment assembly UI app

...


branch: master 「№59585」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「c6d0f5696c3ef819」 「№2387」
Difference from previous tested commit:  code diff
Commit date: 2017-07-12 13:00:31

Merge pull request #2387 from RosettaCommons/jadolfbr/code_template_namespaces Fix Code Template Namespacing This addresses #2386 - Add full pathing or typedefs to function variables to make the templates independent of final namespace as they should be.

...


branch: master 「№59584」
Commited by: Frank DiMaio
GitHub commit link: 「2e801d80f3974c79」 「№2371」
Difference from previous tested commit:  code diff
Commit date: 2017-07-10 13:13:20

Merge pull request #2371 from RosettaCommons/aleaverfay/cart_min_deriv_unit_tests This checkin fixes two bugs with Cartesian minimization of symmetric poses. One was related to the recent change of symmetric atom tree minimizer to better support lattice symmetries. This change modified the edge weights on minimization graph, however CartesianMin still needed the old weights. This checkin changes the logic so the weights are modified as needed in SymAtomTree minimize, while keeping the minimization graph as it was before this change. This checkin also fixes a longstanding bug in symmetric CartesianMinimization when only part of the structure only was allowed to move. In these cases, the domain map was built assuming an asymmetric pose, leading to not all energy edges getting calculated during cartesian minimization. This has been fixed (and @aleaverfay has added an integration test ensuring this works). Thanks Andrew for finding these issues. Integration changes expected in all tests that minimize with symmetry.

...


branch: master 「№59583」
Commited by: Sergey Lyskov
GitHub commit link: 「e78c594d33dc5d23」 「№2385」
Difference from previous tested commit:  code diff
Commit date: 2017-07-09 16:00:34

Merge pull request #2385 from RosettaCommons/sergey/ui Updating UI project

...


branch: master 「№59582」
Commited by: Labonte
GitHub commit link: 「4c640b3c8c3f8f04」 「№2349」
Difference from previous tested commit:  code diff
Commit date: 2017-07-08 20:37:20

Merge pull request #2349 from RosettaCommons/JWLabonte/lipids/database This merge will add a few more lipid building blocks to the database for (an attempt at) explicit modeling of lipids. An integration test has also been added that demonstrates loading in an explicit lipid monolayer of 99 2-oleoyl-1-palmitoylphosphatidylcholine units, scoring, and minimizing. Please note that this integration test demonstrates a framework; it in no way implies any sort of scientific validity to the output structures. There is currently no reliable protocol for explicitly modeling lipid membranes in Rosetta. All unit tests pass. Several integration tests show new tracer output.

...


branch: master 「№59581」
Commited by: Labonte
GitHub commit link: 「946605bf6d7697b5」 「№2382」
Difference from previous tested commit:  code diff
Commit date: 2017-07-06 19:36:36

Merge pull request #2382 from RosettaCommons/JWLabonte/sugars/database Carbohydrates: Another Xylose All tests pass. Expected integration change reporting +1 ResidueType.

...


branch: master 「№59580」
Commited by: Andrew Watkins
GitHub commit link: 「653c91abf625d300」 「№2379」
Difference from previous tested commit:  code diff
Commit date: 2017-07-06 01:22:14

Merge pull request #2379 from RosettaCommons/everyday847/GAI_mods Some modifications to be able to model guanidinium ions during stepwise

...


branch: master 「№59579」
Commited by: Andrew Watkins
GitHub commit link: 「6976f9214ba08b86」 「№2380」
Difference from previous tested commit:  code diff
Commit date: 2017-07-05 18:10:45

Merge pull request #2380 from RosettaCommons/everyday847/helix_dumper Dump helices created through RNA_DeNovoSetup

...


branch: master 「№59578」
Commited by: Andy Watkins
GitHub commit link: 「915493dc9687b61c」
Difference from previous tested commit:  code diff
Commit date: 2017-07-05 15:39:02

Merging everyday847/itest_fix (so that my previous PR's itest will run better) and beautifying master.

...


branch: master 「№59577」
Commited by: Sergey Lyskov
GitHub commit link: 「0ce57b45c47f8f4d」 「№2345」
Difference from previous tested commit:  code diff
Commit date: 2017-07-05 15:12:52

Merge pull request #2345 from RosettaCommons/fordas/pyrosetta_setuptools_bootstrap Update pyrosetta distro to bootstrap minimum setuptools.

...


branch: master 「№59576」
Commited by: Brandon Frenz
GitHub commit link: 「7574ee949dc8f6aa」 「№2381」
Difference from previous tested commit:  code diff
Commit date: 2017-07-05 14:17:07

Merge pull request #2381 from RosettaCommons/bfrenz/RosettaES_scripts_fix fixed flags in runES.sh

...


branch: master 「№59575」
Commited by: Andrew Watkins
GitHub commit link: 「9df6b1896e697b50」 「№2378」
Difference from previous tested commit:  code diff
Commit date: 2017-07-05 13:47:26

Merge pull request #2378 from RosettaCommons/everyday847/5prime_cap Model mRNA in rna_denovo

Rocco Moretti 7 years
The farfar_mrna integration test added with this commit looks to be in permanent (magenta) failure with the release_debug version, though not the regular release (an always illuminative "variable seqpos is out of range" error).
Rocco Moretti 7 years
Looks like it may be related to an uninitialized variable issue: http://benchmark.graylab.jhu.edu/sub_test/71848545
Andy Watkins 7 years
Yes! Every day or so I have checked your recent PR to link to the valgrind_detailed you were running. I will fix this before I leave.
...


branch: master 「№59574」
Commited by: Rhiju Das
GitHub commit link: 「655f17710a5c33d1」 「№2376」
Difference from previous tested commit:  code diff
Commit date: 2017-07-05 11:22:04

Merge pull request #2376 from RosettaCommons/rhiju/fix_ref2015_for_stepwise Hot fix for ref2015 in stepwise RNA/protein

...


< 1 .. 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 .. 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