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

« back to all changes in this revision

Viewing changes to pyOpenMS/pxds/CompNovoIdentification.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 MSExperiment cimport *
 
4
from MSSpectrum cimport *
 
5
from Peak1D cimport *
 
6
from ChromatogramPeak cimport *
 
7
from DefaultParamHandler cimport *
 
8
 
 
9
cdef extern from "<OpenMS/ANALYSIS/DENOVO/CompNovoIdentification.h>" namespace "OpenMS":
 
10
 
 
11
    cdef cppclass CompNovoIdentification(DefaultParamHandler):
 
12
        # wrap-inherits:
 
13
        #    DefaultParamHandler
 
14
 
 
15
        CompNovoIdentification()      nogil except +
 
16
        CompNovoIdentification(CompNovoIdentification)      nogil except + #private
 
17
 
 
18
        void getIdentifications(libcpp_vector[PeptideIdentification] & ids, MSExperiment[Peak1D,ChromatogramPeak])      nogil except +
 
19
        void getIdentification(PeptideIdentification & id, MSSpectrum[Peak1D] cid_spec, MSSpectrum[Peak1D] etd_spec)      nogil except +
 
20