Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
openstructure
Commits
2fd5b4cd
Commit
2fd5b4cd
authored
3 years ago
by
Bienchen
Browse files
Options
Downloads
Patches
Plain Diff
PDBize: do not put chains marked as 'polymer' in the ligand chain.
parent
c65d8ab9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.txt
+3
-1
3 additions, 1 deletion
CHANGELOG.txt
modules/mol/alg/src/pdbize.cc
+3
-1
3 additions, 1 deletion
modules/mol/alg/src/pdbize.cc
with
6 additions
and
2 deletions
CHANGELOG.txt
+
3
−
1
View file @
2fd5b4cd
...
...
@@ -2,7 +2,9 @@ Changes in Release 2.2.x
--------------------------------------------------------------------------------
* Removed GUI components in containers
* DSSP 4.0 support in DSSP binding (https://github.com/PDB-REDO/dssp)
* DSSP 4.0 support in DSSP binding (https://github.com/PDB-REDO/dssp)
* mol.alg.PDBize does not turn plain polymer chains (not marked peptide or
nucleotide) into ligand chains anymore
* Several minor bug fixes and improvements.
Changes in Release 2.2.0
...
...
This diff is collapsed.
Click to expand it.
modules/mol/alg/src/pdbize.cc
+
3
−
1
View file @
2fd5b4cd
...
...
@@ -88,7 +88,9 @@ void PDBize::Add(EntityView asu, const geom::Mat4List& transforms,
if
((
chain
.
IsPolypeptide
()
&&
chain_length
>=
peptide_min_size_
)
||
(
chain
.
IsPolynucleotide
()
&&
chain_length
>=
nucleicacid_min_size_
)
||
((
chain
.
IsOligosaccharide
()
||
chain
.
IsPolysaccharide
())
&&
chain_length
>=
saccharide_min_size_
))
{
chain_length
>=
saccharide_min_size_
)
||
(
chain
.
GetType
()
==
CHAINTYPE_POLY
&&
chain_length
>=
peptide_min_size_
&&
chain_length
>=
nucleicacid_min_size_
))
{
if
(
*
curr_chain_name_
==
0
)
{
throw
std
::
runtime_error
(
"running out of chain names"
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment