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

« back to all changes in this revision

Viewing changes to pyOpenMS/pxds/MRMFeatureFinderScoring.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 String cimport *
 
2
from MSExperiment cimport *
 
3
from FeatureMap cimport *
 
4
from TargetedExperiment cimport *
 
5
from TransformationDescription cimport *
 
6
from DefaultParamHandler cimport *
 
7
from ProgressLogger cimport *
 
8
from libcpp cimport bool
 
9
 
 
10
cdef extern from "<OpenMS/ANALYSIS/OPENSWATH/MRMFeatureFinderScoring.h>" namespace "OpenMS":
 
11
 
 
12
    cdef cppclass MRMFeatureFinderScoring(DefaultParamHandler, ProgressLogger):
 
13
        # wrap-inherits:
 
14
        #    DefaultParamHandler
 
15
        #    ProgressLogger
 
16
 
 
17
        MRMFeatureFinderScoring() nogil except +
 
18
 
 
19
        void pickExperiment(MSExperiment[Peak1D, ChromatogramPeak] & chromatograms,
 
20
                            FeatureMap[Feature] & output,
 
21
                            TargetedExperiment & transition_exp_,
 
22
                            TransformationDescription trafo,
 
23
                            MSExperiment[Peak1D, ChromatogramPeak] & swath_map) nogil except +
 
24
        void setStrictFlag(bool flag) nogil except +
 
25