~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to pyOpenMS/pxds/StablePairFinder.pxd

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2013-12-20 11:30:16 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131220113016-wre5g9bteeheq6he
Tags: 1.11.1-3
* remove version number from libbost development package names;
* ensure that AUTHORS is correctly shipped in all packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from Types cimport *
 
2
from libcpp.vector cimport vector as libcpp_vector
 
3
from BaseGroupFinder cimport *
 
4
 
 
5
cdef extern from "<OpenMS/ANALYSIS/MAPMATCHING/StablePairFinder.h>" namespace "OpenMS":
 
6
    
 
7
    cdef cppclass StablePairFinder(BaseGroupFinder) :
 
8
        # wrap-inherits:
 
9
        #  BaseGroupFinder
 
10
        StablePairFinder() nogil except +
 
11
        StablePairFinder(StablePairFinder) nogil except + #wrap-ignore
 
12
        void run(libcpp_vector[ ConsensusMap ] & input_maps, ConsensusMap & result_map) nogil except +
 
13
        # POINTER # BaseGroupFinder * create() nogil except +
 
14
        String getProductName() nogil except +
 
15