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
db964dac
Commit
db964dac
authored
4 years ago
by
Studer Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
export MeanlDDT data getter
parent
5446104b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/seq/alg/pymod/wrap_seq_alg.cc
+5
-0
5 additions, 0 deletions
modules/seq/alg/pymod/wrap_seq_alg.cc
with
5 additions
and
0 deletions
modules/seq/alg/pymod/wrap_seq_alg.cc
+
5
−
0
View file @
db964dac
...
...
@@ -79,6 +79,10 @@ list DistToMeanGetData(const Dist2MeanPtr d2m) {
return
GetList
(
*
d2m
,
d2m
->
GetNumResidues
(),
d2m
->
GetNumStructures
());
}
list
MeanlDDTGetData
(
const
MeanlDDTPtr
ld
)
{
return
GetList
(
*
ld
,
ld
->
GetNumResidues
(),
ld
->
GetNumStructures
());
}
void
AAPseudoCountsSimple
(
ProfileHandle
&
profile
,
Real
a
,
Real
b
,
Real
c
)
{
AddAAPseudoCounts
(
profile
,
a
,
b
,
c
);
}
...
...
@@ -243,6 +247,7 @@ void export_distance_analysis()
.
def
(
"ExportCsv"
,
&
MeanlDDT
::
ExportCsv
,
(
arg
(
"file_name"
)))
.
def
(
"ExportJson"
,
&
MeanlDDT
::
ExportJson
,
(
arg
(
"file_name"
)))
.
def
(
"GetJsonString"
,
&
MeanlDDT
::
GetJsonString
)
.
def
(
"GetData"
,
&
MeanlDDTGetData
)
;
}
...
...
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