Skip to content
Snippets Groups Projects
Commit 0aa57ac8 authored by BIOPZ-Haas Juergen's avatar BIOPZ-Haas Juergen Committed by Tobias Schmidt
Browse files

fixing typo in export of ResidueBase, moving property closer to function

parent d89ff759
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,8 @@ void export_Residue()
.def("SetOneLetterCode", &ResidueBase::SetOneLetterCode)
.add_property("one_letter_code", &ResidueBase::GetOneLetterCode,
&ResidueBase::SetOneLetterCode)
.def("GetQualifedName", &ResidueBase::GetQualifiedName)
.def("GetQualifiedName", &ResidueBase::GetQualifiedName)
.add_property("qualified_name", &ResidueBase::GetQualifiedName)
.def("IsPeptideLinking", &ResidueBase::IsPeptideLinking)
.add_property("peptide_linking", &ResidueBase::IsPeptideLinking)
......@@ -205,7 +206,6 @@ void export_Residue()
.add_property("name",
make_function(&ResidueBase::GetName,
return_value_policy<copy_const_reference>()))
.add_property("qualified_name", &ResidueBase::GetQualifiedName)
.def("IsValid", &ResidueBase::IsValid)
.add_property("valid", &ResidueBase::IsValid)
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment