Skip to content
Snippets Groups Projects
Commit 882b681e authored by Marco Biasini's avatar Marco Biasini
Browse files

reflow and add DLLEXPORT magic

parent 17b68840
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,8 @@ namespace ost { namespace mol { namespace alg {
/// residue properties. Specifically, the local residue-based Distance RMSD score is stored in a float property
/// as the provided string, while the residue-based sum of squared distances and the number of distances checked
/// are saved in two properties named <string>_sum (a float property) and <string>_count (an int property).
std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl,
std::pair<Real,long int> DLLEXPORT_OST_MOL_ALG
DistanceRMSDTest(const EntityView& mdl,
const GlobalRDMap& glob_dist_list,
Real cap_distance, int sequence_separation = 0,
const String& local_drmsdt_property_string="");
......@@ -67,7 +68,9 @@ std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl,
///
/// A sequence separation parameter can be passed to the function. If this happens, only distances between residues
/// whose separation is higher than the provided parameter are considered when computing the score.
Real DLLEXPORT_OST_MOL_ALG DRMSD(const EntityView& v, const GlobalRDMap& global_dist_list, Real cap_distance, int sequence_separation=0);
Real DLLEXPORT_OST_MOL_ALG DRMSD(const EntityView& v,
const GlobalRDMap& global_dist_list,
Real cap_distance, int sequence_separation=0);
}}}
......
......@@ -46,10 +46,9 @@ namespace ost { namespace mol { namespace alg {
/// residue properties. Specifically, the local residue-based lddt score is stored in a float property named
/// as the provided string, while the residue-based number of conserved and total distances are saved in two
/// int properties named <string>_conserved and <string>_total.
std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& mdl,
const GlobalRDMap& dist_list,
std::vector<Real> cutoff_list,
int sequence_separation = 0,
std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG
LocalDistDiffTest(const EntityView& mdl, const GlobalRDMap& dist_list,
std::vector<Real> cutoff_list, int sequence_separation = 0,
const String& local_ldt_property_string="");
/// \brief Calculates the Local Distance Difference Score for a given model with respect to a given target
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment