diff --git a/modules/mol/alg/pymod/wrap_mol_alg.cc b/modules/mol/alg/pymod/wrap_mol_alg.cc index d14474df0da7e1f52806975b0dc1bd857e56ced6..687692f5f6c32baad7159b5bf8cfa6d9617d26d8 100644 --- a/modules/mol/alg/pymod/wrap_mol_alg.cc +++ b/modules/mol/alg/pymod/wrap_mol_alg.cc @@ -35,7 +35,7 @@ void export_entity_to_density(); namespace { Real (*ldt_a)(const mol::EntityView&, const mol::alg::GlobalDistanceList& glob_dist_list, Real, const String&)=&mol::alg::LocalDistTest; -Real (*ldt_b)(const seq::AlignmentHandle&,Real, int, int)=&mol::alg::LocalDistTest; +Real (*ldt_b)(const seq::AlignmentHandle&,Real, Real, int, int)=&mol::alg::LocalDistTest; mol::EntityView (*fc_a)(const mol::EntityView&, const mol::alg::ClashingDistances&,bool)=&mol::alg::FilterClashes; mol::EntityView (*fc_b)(const mol::EntityHandle&, const mol::alg::ClashingDistances&, bool)=&mol::alg::FilterClashes; mol::EntityView (*csc_a)(const mol::EntityView&, const mol::alg::StereoChemicalParams&, const mol::alg::StereoChemicalParams&, Real, Real, bool)=&mol::alg::CheckStereoChemistry; diff --git a/modules/mol/alg/src/local_dist_test.hh b/modules/mol/alg/src/local_dist_test.hh index 74473ba2957bc8b88b5fc13a7fc414db16166689..872a974f6868d2a84658cb1685c58e1c39f810bd 100644 --- a/modules/mol/alg/src/local_dist_test.hh +++ b/modules/mol/alg/src/local_dist_test.hh @@ -78,7 +78,7 @@ Real DLLEXPORT_OST_MOL_ALG LocalDistTest(const EntityView& mdl, const String& local_ldt_property_string=""); Real DLLEXPORT_OST_MOL_ALG LocalDistTest(const ost::seq::AlignmentHandle& aln, - Real cutoff, + Real cutoff, Real max_dist, int ref_index=0, int mdl_index=1);