Skip to content
Snippets Groups Projects
Commit 44b1f949 authored by Studer Gabriel's avatar Studer Gabriel
Browse files

Add missing Python exports / docs in ProfilHandle class

parent 7e21d67b
No related branches found
No related tags found
No related merge requests found
......@@ -728,6 +728,10 @@ probabilities between Match, Insertion or Deletion states or neff values
:type: :class:`float`
.. attribute:: hmm_data
Shortcut for :func:`GetHMMData`/:func:`SetHMMData`
.. class:: ProfileHandle
......
......@@ -67,6 +67,8 @@ void export_profile_handle()
.add_property("entropy", &ProfileColumn::GetEntropy)
.def("GetFreq", &ProfileColumn::GetFreq, (arg("aa")))
.def("SetFreq", &ProfileColumn::SetFreq, (arg("aa"), arg("freq")))
.def("GetHMMData", &ProfileColumn::GetHMMData)
.def("SetHMMData", &ProfileColumn::SetHMMData)
.add_property("hmm_data", &ProfileColumn::GetHMMData, &ProfileColumn::SetHMMData)
.def("GetScore", &ProfileColumn::GetScore,
(arg("other"), arg("null_model")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment