IMP logo
IMP Reference Guide  2.7.0
The Integrative Modeling Platform
kmeans/__init__.py
1 # This file was automatically generated by SWIG (http://www.swig.org).
2 # Version 3.0.10
3 #
4 # Do not make changes to this file unless you know what you are doing--modify
5 # the SWIG interface file instead.
6 
7 # This wrapper is part of IMP,
8 # Copyright 2007-2017 IMP Inventors. All rights reserved.
9 
10 from __future__ import print_function, division, absolute_import
11 
12 
13 
14 
15 from sys import version_info as _swig_python_version_info
16 if _swig_python_version_info >= (2, 7, 0):
17  def swig_import_helper():
18  import importlib
19  pkg = __name__.rpartition('.')[0]
20  mname = '.'.join((pkg, '_IMP_kmeans')).lstrip('.')
21  try:
22  return importlib.import_module(mname)
23  except ImportError:
24  return importlib.import_module('_IMP_kmeans')
25  _IMP_kmeans = swig_import_helper()
26  del swig_import_helper
27 elif _swig_python_version_info >= (2, 6, 0):
28  def swig_import_helper():
29  from os.path import dirname
30  import imp
31  fp = None
32  try:
33  fp, pathname, description = imp.find_module('_IMP_kmeans', [dirname(__file__)])
34  except ImportError:
35  import _IMP_kmeans
36  return _IMP_kmeans
37  if fp is not None:
38  try:
39  _mod = imp.load_module('_IMP_kmeans', fp, pathname, description)
40  finally:
41  fp.close()
42  return _mod
43  _IMP_kmeans = swig_import_helper()
44  del swig_import_helper
45 else:
46  import _IMP_kmeans
47 del _swig_python_version_info
48 try:
49  _swig_property = property
50 except NameError:
51  pass # Python < 2.2 doesn't have 'property'.
52 
53 try:
54  import builtins as __builtin__
55 except ImportError:
56  import __builtin__
57 
58 def _swig_setattr_nondynamic(self, class_type, name, value, static=1):
59  if (name == "thisown"):
60  return self.this.own(value)
61  if (name == "this"):
62  if type(value).__name__ == 'SwigPyObject':
63  self.__dict__[name] = value
64  return
65  method = class_type.__swig_setmethods__.get(name, None)
66  if method:
67  return method(self, value)
68  if (not static):
69  object.__setattr__(self, name, value)
70  else:
71  raise AttributeError("You cannot add attributes to %s" % self)
72 
73 
74 def _swig_setattr(self, class_type, name, value):
75  return _swig_setattr_nondynamic(self, class_type, name, value, 0)
76 
77 
78 def _swig_getattr(self, class_type, name):
79  if (name == "thisown"):
80  return self.this.own()
81  method = class_type.__swig_getmethods__.get(name, None)
82  if method:
83  return method(self)
84  raise AttributeError("'%s' object has no attribute '%s'" % (class_type.__name__, name))
85 
86 
87 def _swig_repr(self):
88  try:
89  strthis = "proxy of " + self.this.__repr__()
90  except __builtin__.Exception:
91  strthis = ""
92  return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
93 
94 
95 def _swig_setattr_nondynamic_method(set):
96  def set_attr(self, name, value):
97  if (name == "thisown"):
98  return self.this.own(value)
99  if hasattr(self, name) or (name == "this"):
100  set(self, name, value)
101  else:
102  raise AttributeError("You cannot add attributes to %s" % self)
103  return set_attr
104 
105 
106 try:
107  import weakref
108  weakref_proxy = weakref.proxy
109 except __builtin__.Exception:
110  weakref_proxy = lambda x: x
111 
112 
113 class IMP_KMEANS_SwigPyIterator(object):
114  """Proxy of C++ swig::IMP_KMEANS_SwigPyIterator class."""
115 
116  thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
117 
118  def __init__(self, *args, **kwargs):
119  raise AttributeError("No constructor defined - class is abstract")
120  __repr__ = _swig_repr
121  __swig_destroy__ = _IMP_kmeans.delete_IMP_KMEANS_SwigPyIterator
122  __del__ = lambda self: None
123 
124  def value(self):
125  """value(IMP_KMEANS_SwigPyIterator self) -> PyObject *"""
126  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_value(self)
127 
128 
129  def incr(self, n=1):
130  """
131  incr(IMP_KMEANS_SwigPyIterator self, size_t n=1) -> IMP_KMEANS_SwigPyIterator
132  incr(IMP_KMEANS_SwigPyIterator self) -> IMP_KMEANS_SwigPyIterator
133  """
134  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_incr(self, n)
135 
136 
137  def decr(self, n=1):
138  """
139  decr(IMP_KMEANS_SwigPyIterator self, size_t n=1) -> IMP_KMEANS_SwigPyIterator
140  decr(IMP_KMEANS_SwigPyIterator self) -> IMP_KMEANS_SwigPyIterator
141  """
142  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_decr(self, n)
143 
144 
145  def distance(self, x):
146  """distance(IMP_KMEANS_SwigPyIterator self, IMP_KMEANS_SwigPyIterator x) -> ptrdiff_t"""
147  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_distance(self, x)
148 
149 
150  def equal(self, x):
151  """equal(IMP_KMEANS_SwigPyIterator self, IMP_KMEANS_SwigPyIterator x) -> bool"""
152  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_equal(self, x)
153 
154 
155  def copy(self):
156  """copy(IMP_KMEANS_SwigPyIterator self) -> IMP_KMEANS_SwigPyIterator"""
157  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_copy(self)
158 
159 
160  def next(self):
161  """next(IMP_KMEANS_SwigPyIterator self) -> PyObject *"""
162  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_next(self)
163 
164 
165  def __next__(self):
166  """__next__(IMP_KMEANS_SwigPyIterator self) -> PyObject *"""
167  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___next__(self)
168 
169 
170  def previous(self):
171  """previous(IMP_KMEANS_SwigPyIterator self) -> PyObject *"""
172  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_previous(self)
173 
174 
175  def advance(self, n):
176  """advance(IMP_KMEANS_SwigPyIterator self, ptrdiff_t n) -> IMP_KMEANS_SwigPyIterator"""
177  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator_advance(self, n)
178 
179 
180  def __eq__(self, x):
181  """__eq__(IMP_KMEANS_SwigPyIterator self, IMP_KMEANS_SwigPyIterator x) -> bool"""
182  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___eq__(self, x)
183 
184 
185  def __ne__(self, x):
186  """__ne__(IMP_KMEANS_SwigPyIterator self, IMP_KMEANS_SwigPyIterator x) -> bool"""
187  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___ne__(self, x)
188 
189 
190  def __iadd__(self, n):
191  """__iadd__(IMP_KMEANS_SwigPyIterator self, ptrdiff_t n) -> IMP_KMEANS_SwigPyIterator"""
192  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___iadd__(self, n)
193 
194 
195  def __isub__(self, n):
196  """__isub__(IMP_KMEANS_SwigPyIterator self, ptrdiff_t n) -> IMP_KMEANS_SwigPyIterator"""
197  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___isub__(self, n)
198 
199 
200  def __add__(self, n):
201  """__add__(IMP_KMEANS_SwigPyIterator self, ptrdiff_t n) -> IMP_KMEANS_SwigPyIterator"""
202  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___add__(self, n)
203 
204 
205  def __sub__(self, *args):
206  """
207  __sub__(IMP_KMEANS_SwigPyIterator self, ptrdiff_t n) -> IMP_KMEANS_SwigPyIterator
208  __sub__(IMP_KMEANS_SwigPyIterator self, IMP_KMEANS_SwigPyIterator x) -> ptrdiff_t
209  """
210  return _IMP_kmeans.IMP_KMEANS_SwigPyIterator___sub__(self, *args)
211 
212  def __iter__(self):
213  return self
214 IMP_KMEANS_SwigPyIterator_swigregister = _IMP_kmeans.IMP_KMEANS_SwigPyIterator_swigregister
215 IMP_KMEANS_SwigPyIterator_swigregister(IMP_KMEANS_SwigPyIterator)
216 
217 
218 _value_types=[]
219 _object_types=[]
220 _raii_types=[]
221 _plural_types=[]
222 
223 IMP_DEBUG = _IMP_kmeans.IMP_DEBUG
224 IMP_RELEASE = _IMP_kmeans.IMP_RELEASE
225 IMP_SILENT = _IMP_kmeans.IMP_SILENT
226 IMP_PROGRESS = _IMP_kmeans.IMP_PROGRESS
227 IMP_TERSE = _IMP_kmeans.IMP_TERSE
228 IMP_VERBOSE = _IMP_kmeans.IMP_VERBOSE
229 IMP_MEMORY = _IMP_kmeans.IMP_MEMORY
230 IMP_NONE = _IMP_kmeans.IMP_NONE
231 IMP_USAGE = _IMP_kmeans.IMP_USAGE
232 IMP_INTERNAL = _IMP_kmeans.IMP_INTERNAL
233 IMP_KERNEL_HAS_LOG4CXX = _IMP_kmeans.IMP_KERNEL_HAS_LOG4CXX
234 IMP_COMPILER_HAS_AUTO = _IMP_kmeans.IMP_COMPILER_HAS_AUTO
235 IMP_COMPILER_HAS_DEBUG_VECTOR = _IMP_kmeans.IMP_COMPILER_HAS_DEBUG_VECTOR
236 IMP_COMPILER_HAS_UNIQUE_PTR = _IMP_kmeans.IMP_COMPILER_HAS_UNIQUE_PTR
237 IMP_KERNEL_HAS_BOOST_RANDOM = _IMP_kmeans.IMP_KERNEL_HAS_BOOST_RANDOM
238 IMP_KERNEL_HAS_GPERFTOOLS = _IMP_kmeans.IMP_KERNEL_HAS_GPERFTOOLS
239 IMP_KERNEL_HAS_TCMALLOC_HEAPCHECKER = _IMP_kmeans.IMP_KERNEL_HAS_TCMALLOC_HEAPCHECKER
240 IMP_KERNEL_HAS_TCMALLOC_HEAPPROFILER = _IMP_kmeans.IMP_KERNEL_HAS_TCMALLOC_HEAPPROFILER
241 IMPKERNEL_SHOW_WARNINGS = _IMP_kmeans.IMPKERNEL_SHOW_WARNINGS
242 
243 import sys
244 class _DirectorObjects(object):
245  """@internal Simple class to keep references to director objects
246  to prevent premature deletion."""
247  def __init__(self):
248  self._objects = []
249  def register(self, obj):
250  """Take a reference to a director object; will only work for
251  refcounted C++ classes"""
252  if hasattr(obj, 'get_ref_count'):
253  self._objects.append(obj)
254  def cleanup(self):
255  """Only drop our reference and allow cleanup by Python if no other
256  Python references exist (we hold 3 references: one in self._objects,
257  one in x, and one in the argument list for getrefcount) *and* no
258  other C++ references exist (the Python object always holds one)"""
259  objs = [x for x in self._objects if sys.getrefcount(x) > 3 \
260  or x.get_ref_count() > 1]
261 # Do in two steps so the references are kept until the end of the
262 # function (deleting references may trigger a fresh call to this method)
263  self._objects = objs
264  def get_object_count(self):
265  """Get number of director objects (useful for testing only)"""
266  return len(self._objects)
267 _director_objects = _DirectorObjects()
268 
269 class _ostream(object):
270  """Proxy of C++ std::ostream class."""
271 
272  thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
273 
274  def __init__(self, *args, **kwargs):
275  raise AttributeError("No constructor defined")
276  __repr__ = _swig_repr
277 
278  def write(self, osa_buf):
279  """write(_ostream self, char const * osa_buf)"""
280  return _IMP_kmeans._ostream_write(self, osa_buf)
281 
282 _ostream_swigregister = _IMP_kmeans._ostream_swigregister
283 _ostream_swigregister(_ostream)
284 
285 IMP_COMPILER_HAS_OVERRIDE = _IMP_kmeans.IMP_COMPILER_HAS_OVERRIDE
286 IMP_COMPILER_HAS_FINAL = _IMP_kmeans.IMP_COMPILER_HAS_FINAL
287 IMP_HAS_NOEXCEPT = _IMP_kmeans.IMP_HAS_NOEXCEPT
288 import IMP
289 IMP_KMEANS_HAS_BOOST_FILESYSTEM = _IMP_kmeans.IMP_KMEANS_HAS_BOOST_FILESYSTEM
290 IMP_KMEANS_HAS_BOOST_PROGRAMOPTIONS = _IMP_kmeans.IMP_KMEANS_HAS_BOOST_PROGRAMOPTIONS
291 IMP_KMEANS_HAS_BOOST_RANDOM = _IMP_kmeans.IMP_KMEANS_HAS_BOOST_RANDOM
292 IMP_KMEANS_HAS_BOOST_SYSTEM = _IMP_kmeans.IMP_KMEANS_HAS_BOOST_SYSTEM
293 IMPKMEANS_SHOW_WARNINGS = _IMP_kmeans.IMPKMEANS_SHOW_WARNINGS
294 
295 _object_types.append("KMeans")
296 
297 
298 def _object_cast_to_KMeans(o):
299  """_object_cast_to_KMeans(Object o) -> KMeans"""
300  return _IMP_kmeans._object_cast_to_KMeans(o)
301 KM_LLOYDS = _IMP_kmeans.KM_LLOYDS
302 KM_LOCAL_SWAP = _IMP_kmeans.KM_LOCAL_SWAP
303 KM_LOCAL_EZ_HYBRID = _IMP_kmeans.KM_LOCAL_EZ_HYBRID
304 KM_HYBRID = _IMP_kmeans.KM_HYBRID
305 class KMeans(IMP.Object):
306  """Proxy of C++ IMP::kmeans::KMeans class."""
307 
308  thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
309 
310  def __init__(self, *args):
311  """
312  __init__(IMP::kmeans::KMeans self, std::string const & fname_data, int dim, unsigned int max_nPts) -> KMeans
313  __init__(IMP::kmeans::KMeans self) -> KMeans
314  """
315  this = _IMP_kmeans.new_KMeans(*args)
316  try:
317  self.this.append(this)
318  except __builtin__.Exception:
319  self.this = this
320 
321  def get_version_info(self):
322  """get_version_info(KMeans self) -> VersionInfo"""
323  return _IMP_kmeans.KMeans_get_version_info(self)
324 
325 
326  def execute(self, *args):
327  """
328  execute(KMeans self, unsigned int k, IMP::kmeans::KM_ALG_TYPE alg_type, int stages=100)
329  execute(KMeans self, unsigned int k, IMP::kmeans::KM_ALG_TYPE alg_type)
330  execute(KMeans self, unsigned int k)
331  """
332  return _IMP_kmeans.KMeans_execute(self, *args)
333 
334 
335  def add_data_pt(self, p):
336  """add_data_pt(KMeans self, IMP::Floats const & p)"""
337  return _IMP_kmeans.KMeans_add_data_pt(self, p)
338 
339 
340  def clear_data(self):
341  """clear_data(KMeans self)"""
342  return _IMP_kmeans.KMeans_clear_data(self)
343 
344 
345  def get_data_point(self, i):
346  """get_data_point(KMeans self, unsigned int i) -> IMP::Floats const &"""
347  return _IMP_kmeans.KMeans_get_data_point(self, i)
348 
349 
350  def get_number_of_data_points(self):
351  """get_number_of_data_points(KMeans self) -> unsigned int"""
352  return _IMP_kmeans.KMeans_get_number_of_data_points(self)
353 
354 
355  def print_centers(self, *args):
356  """
357  print_centers(KMeans self, IMP::LogLevel ll)
358  print_centers(KMeans self)
359  """
360  return _IMP_kmeans.KMeans_print_centers(self, *args)
361 
362 
363  def get_center(self, i):
364  """get_center(KMeans self, unsigned int i) -> IMP::Floats"""
365  return _IMP_kmeans.KMeans_get_center(self, i)
366 
367 
368  def get_assignments(self):
369  """get_assignments(KMeans self) -> IMP::Ints"""
370  return _IMP_kmeans.KMeans_get_assignments(self)
371 
372 
373  def get_squared_distance_to_centers(self):
374  """get_squared_distance_to_centers(KMeans self) -> IMP::Floats"""
375  return _IMP_kmeans.KMeans_get_squared_distance_to_centers(self)
376 
377 
378  def get_number_of_centers(self):
379  """get_number_of_centers(KMeans self) -> unsigned int"""
380  return _IMP_kmeans.KMeans_get_number_of_centers(self)
381 
382 
383  def __str__(self):
384  """__str__(KMeans self) -> std::string"""
385  return _IMP_kmeans.KMeans___str__(self)
386 
387 
388  def __repr__(self):
389  """__repr__(KMeans self) -> std::string"""
390  return _IMP_kmeans.KMeans___repr__(self)
391 
392 
393  @staticmethod
394  def get_from(o):
395  return _object_cast_to_KMeans(o)
396 
397 KMeans_swigregister = _IMP_kmeans.KMeans_swigregister
398 KMeans_swigregister(KMeans)
399 
400 
401 def get_module_version():
402  """get_module_version() -> std::string const"""
403  return _IMP_kmeans.get_module_version()
404 
405 def get_example_path(fname):
406  """get_example_path(std::string fname) -> std::string"""
407  return _IMP_kmeans.get_example_path(fname)
408 
409 def get_data_path(fname):
410  """get_data_path(std::string fname) -> std::string"""
411  return _IMP_kmeans.get_data_path(fname)
412 
413 from . import _version_check
414 _version_check.check_version(get_module_version())
415 __version__ = get_module_version()
416 
417 
418 
Common base class for heavy weight IMP objects.
Definition: Object.h:106
virtual VersionInfo get_version_info() const
Get information about the module and version of the object.
Definition: Object.h:173
std::string get_example_path(std::string file_name)
Return the full path to one of this module's example files.
std::string get_data_path(std::string file_name)
Return the full path to one of this module's data files.