branch: master 「№58692」
Commited by: Sergey Lyskov
GitHub commit link: 「4a2331335b9587c0」 「№1340」
Difference from previous tested commit:  code diff
Commit date: 2016-05-17 15:36:32

Merge pull request #1340 from RosettaCommons/sergey/binder Fixing various PyRosetta issues

...


branch: master 「№58691」
Commited by: Tom Linsky
GitHub commit link: 「57afddfdecde1cb3」 「№1343」
Difference from previous tested commit:  code diff
Commit date: 2016-05-17 04:19:59

Merge pull request #1343 from RosettaCommons/tlinsky/sheet_remodel_cst_gen Fix fldsgn::topology bug(s) and wrap SheetConstraintGenerator

...


branch: master 「№58690」
Commited by: Vikram K. Mulligan
GitHub commit link: 「5f0d389d9c0c99da」 「№1327」
Difference from previous tested commit:  code diff
Commit date: 2016-05-16 17:28:22

Merge pull request #1327 from RosettaCommons/vmullig/tweak_fdes Minor tweaks to FastDesign and to the ReadResfile TaskOperation -- Adding support to FastDesign for clearing the pose if it contains D-amino acids. -- Adding an explicit copy constructor to the ReadResfile TaskOperation that clones the ResidueSelector, if one is present. -- Adding explicit set_residue_selector() and residue_selector() functions to the ReadResfile TaskOperation.

...


branch: master 「№58689」
Commited by: Tom Linsky
GitHub commit link: 「15b290e9e51c486b」 「№1333」
Difference from previous tested commit:  code diff
Commit date: 2016-05-16 15:09:29

Merge pull request #1333 from RosettaCommons/tlinsky/cst_score_filter Add ConstraintScoreFilter to score constraints generated by ConstraintGenerators

...


branch: master 「№58688」
Commited by: Kalli Kappel
GitHub commit link: 「44ae9d84d1f11c35」 「№1339」
Difference from previous tested commit:  code diff
Commit date: 2016-05-14 21:46:00

Merge pull request #1339 from RosettaCommons/kkappel/farna_protein_vdw+swa_revival fixing cppcheck test failure that I created in pull request #1332

...


branch: master 「№58687」
Commited by: Kalli Kappel
GitHub commit link: 「54a0a0ad46c1b716」 「№1332」
Difference from previous tested commit:  code diff
Commit date: 2016-05-13 18:06:37

Merge pull request #1332 from RosettaCommons/kkappel/farna_protein_vdw+swa_revival add protein clash score for rna_denovo See comments for expected test failures.

...


branch: master 「№58686」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「e395e6fc2f608de8」 「№1310」
Difference from previous tested commit:  code diff
Commit date: 2016-05-12 16:26:42

Merge pull request #1310 from RosettaCommons/jadolfbr/antibodies/fix_cdr_instruct_caps small bug fix in ab design instructions Fixes an issue identified at the MeilerLab Workshop, where not all instruction lines were being capitalized properly, which lead to crashes for some options. This fixes it the way it should have been from the beginning.

...


branch: master 「№58685」
Commited by: Hahnbeom Park
GitHub commit link: 「2647054bcbd16b88」 「№1330」
Difference from previous tested commit:  code diff
Commit date: 2016-05-10 18:04:38

Merge pull request #1330 from RosettaCommons/hahnbeom/ramaprepro_add_libraries Hahnbeom/ramaprepro add libraries

...


branch: master 「№58684」
Commited by: Tom Linsky
GitHub commit link: 「fb7d47d7addbd1e1」 「№1321」
Difference from previous tested commit:  code diff
Commit date: 2016-05-10 10:08:02

Merge pull request #1321 from RosettaCommons/tlinsky/hb_cst_gen Update HydrogenBondConstriaintGenerator plus more vigorous unit test

...


branch: master 「№58683」
Commited by: Andrew Leaver-Fay
GitHub commit link: 「4c7f81a37663c0eb」 「№1301」
Difference from previous tested commit:  code diff
Commit date: 2016-05-10 08:52:37

