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

« back to all changes in this revision

Viewing changes to source/FORMAT/MzQuantMLFile.C

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2012-11-12 15:58:12 UTC
  • Revision ID: package-import@ubuntu.com-20121112155812-vr15wtg9b50cuesg
Tags: upstream-1.9.0
ImportĀ upstreamĀ versionĀ 1.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode: C++; tab-width: 2; -*-
 
2
// vi: set ts=2:
 
3
//
 
4
// --------------------------------------------------------------------------
 
5
//                   OpenMS Mass Spectrometry Framework
 
6
// --------------------------------------------------------------------------
 
7
//  Copyright (C) 2003-2011 -- Oliver Kohlbacher, Knut Reinert
 
8
//
 
9
//  This library is free software; you can redistribute it and/or
 
10
//  modify it under the terms of the GNU Lesser General Public
 
11
//  License as published by the Free Software Foundation; either
 
12
//  version 2.1 of the License, or (at your option) any later version.
 
13
//
 
14
//  This library is distributed in the hope that it will be useful,
 
15
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
//  Lesser General Public License for more details.
 
18
//
 
19
//  You should have received a copy of the GNU Lesser General Public
 
20
//  License along with this library; if not, write to the Free Software
 
21
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
//
 
23
// --------------------------------------------------------------------------
 
24
// $Maintainer: Mathias Walzer $
 
25
// $Authors: Mathias Walzer $
 
26
// --------------------------------------------------------------------------
 
27
 
 
28
#include <OpenMS/FORMAT/MzQuantMLFile.h>
 
29
#include <OpenMS/FORMAT/CVMappingFile.h>
 
30
#include <OpenMS/FORMAT/VALIDATORS/XMLValidator.h>
 
31
#include <OpenMS/FORMAT/HANDLERS/MzQuantMLHandler.h>
 
32
#include <OpenMS/SYSTEM/File.h>
 
33
//~ #include <OpenMS/FORMAT/VALIDATORS/MzQuantMLValidator.h>
 
34
 
 
35
namespace OpenMS
 
36
{
 
37
 
 
38
        MzQuantMLFile::MzQuantMLFile()
 
39
                : XMLFile("/SCHEMAS/mzQuantML0.1.7.xsd","0.1.7")
 
40
        {
 
41
        }
 
42
 
 
43
        MzQuantMLFile::~MzQuantMLFile()
 
44
        {
 
45
        }
 
46
 
 
47
        void MzQuantMLFile::load(const String& filename, ConsensusMap& cm)
 
48
        {
 
49
                Internal::MzQuantMLHandler handler(cm, filename, schema_version_, *this);
 
50
                parse_(filename, &handler);
 
51
        }
 
52
 
 
53
        void MzQuantMLFile::store(const String& filename, const ConsensusMap& cm) const
 
54
        {
 
55
                Internal::MzQuantMLHandler handler(cm, filename, schema_version_, *this);
 
56
                save_(filename, &handler);
 
57
        }
 
58
 
 
59
        //~ TODO
 
60
        //~ bool MzQuantMLFile::isSemanticallyValid(const String& filename, StringList& errors, StringList& warnings)
 
61
        //~ {
 
62
                //~ //load mapping
 
63
                //~ CVMappings mapping;
 
64
                //~ CVMappingFile().load(File::find("/MAPPING/mzQuantML-mapping.xml"),mapping);
 
65
 
 
66
                //~ //load cvs
 
67
                //~ ControlledVocabulary cv;
 
68
                //~ cv.loadFromOBO("MS",File::find("/CV/psi-ms.obo"));
 
69
                //~ cv.loadFromOBO("PATO",File::find("/CV/quality.obo"));
 
70
                //~ cv.loadFromOBO("UO",File::find("/CV/unit.obo"));
 
71
                //~ cv.loadFromOBO("BTO",File::find("/CV/brenda.obo"));
 
72
                //~ cv.loadFromOBO("GO",File::find("/CV/goslim_goa.obo"));
 
73
 
 
74
                //~ //validate
 
75
                //~ Internal::MzQuantMLValidator v(mapping, cv);
 
76
                //~ bool result = v.validate(filename, errors, warnings);
 
77
 
 
78
                //~ return result;
 
79
        //~ }
 
80
 
 
81
}// namespace OpenMS
 
82