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
8164df3d
Commit
8164df3d
authored
7 years ago
by
Rafal Gumienny
Browse files
Options
Downloads
Patches
Plain Diff
fix: SCHWED-3126 Refer to correct DLL and config in nonstandard.hh
parent
e439dea8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/mol/alg/src/nonstandard.hh
+10
-10
10 additions, 10 deletions
modules/mol/alg/src/nonstandard.hh
with
10 additions
and
10 deletions
modules/mol/alg/src/nonstandard.hh
+
10
−
10
View file @
8164df3d
...
...
@@ -17,8 +17,8 @@
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
#ifndef OST_
CONOP
_NONSTANDARD_HH
#define OST_
CONOP
_NONSTANDARD_HH
#ifndef OST_
MOL_ALG
_NONSTANDARD_HH
#define OST_
MOL_ALG
_NONSTANDARD_HH
/*
Author: Marco Biasini, Juergen Haas
*/
...
...
@@ -33,12 +33,12 @@ namespace ost { namespace mol { namespace alg {
/// \brief copies all atom of src_res to dst_res, gets compound lib from builder
bool
DLLEXPORT_OST_
CONOP
CopyResidue
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyResidue
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
);
/// \brief copies all atom of src_res to dst_res, requires a compound lib
bool
DLLEXPORT_OST_
CONOP
CopyResidue
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyResidue
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
ost
::
conop
::
CompoundLibPtr
lib
);
...
...
@@ -50,7 +50,7 @@ bool DLLEXPORT_OST_CONOP CopyResidue(ost::mol::ResidueHandle src_res,
/// \param edi
/// \param has_cbeta will be set to true if the src_res has a cbeta and the
/// dst_residue is not a glycine
bool
DLLEXPORT_OST_
CONOP
CopyIdentical
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyIdentical
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
bool
&
has_cbeta
);
...
...
@@ -64,7 +64,7 @@ bool DLLEXPORT_OST_CONOP CopyIdentical(ost::mol::ResidueHandle src_res,
bool
DLLEXPORT_OST_
CONOP
CopyConserved
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyConserved
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
bool
&
has_cbeta
,
...
...
@@ -79,7 +79,7 @@ bool DLLEXPORT_OST_CONOP CopyConserved(ost::mol::ResidueHandle src_res,
bool
DLLEXPORT_OST_
CONOP
CopyConserved
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyConserved
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
bool
&
has_cbeta
);
...
...
@@ -91,14 +91,14 @@ bool DLLEXPORT_OST_CONOP CopyConserved(ost::mol::ResidueHandle src_res,
/// only copied if dst_res is not equal to glycine.
bool
DLLEXPORT_OST_
CONOP
CopyNonConserved
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyNonConserved
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
bool
&
has_cbeta
);
/// \brief construct dst_res from src_res when src_res is an MSE
bool
DLLEXPORT_OST_
CONOP
CopyMSE
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyMSE
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
bool
&
has_cbeta
);
...
...
@@ -106,7 +106,7 @@ bool DLLEXPORT_OST_CONOP CopyMSE(ost::mol::ResidueHandle src_res,
/// \brief construct a dst_res with only atoms matching the standard aminoacid
/// from src_res when src_res is an is modified
bool
DLLEXPORT_OST_
CONOP
CopyModified
(
ost
::
mol
::
ResidueHandle
src_res
,
bool
DLLEXPORT_OST_
MOL_ALG
CopyModified
(
ost
::
mol
::
ResidueHandle
src_res
,
ost
::
mol
::
ResidueHandle
dst_res
,
ost
::
mol
::
XCSEditor
&
edi
,
bool
&
has_cbeta
,
...
...
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