Merge pull request #1301 from RosettaCommons/aleaverfay/aleaverfay/standard_job_queen_jobdef_interface JD3 Standard Job Queen XSD Interface This branch completes the XML Schema integration into JD3 by working out an interface between the StandardJobQueen and her subclasses which allows for the specification of the XML Schema of the job-definition file. Per-job options may be specified on the command line, in a <Common> block at the top of a job-definition XML file, or in the <Job> block of a particular set of jobs in the job-definition file. The StandardJobQueen must be told about all of the options that could be specified -- she will hold std::list of OptionKeys -- and she initializes an OptionCollection which contains only the options that she has been told about. When a derived JobQueen wants to initialize a job, she should read from the OptionCollection the StandardJobQueen hands her. If she is calling a function that will read from the command line, then she should instead call a function that reads from an OptionCollection object. For example, the PackerTask now has an initialize_from_option_collection function that takes an OptionCollection const &. If you call the PackerTask's initialize_from_command_line() function, that will pass the global OptionCollection (that is, the basic::options::option global variable) in to the initialize_from_option_collection function. The PackerTask is responsible for listing all of the OptionKeys that are used to read from the input OptionCollection in its "list_read_options" method. Derived JobQueens that want to allow the user to initialize a PackerTask from the command line should call the PackerTask::list_read_options function to get that list of options and then to hand that list to the StandardJobQueen. E.g., in the FixbbJobQueen in src/apps/pilot/andrew/fixbb_jd3, there are these calls: FixbbJobQueen() { utility::options::OptionKeyList opts; core::scoring::list_read_options_in_get_score_function( opts ); core::pack::task::PackerTask::list_options_read( opts ); core::pack::task::operation::ReadResfile::list_options_read( opts ); add_options( opts ); add_option( basic::options::OptionKeys::minimize_sidechains ); add_option( basic::options::OptionKeys::min_pack ); add_option( basic::options::OptionKeys::off_rotamer_pack ); } As a result, the XML Schema for the fixbb_jd3 application lists all of the options that are read by get_score_function, the PackerTasks's initialize_from_command_line / initialize_from_option_collection, and the ReadResfile task operation. The StandardJobQueen asks the derived JobQueen to flesh out the subtags that can be defined in the <Common/> and <Job> tags. To do so, the derived JobQueen will interact with the XMLSchemaDefinition and XMLSchemaComplexTypeGenerator classes. The FixbbJobQueen allows the user to define TaskOperations and ScoreFunctions using the canonical RosettaScripts interface, and then to use those TaskOperations and ScoreFunctions in initializing a PackRotamersMover. The elements of the JobDefinition file are optional, though, so the user can get a vanilla version of fixbb without using the rosetta-scripts like interface. The StandardJobQueen expects jobs to be defined by input Poses -- not all JobQueens will want this, of course, but JD2 expected this, so that's where we start with JD3. Input poses come from PoseInputters -- currently, there is only implemented a PDBPoseInputter. Within a job-definition file, each <Job> element must specify an <Input> subelement which itself will contain a single subelement listing a particular pose inputter -- e.g. a <PDB filename=...> element specifying the PDBPoseInputter. If a PoseInputter specifies more than one Pose, then all of the input poses will be run through the protocol using the same per-job specification. E.g. an eventual SilentPoseInputter could be used to specify all the Poses in a silent file, or only a handful of them listed by their tags. The optional <Output> element can be specified to name the output poses, e.g. you might run 1ubq.pdb through two different protocols specified in the same job-definition file, but where you don't want them to overwrite one another -- so you would name the outputs from the first job block to "first_1ubq_foo_0001.pdb" and the outputs from the second job block to "second_1ubq_bar_0001.pdb"; this would be accomplished with <Output> <PDB filename_pattern="first_$_foo"/> </Output> and <Output> <PDB filename_pattern="second_$_bar"/> </Output> where the $ is replaced by the input-tag for the pose, and the nstruct index is appended to the end of the filename.

...


branch: master 「№58682」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「a30f06f5e408a720」
Difference from previous tested commit:  code diff
Commit date: 2016-05-09 21:21:44

reverting my last commit. I thought I was in a branch.

...


branch: master 「№58681」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「fc0e5a213305907a」
Difference from previous tested commit:  code diff
Commit date: 2016-05-09 21:20:17

add DihedralConstraintGenerator class using Toms code template.

...


branch: master 「№58680」
Commited by: Tom Linsky
GitHub commit link: 「a2a641bc30be678f」 「№1323」
Difference from previous tested commit:  code diff
Commit date: 2016-05-09 13:55:56

Merge pull request #1323 from RosettaCommons/tlinsky/random_residue_selector_rg Replace instance of std::random_shuffle with Rosetta's random_permutation

...


branch: master 「№58679」
Commited by: Jared Adolf-Bryfogle
GitHub commit link: 「38fb1e6fee3d3ccf」
Difference from previous tested commit:  code diff
Commit date: 2016-05-09 02:22:04

Update README.md

...


branch: master 「№58678」
Commited by: Vikram K. Mulligan
GitHub commit link: 「7e3aa18d15737ae0」 「№1326」
Difference from previous tested commit:  code diff
Commit date: 2016-05-09 01:13:17

Merge pull request #1326 from RosettaCommons/vmullig/write_template Adding option to rosetta_scripts to print a template script I often find myself going to the help wiki to find the template RosettaScript whenever I sit down to write a new script. If I'm working on a laptop without an Internet connection (e.g. on a train or a plane), this is a particular pain in the neck. This pull request adds a flag, -print_template_script, to the rosetta_scripts application that lets the application print out a blank, template RosettaScripts script and then exit. This should be handy for quick reference when sitting down to write a new script. Tasks: -- Add the feature. -- Documentation.

...


branch: master 「№58677」
Commited by: Vikram K. Mulligan
GitHub commit link: 「b76784e4dfab9592」 「№1325」
Difference from previous tested commit:  code diff
Commit date: 2016-05-09 01:08:45

Merge pull request #1325 from RosettaCommons/vmullig/fix_rama_power Tweaking recent implementation of power scaling of rama values greater than zero -- Removes repeated call to options system whenever rama scoring occurs. -- Makes the option a Real instead of an integer (since fractional power values might be useful). -- Adds a unit test for the option.

...


< 1 .. 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 .. 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