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

« back to all changes in this revision

Viewing changes to pyOpenMS/pxds/ConsensusID.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 libcpp.vector cimport vector as libcpp_vector
 
2
from PeptideIdentification cimport *
 
3
from DefaultParamHandler cimport *
 
4
from ProgressLogger cimport *
 
5
 
 
6
cdef extern from "<OpenMS/ANALYSIS/ID/ConsensusID.h>" namespace "OpenMS":
 
7
 
 
8
    cdef cppclass ConsensusID(DefaultParamHandler):
 
9
        # wrap-inherits:
 
10
        #    DefaultParamHandler
 
11
 
 
12
        ConsensusID()                  nogil except +
 
13
        ConsensusID(ConsensusID)   nogil except + #wrap-ignore
 
14
 
 
15
        void apply(libcpp_vector[PeptideIdentification] & ids) nogil except + 
 
16