Skip to content
Snippets Groups Projects
Commit a16e6952 authored by Rafal Gumienny's avatar Rafal Gumienny
Browse files

feat: SCHWED-3126 Test version of python export

parent 6a018869
Branches
Tags
No related merge requests found
......@@ -7,6 +7,7 @@ set(OST_MOL_ALG_PYMOD_SOURCES
export_contact_overlap.cc
export_accessibility.cc
export_sec_structure.cc
export_molck.cc
)
set(OST_MOL_ALG_PYMOD_MODULES
......
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2011 by the OpenStructure authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
#include <boost/python.hpp>
using namespace boost::python;
#include <ost/mol/alg/molck.hh>
using namespace ost::mol::alg::molck;
void export_Molck()
{
def("load_compound_lib", &load_compound_lib, (arg("custom_path")));
}
......@@ -39,6 +39,7 @@ void export_svdSuperPose();
void export_TrajectoryAnalysis();
void export_StructureAnalysis();
void export_Clash();
void export_Molck();
void export_contact_overlap();
void export_accessibility();
void export_sec_struct();
......@@ -110,6 +111,7 @@ BOOST_PYTHON_MODULE(_ost_mol_alg)
export_TrajectoryAnalysis();
export_StructureAnalysis();
export_Clash();
export_Molck();
export_contact_overlap();
export_accessibility();
export_sec_struct();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment