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

« back to all changes in this revision

Viewing changes to pyOpenMS/pxds/IdXMLFile.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
 
 
3
from ProteinIdentification cimport *
 
4
from PeptideIdentification cimport *
 
5
 
 
6
cdef extern from "<OpenMS/FORMAT/IdXMLFile.h>" namespace "OpenMS":
 
7
 
 
8
    cdef cppclass IdXMLFile:
 
9
 
 
10
        IdXMLFile() nogil except +
 
11
 
 
12
        void load(String filename,
 
13
                  libcpp_vector[ProteinIdentification] & protein_ids,
 
14
                  libcpp_vector[PeptideIdentification] & peptide_ids,
 
15
                  )
 
16
 
 
17
        void store(String filename,
 
18
                  libcpp_vector[ProteinIdentification] & protein_ids,
 
19
                  libcpp_vector[PeptideIdentification] & peptide_ids,
 
20
                  String document_id)
 
21
 
 
22
        void store(String filename,
 
23
                  libcpp_vector[ProteinIdentification] & protein_ids,
 
24
                  libcpp_vector[PeptideIdentification] & peptide_ids,
 
25
                  )