branch: master 「№57028」
Commited by: Rocco Moretti
GitHub commit link: 「e0645664c97ad5c3」
Difference from previous tested commit:  code diff
Commit date: 2014-07-08 15:31:24

Fix atom name bug in alternate ResidueType::add_atom() This does not affect the standard add_atom() function, so no change expected. New unit test function added.

...


branch: master 「№57027」
Commited by: Kyle Barlow
GitHub commit link: 「f448e8063abb5661」
Difference from previous tested commit:  code diff
Commit date: 2014-07-08 13:57:48

Changed JD2 behavior to fail and exit when a bad RosettaScript is parsed and fixed 2 integration tests that were not running The affected tests that were failing silently are: write_mol_file and features If you care about these tests, you might want to make sure they work properly now. If multiple inputs were passed, the prior behavior was to iterate over all of these inputs, even if a bad RosettaScript was used that wouldn't work on any of them. I added a new catch block in JD2 to specifically catch RosettaScripts option exceptions (already existing) and reraise this exception, instead of trying to continue as before. The other problem that this fixes is if an integration test used a bad RosettaScript, perhaps because the script's parse_my_tag function changed, this would only be picked up by the initial test server run, and would fail silently after that. The script parsing error wasn't picked up because JD2 exited with a "0" exit code. This commit merges branch 'kylebarlow/bugs' into master Expected test changes: write_mol_file (wasn't running before, should at least run now) features (wasn't running before, should at least run now)

...


branch: master 「№57026」
Commited by: P. Douglas Renfrew
GitHub commit link: 「5925a1c46e76c18c」
Difference from previous tested commit:  code diff
Commit date: 2014-07-08 11:50:10

Cleaning up random *.orig files.

...


branch: master 「№57025」
Commited by: Rhiju Das
GitHub commit link: 「f6ab99abe73b42f8」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 17:49:43

merge from master -- allows modeling of cyclic-diAMP in RNA puzzle 2 by FARFAR, using CHAIN_CONNECTION format that allows non-contiguous sets of residues to be input.

...


branch: master 「№57024」
Commited by: Andrew Watkins
GitHub commit link: 「825ac9d35451c1cc」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 16:25:03

parameterize strength of stub constraint for matcher The scaffold_matcher app relies on backbone stub constraints. Previously, this was hard-coded to the relatively arbitrary value of 5.0. Now it's a command-line parameter (stub_constraint_strength).

...


branch: master 「№57023」
Commited by: Kevin Houlihan
GitHub commit link: 「b08b588a9048f64a」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 13:25:26

Merge branch 'master' of github.com:RosettaCommons/main add clang version to build system, uncomment line in buns

...


branch: master 「№57022」
Commited by: Daniel Adriano Silva
GitHub commit link: 「3e1549ae19e767e9」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 12:44:36

Merge branch 'master' to commit fixes to linux debug build Fixes linux debug build

...


branch: master 「№57021」
Commited by: Rhiju Das
GitHub commit link: 「0341dbf239582a34」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 10:28:33

updates to RNA_DataInfo fixes -- thanks to Daniel for prior fixes to build.

...


branch: master 「№57020」
Commited by: Christoffer Norn
GitHub commit link: 「d4e65eebc6029677」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 10:26:08

Merge branch 'master' of github.com:RosettaCommons/main

...


branch: master 「№57019」
Commited by: Daniel Adriano Silva
GitHub commit link: 「5bec2bce046be7b5」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 10:05:59

Fixes (some of) rhiju's code that break rosetta's linux gcc build. 1. Place placeholders for your unused variables: src/core/scoring/rna/data/RNA_ChemicalMappingEnergy.cc 2.(40) RNA_DataInfo::RNA_DataInfo( RNA_DataInfo const & src ) : utility::pointer::ReferenceCount(src) { . . . }

...


branch: master 「№57018」
Commited by: Daniel Adriano Silva
GitHub commit link: 「3ff6ad2e25cbf138」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 01:23:10

One more file to FIx pyrosetta compilation Missing def MACRO in CoordinateArray_RMSD_FlatLookup.hh

...


branch: master 「№57017」
Commited by: Daniel Adriano Silva
GitHub commit link: 「a97161b9f81e7c76」
Difference from previous tested commit:  code diff
Commit date: 2014-07-07 01:01:05

Merge branch 'master' of github.com:RosettaCommons/main Bugfixes to FragmentLookupFilter and QCP that break pyrosetta compilation

...


branch: master 「№57016」
Commited by: Rhiju Das
GitHub commit link: 「1725813a2ad0b1d8」
Difference from previous tested commit:  code diff
Commit date: 2014-07-06 22:34:59

Merge from rhiju/dms_score bracnh: includes new score term for RNA chemical mapping (for now, just dimethyl sulfate reactivities). In integration tests, cosmetic changes due to one additional residue type, and change in score type names (in jd2_database tests). I am also seeing changes to match_1n9l & cstfile_to_theozyme, which look like late floating point deviations on my Mac, but I will monitor output from test server.

...


branch: master 「№57015」
Commited by: Brian Koepnick
GitHub commit link: 「f5b118c1833faa9b」
Difference from previous tested commit:  code diff
Commit date: 2014-07-06 17:44:42

Added an overloaded operator= in SymmetricConformation with an 'other' of type Conformation. This fixes a bug where copying a symmetric pose used Conformation's operator= instead of SymmetricConformation's, and failed to copy its symmetry type.

...


branch: master 「№57014」
Commited by: gideonla
GitHub commit link: 「751edf53bce90d75」
Difference from previous tested commit:  code diff
Commit date: 2014-07-06 04:39:45

Merge branch 'master' of github.com:RosettaCommons/main

...


branch: master 「№57013」
Commited by: Luki Goldschmidt
GitHub commit link: 「4711d28aea259e94」
Difference from previous tested commit:  code diff
Commit date: 2014-07-05 23:57:24

Adding exception handling to ParsedProtocol to address a segmentation fault bug triggered when a mover in the protocol throws an exception. Cosmetic tracer output changes for clarity. Unit Tests: All Pass

...


< 1 .. 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 .. 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