branch: master 「№61416」
Commited by: Daniel Paoliello
GitHub commit link: 「ca4e36ec389cf203」
Difference from previous tested commit:  code diff
Commit date: 2020-09-06 13:27:27

Use WinSock2 for `PyMOLMover` (#4958) Issue Details: `PyMOLMover` uses a number of network APIs that either weren't being included for the Windows build, or were included via legacy winsock. Fix Details: Include the WinSock2 headers where these APIs are required.

...


branch: master 「№61415」
Commited by: Daniel Paoliello
GitHub commit link: 「77f2f6a7d2dbf641」
Difference from previous tested commit:  code diff
Commit date: 2020-09-04 17:41:15

Use `utility::file` in `FragmentScoreFilter` instead of OS-specific APIs (#4956) * Add Win32 implementation of directory manipulation in `FragmentScoreFilter` Issue Details: `FragmentScoreFilter` uses Linux/Mac OS specific headers/APIs to change the current directory and create a new directory. Fix Details: When building for Windows, include the relevant Win32 headers and use the Win32 APIs. * Use utility::file in FragmentScoreFilter instead of OS-specific APIs * beautifying

...


branch: master 「№61414」
Commited by: Vikram K. Mulligan
GitHub commit link: 「e3f2a694e904afc8」 「№4941」
Difference from previous tested commit:  code diff
Commit date: 2020-09-03 21:32:28

Merge pull request #4941 from RosettaCommons/vmullig/tag_getOption_for_bool_strings Try to address cases in which a developer has provided a default value for a boolean as a string in parse_my_tag(). This code compiles correctly, but doesn't do what one expects: ```c++ bool myoption = tag->getOption<bool>( "myoption", "false" ); ``` The developer _expects_ that if the user doesn't specify the option "myoption", it will default to `false`. Unfortunately, the string literal `"false"` is sent to the `Tag::getOption<bool>( std::string const &, bool const )` function as a `char*`, which can be cast automatically to a bool. Any non-`nullptr` value gets interpreted as `true`, however, so the default is set to `true`. The general solution (since even if we fix all the instances currently in the codebase, this will creep back in) is to implement `Tag::getOption<bool>( std::string const &, char const * )`, which parses and interprets the default string and converts it to a `bool`. This PR does this. Thank you to @danielzaidman for bringing this issue to light!

...


branch: master 「№61413」
Commited by: danielzaidman
GitHub commit link: 「b63268d858e35ed5」 「№4937」
Difference from previous tested commit:  code diff
Commit date: 2020-09-03 11:41:07

Merge pull request #4937 from RosettaCommons/danielzaidman/AlignChain_BugFix Fix a bug in AlignChainMover

...


branch: master 「№61412」
Commited by: Daniel Paoliello
GitHub commit link: 「9a9ece8d82a2137e」 「№4957」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 16:13:24

Merge pull request #4957 from RosettaCommons/dpaoliello/UseSSizeTMacro Use `platform::SSize` typedef

...


branch: master 「№61411」
Commited by: Daniel Paoliello
GitHub commit link: 「27a914c50d04d05d」 「№4949」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 16:02:21

Merge pull request #4949 from RosettaCommons/dpaoliello/AddIncludes Add includes needed to use STL Containers (e.g., vector) when building with MSVC

...


branch: master 「№61410」
Commited by: Daniel Paoliello
GitHub commit link: 「76495305b3594641」 「№4952」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 16:01:20

Merge pull request #4952 from RosettaCommons/dpaoliello/RemovePStream Remove uses of the POSIX-only `pstream` header

...


branch: master 「№61409」
Commited by: Daniel Paoliello
GitHub commit link: 「bb46fb1208e96955」 「№4953」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 15:49:49

Merge pull request #4953 from RosettaCommons/dpaoliello/FixRandom Fix the Windows build for `init_random_generator.cc`

...


branch: master 「№61408」
Commited by: Daniel Paoliello
GitHub commit link: 「0e2d8299d0c32423」 「№4954」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 15:38:38

Merge pull request #4954 from RosettaCommons/dpaoliello/MathDefines Define `_USE_MATH_DEFINES` before `cmath` is indirectly included.

...


branch: master 「№61407」
Commited by: Daniel Paoliello
GitHub commit link: 「258b2c8b99ef37f8」 「№4959」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 15:27:25

Merge pull request #4959 from RosettaCommons/dpaoliello/UnDefDelete Undef `DELETE` to avoid the Win32 define conflicting with an enum value

...


branch: master 「№61406」
Commited by: Daniel Paoliello
GitHub commit link: 「e6926340fbc12417」 「№4955」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 15:27:08

Merge pull request #4955 from RosettaCommons/dpaoliello/UseSizeOf Ensure that `size_of` is brought in from base type

...


branch: master 「№61405」
Commited by: Daniel Paoliello
GitHub commit link: 「9361ca16545c90d7」 「№4960」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 15:00:22

Merge pull request #4960 from RosettaCommons/dpaoliello/QualifyUint Fully-qualify uses of `core::uint`

...


branch: master 「№61404」
Commited by: Vikram K. Mulligan
GitHub commit link: 「35b3a5cfadfc2235」 「№4856」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 14:17:22

Merge pull request #4856 from RosettaCommons/vmullig/move_cavity_volume_from_devel_to_protocols Move CavityVolumeFilter from devel to protocols The `CavityVolumeFilter` was used in Silva _et al._ (2019.) De novo design of potent and selective mimics of IL-2 and IL-15. _Nature_ 565: 186–191, but the scripts in the supplement can not be run, and by extension the work that the paper describes is not reproducible, if this remains in devel. At least one person has been asking about this on the Rosetta forums. Tasks: - [x] Move this filter to protocols from devel. - [x] Move supporting class, the `CavityCalculator`, to protocols from devel. - [x] Add citation info. I'm going to count this as an unpublished module since Tom wasn't on the paper in which it first appeared, and it wasn't really described in that paper, and Tom might want to write a paper describing this. Also: - [x] Update the tools submodule to point at the latest master for the tools repo.

...


branch: master 「№61403」
Commited by: Cody Krivacic
GitHub commit link: 「e425e8dc9297bfba」 「№4947」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 14:05:46

Merge pull request #4947 from RosettaCommons/ckrivacic/FragmentScoreFilter_fixes Ability to report averages of all fragments at all positions

...


branch: master 「№61402」
Commited by: Daniel Paoliello
GitHub commit link: 「db0d3bbf09db1de2」 「№4963」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 13:43:46

Merge pull request #4963 from RosettaCommons/dpaoliello/GitAttr Add `.gitattributes` files to indicate symlinks that are directories

...


branch: master 「№61401」
Commited by: Daniel Paoliello
GitHub commit link: 「e15b51d526812c60」 「№4967」
Difference from previous tested commit:  code diff
Commit date: 2020-09-02 13:28:55

Merge pull request #4967 from RosettaCommons/dpaoliello/RemoveHeaders Remove unneeded, or missing, headers

...


< 1 .. 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 .. 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