-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
polymer.protein polymer.nucleic multifilesave ...
* new selection keywords: polymer.protein polymer.nucleic * new command: multifilesave * MMTF export (requires simplemmtf python module) * select: present, state -1 -> current object state * create: source_state = -1 -> current (was: source_state = -1/0 -> all) * cif: support quoted '?' and '.' as values cif_get_array -> None instead of empty string for ? and . * fix copy discrete object w/o coords * fix loading pdbqr AutoDock 4 atom types * fix get_model('none') and get_str('mol', 'none') * h_add refactored: 5x faster, support discrete objects
- Loading branch information
Showing
42 changed files
with
1,015 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,30 @@ | |
CHANGE LOG | ||
========================================================================= | ||
|
||
2018-02-07 Thomas Holder <[email protected]> | ||
|
||
* new selection keywords: polymer.protein polymer.nucleic | ||
|
||
* new command: multifilesave | ||
|
||
* MMTF export (requires simplemmtf python module) | ||
|
||
* select: present, state -1 -> current object state | ||
|
||
* create: source_state = -1 -> current | ||
(was: source_state = -1/0 -> all) | ||
|
||
* cif: support quoted '?' and '.' as values | ||
cif_get_array -> None instead of empty string for ? and . | ||
|
||
* fix copy discrete object w/o coords | ||
|
||
* fix loading pdbqr AutoDock 4 atom types | ||
|
||
* fix get_model('none') and get_str('mol', 'none') | ||
|
||
* h_add refactored: 5x faster, support discrete objects | ||
|
||
2017-12-21 Thomas Holder, Piotr Rotkiewicz | ||
|
||
* Python 3.7 support (https://sf.net/p/pymol/bugs/197/) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* strcasecmp, strncasecmp | ||
*/ | ||
|
||
#pragma once | ||
|
||
#ifdef _WIN32 | ||
#include <string.h> | ||
#define strcasecmp(s1, s2) _stricmp(s1, s2) | ||
#define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n) | ||
#else | ||
#include <strings.h> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.