1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
// --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universitaet Berlin 2002-2013.
//
// This software is released under a three-clause BSD license:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of any author or any participating institution
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// For a full list of authors, refer to the file AUTHORS.
// --------------------------------------------------------------------------
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// --------------------------------------------------------------------------
// $Maintainer: Chris Bielow $
// $Authors: Chris Bielow $
// --------------------------------------------------------------------------
#include <OpenMS/CHEMISTRY/ModificationsDB.h>
#include <OpenMS/CHEMISTRY/ResidueDB.h>
#include <OpenMS/CONCEPT/LogStream.h>
#include <OpenMS/CONCEPT/UniqueIdGenerator.h>
#include <OpenMS/FORMAT/ProtXMLFile.h>
#include <OpenMS/SYSTEM/File.h>
#include <iostream>
#include <fstream>
#include <limits>
using namespace std;
namespace OpenMS
{
ProtXMLFile::ProtXMLFile() :
XMLHandler("", "1.2"),
XMLFile("/SCHEMAS/protXML_v6.xsd", "6.0")
{
cv_terms_.resize(1);
// Enzymes
std::vector<String> enzyme_names(ProteinIdentification::SIZE_OF_DIGESTIONENZYME);
for (Size i = 0; i < ProteinIdentification::SIZE_OF_DIGESTIONENZYME; ++i)
{
enzyme_names[i] = String(ProteinIdentification::NamesOfDigestionEnzyme[i]).toUpper();
}
cv_terms_[0] = enzyme_names;
}
void ProtXMLFile::load(const String & filename, ProteinIdentification & protein_ids, PeptideIdentification & peptide_ids)
{
//Filename for error messages in XMLHandler
file_ = filename;
resetMembers_();
// reset incoming data
protein_ids = ProteinIdentification();
peptide_ids = PeptideIdentification();
// remember data link while parsing
prot_id_ = &protein_ids;
pep_id_ = &peptide_ids;
parse_(filename, this);
}
void ProtXMLFile::store(const String & /*filename*/, const ProteinIdentification & /*protein_ids*/, const PeptideIdentification & /*peptide_ids*/, const String & /*document_id*/)
{
throw Exception::NotImplemented(__FILE__, __LINE__, __PRETTY_FUNCTION__);
// resetMembers_();
}
/// reset members
void ProtXMLFile::resetMembers_()
{
prot_id_ = 0;
pep_id_ = 0;
pep_hit_ = 0;
protein_group_ = ProteinGroup();
}
void ProtXMLFile::startElement(const XMLCh * const /*uri*/, const XMLCh * const /*local_name*/, const XMLCh * const qname, const xercesc::Attributes & attributes)
{
String tag = sm_.convert(qname);
if (tag == "protein_summary_header")
{
String db = attributeAsString_(attributes, "reference_database");
String enzyme = attributeAsString_(attributes, "sample_enzyme");
ProteinIdentification::SearchParameters sp = prot_id_->getSearchParameters();
sp.db = db;
// find a matching enzyme name
sp.enzyme = (ProteinIdentification::DigestionEnzyme) cvStringToEnum_(0, enzyme.toUpper(), "sample_enzyme", ProteinIdentification::UNKNOWN_ENZYME);
prot_id_->setSearchParameters(sp);
prot_id_->setScoreType("ProteinProphet probability");
prot_id_->setHigherScoreBetter(true);
pep_id_->setScoreType("ProteinProphet probability");
pep_id_->setHigherScoreBetter(true);
}
// identifier for Protein & PeptideIdentification
// <program_details analysis="proteinprophet" time="2009-11-29T18:30:03" ...
if (tag == "program_details")
{
String analysis = attributeAsString_(attributes, "analysis");
String time = attributeAsString_(attributes, "time");
String version = attributeAsString_(attributes, "version");
QDateTime date = QDateTime::fromString(time.toQString());
if (!date.isValid())
date = QDateTime::fromString(time.toQString(), Qt::ISODate);
if (!date.isValid())
LOG_WARN << "Warning: Cannot parse 'time'='" << time << "'.\n";
prot_id_->setDateTime(date);
prot_id_->setSearchEngine(analysis);
prot_id_->setSearchEngineVersion(version);
String id = String(UniqueIdGenerator::getUniqueId()); // was: analysis + "_" + time;
prot_id_->setIdentifier(id);
pep_id_->setIdentifier(id);
}
if (tag == "protein_group")
{
// we group all <protein>'s and <indistinguishable_protein>'s in our
// internal group structure
protein_group_ = ProteinGroup();
protein_group_.probability = attributeAsDouble_(attributes, "probability");
}
else if (tag == "protein")
{
// usually there will be just one <protein> per <protein_group>, but more
// are possible; each <protein> is distinguishable from the other, we
// nevertheless group them
String protein_name = attributeAsString_(attributes, "protein_name");
// open new "indistinguishable" group:
prot_id_->insertIndistinguishableProteins(ProteinGroup());
registerProtein_(protein_name); // create new protein
// fill protein with life
DoubleReal pc_coverage;
if (optionalAttributeAsDouble_(pc_coverage, attributes, "percent_coverage"))
{
prot_id_->getHits().back().setCoverage(pc_coverage);
}
else
{
LOG_WARN << "Required attribute 'percent_coverage' missing\n";
}
prot_id_->getHits().back().setScore(attributeAsDouble_(attributes, "probability"));
}
else if (tag == "indistinguishable_protein")
{
String protein_name = attributeAsString_(attributes, "protein_name");
registerProtein_(protein_name);
// score of group leader might not be transferrable (due to protein length
// etc.), so we set it to -1
prot_id_->getHits().back().setScore(-1);
}
else if (tag == "peptide")
{
// If a peptide is degenerate it will show in multiple groups, but have different statistics (e.g. 'nsp_adjusted_probability')
// We thus treat each instance as a separate peptide
// todo/improvement: link them by a group in PeptideIdentification?!
pep_hit_ = new PeptideHit;
pep_hit_->setSequence(attributeAsString_(attributes, "peptide_sequence"));
pep_hit_->setScore(attributeAsDouble_(attributes, "nsp_adjusted_probability"));
Int charge;
if (optionalAttributeAsInt_(charge, attributes, "charge"))
{
pep_hit_->setCharge(charge);
}
else
{
LOG_WARN << "Required attribute 'charge' missing\n";
}
// add accessions of all indistinguishable proteins the peptide belongs to
ProteinIdentification::ProteinGroup & indist = prot_id_->getIndistinguishableProteins().back();
pep_hit_->setProteinAccessions(indist.accessions);
pep_hit_->setMetaValue("is_unique", String(attributeAsString_(attributes, "is_nondegenerate_evidence")) == "Y" ? 1 : 0);
pep_hit_->setMetaValue("is_contributing", String(attributeAsString_(attributes, "is_contributing_evidence")) == "Y" ? 1 : 0);
}
else if (tag == "mod_aminoacid_mass")
{
// relates to the last seen peptide (we hope)
Size position = attributeAsInt_(attributes, "position");
DoubleReal mass = attributeAsDouble_(attributes, "mass");
AASequence temp_aa_sequence(pep_hit_->getSequence());
String temp_description = "";
String origin = temp_aa_sequence[position - 1].getOneLetterCode();
matchModification_(mass, origin, temp_description);
if (temp_description.size() > 0) // only if a mod was found
{
// e.g. Carboxymethyl (C)
vector<String> mod_split;
temp_description.split(' ', mod_split);
if (mod_split.size() == 2)
{
if (mod_split[1] == "(C-term)" || ModificationsDB::getInstance()->getModification(temp_description).getTermSpecificity() == ResidueModification::C_TERM)
{
temp_aa_sequence.setCTerminalModification(mod_split[0]);
}
else
{
if (mod_split[1] == "(N-term)" || ModificationsDB::getInstance()->getModification(temp_description).getTermSpecificity() == ResidueModification::N_TERM)
{
temp_aa_sequence.setNTerminalModification(mod_split[0]);
}
else
{
// search this mod, if not directly use a general one
temp_aa_sequence.setModification(position - 1, mod_split[0]);
}
}
}
else
{
error(LOAD, String("Cannot parse modification '") + temp_description + "@" + position + "'");
}
}
else
{
error(LOAD, String("Cannot find modification '") + String(mass) + " " + String(origin) + "' @" + String(position));
}
pep_hit_->setSequence(temp_aa_sequence);
}
}
void ProtXMLFile::endElement(const XMLCh * const /*uri*/, const XMLCh * const /*local_name*/, const XMLCh * const qname)
{
String tag = sm_.convert(qname);
if (tag == "protein_group")
{
prot_id_->insertProteinGroup(protein_group_);
}
else if (tag == "peptide")
{
pep_id_->insertHit(*pep_hit_);
delete pep_hit_;
}
}
void ProtXMLFile::registerProtein_(const String & protein_name)
{
ProteinHit hit;
hit.setAccession(protein_name);
prot_id_->insertHit(hit);
// add protein to groups
protein_group_.accessions.push_back(protein_name);
prot_id_->getIndistinguishableProteins().back().accessions.push_back(
protein_name);
}
void ProtXMLFile::matchModification_(const DoubleReal mass, const String & origin, String & modification_description)
{
DoubleReal mod_mass = mass - ResidueDB::getInstance()->getResidue(origin)->getMonoWeight(Residue::Internal);
vector<String> mods;
ModificationsDB::getInstance()->getModificationsByDiffMonoMass(mods, origin, mod_mass, 0.001);
if (mods.size() == 1)
{
modification_description = mods[0];
}
else
{
if (!mods.empty())
{
String mod_str = mods[0];
for (vector<String>::const_iterator mit = ++mods.begin(); mit != mods.end(); ++mit)
{
mod_str += ", " + *mit;
}
error(LOAD, "Modification '" + String(mass) + "' is not uniquely defined by the given data. Using '" + mods[0] + "' to represent any of '" + mod_str + "'!");
modification_description = mods[0];
}
}
}
} // namespace OpenMS
|