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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
// --------------------------------------------------------------------------
// 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: Andreas Bertsch $
// $Authors: Andreas Bertsch $
// --------------------------------------------------------------------------
#include <OpenMS/FORMAT/XTandemXMLFile.h>
#include <OpenMS/SYSTEM/File.h>
#include <OpenMS/CHEMISTRY/ModificationsDB.h>
#include <OpenMS/METADATA/ProteinIdentification.h>
using namespace xercesc;
using namespace std;
namespace OpenMS
{
XTandemXMLFile::XTandemXMLFile() :
XMLHandler("", 1.1),
XMLFile(),
actual_start_(0),
actual_stop_(0)
{
}
XTandemXMLFile::~XTandemXMLFile()
{
}
void XTandemXMLFile::setModificationDefinitionsSet(const ModificationDefinitionsSet & rhs)
{
mod_def_set_ = rhs;
}
void XTandemXMLFile::load(const String & filename, ProteinIdentification & protein_identification, vector<PeptideIdentification> & peptide_ids)
{
//File name for error message in XMLHandler
file_ = filename;
enforceEncoding_("ISO-8859-1");
parse_(filename, this);
DateTime now = DateTime::now();
String date_string = now.getDate();
String identifier("XTandem_" + date_string);
//vector<String> accessions;
// convert id -> peptide_hits into peptide hits list
//vector<PeptideIdentification> peptide_identifications;
PeptideIdentification().metaRegistry().registerName("spectrum_id", "the id of the spectrum counting from 1");
for (map<UInt, vector<PeptideHit> >::const_iterator it = peptide_hits_.begin(); it != peptide_hits_.end(); ++it)
{
// reduce the hits with the same sequence to one PeptideHit
map<String, vector<PeptideHit> > seq_to_hits;
for (vector<PeptideHit>::const_iterator it1 = it->second.begin(); it1 != it->second.end(); ++it1)
{
seq_to_hits[it1->getSequence().toString()].push_back(*it1);
}
PeptideIdentification id;
// if (descriptions_.find(it->first) != descriptions_.end())
// {
// id.setMetaValue("Description", descriptions_[it->first]);
// }
for (map<String, vector<PeptideHit> >::const_iterator it1 = seq_to_hits.begin(); it1 != seq_to_hits.end(); ++it1)
{
if (it1->second.size() > 0)
{
// copy the accession of all to the first hit
PeptideHit hit = *it1->second.begin();
vector<String> accessions;
for (vector<PeptideHit>::const_iterator it2 = it1->second.begin(); it2 != it1->second.end(); ++it2)
{
for (vector<String>::const_iterator it3 = it2->getProteinAccessions().begin(); it3 != it2->getProteinAccessions().end(); ++it3)
{
String new_acc = protein_hits_[*it3].getAccession();
if (find(accessions.begin(), accessions.end(), new_acc) == accessions.end())
{
accessions.push_back(new_acc);
}
//accessions.push_back(*it3);
}
}
hit.setProteinAccessions(accessions);
id.insertHit(hit);
}
}
id.setScoreType("XTandem");
id.setHigherScoreBetter(true);
id.setIdentifier(identifier);
id.assignRanks();
id.setMetaValue("spectrum_id", it->first);
peptide_ids.push_back(id);
}
//sort(accessions.begin(), accessions.end());
//vector<String>::const_iterator end_unique = unique(accessions.begin(), accessions.end());
for (Map<String, ProteinHit>::const_iterator pit = protein_hits_.begin(); pit != protein_hits_.end(); ++pit)
{
protein_identification.insertHit(pit->second);
}
// E-values
protein_identification.setHigherScoreBetter(false);
protein_identification.assignRanks();
protein_identification.setScoreType("XTandem");
protein_identification.setSearchEngine("XTandem");
// TODO version of XTandem ???? is not available from performance param section of outputfile (to be parsed)
// TODO Date of search, dito
protein_identification.setDateTime(now);
protein_identification.setIdentifier(identifier);
// TODO search parameters are also available
}
void XTandemXMLFile::startElement(const XMLCh * const /*uri*/, const XMLCh * const /*local_name*/, const XMLCh * const qname, const Attributes & attributes)
{
tag_ = String(sm_.convert(qname));
if (tag_ == "domain")
{
PeptideHit hit;
hit.metaRegistry().registerName("E-Value", "E-Value of Hit");
// get hyperscore
double hyperscore(String(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("hyperscore"))))).toDouble());
hit.setScore(hyperscore);
// get sequence of peptide
String seq(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("seq")))));
hit.setSequence(seq);
// get amino acid before
String pre(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("pre")))));
if (!pre.empty())
{
hit.setAABefore(pre[pre.size() - 1]);
}
// get amino acid after
String post(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("post")))));
if (!post.empty())
{
hit.setAAAfter(post[0]);
}
// get expectation value
double expect(String(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("expect"))))).toDouble());
hit.setMetaValue("E-Value", expect);
// get precursor m/z
//double mh(String(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("mh"))))).toDouble());
//hit.setMetaValue("MZ", mh); // not needed, set by the XTandem Adapter itself
// spectrum id
String id_string(sm_.convert(attributes.getValue(attributes.getIndex(sm_.convert("id")))));
vector<String> split;
id_string.split('.', split);
UInt id(split[0].toInt());
actual_id_ = id;
String tmp;
optionalAttributeAsString_(tmp, attributes, "start");
actual_start_ = tmp.toInt();
tmp = "";
optionalAttributeAsString_(tmp, attributes, "end");
actual_stop_ = tmp.toInt();
// add the actual protein accession
hit.addProteinAccession(actual_protein_id_);
hit.setCharge(actual_charge_);
peptide_hits_[id].push_back(hit);
return;
}
if (tag_ == "aa")
{
// e.g. <aa type="S" at="2" modified="42.0106" />
String type, at, modified;
optionalAttributeAsString_(type, attributes, "type");
optionalAttributeAsString_(at, attributes, "at");
optionalAttributeAsString_(modified, attributes, "modified");
AASequence aa_seq = peptide_hits_[actual_id_].back().getSequence();
UInt mod_pos = (UInt)at.toInt() - actual_start_;
// search mod
vector<String> possible_mods, possible_mass_mods;
// try to find a mod in the given mods that fits
if (mod_pos == 0) // can (!) be a N-terminal mod
{
ModificationsDB::getInstance()->getTerminalModificationsByDiffMonoMass(possible_mass_mods, modified.toDouble(), 0.01, ResidueModification::N_TERM);
}
else if (mod_pos == aa_seq.size())
{
ModificationsDB::getInstance()->getTerminalModificationsByDiffMonoMass(possible_mass_mods, modified.toDouble(), 0.01, ResidueModification::C_TERM);
}
// if not found a terminal mod, try normal one
if (possible_mass_mods.empty())
{
ModificationsDB::getInstance()->getModificationsByDiffMonoMass(possible_mass_mods, type, modified.toDouble(), 0.01);
}
// cerr << "Possible mods of type='" << type << "', weight='" << modified.toDouble() << "', mod_pos='" << mod_pos << "'" << "\n";
// for (vector<String>::const_iterator it = possible_mass_mods.begin(); it != possible_mass_mods.end(); ++it)
// {
// cerr << *it << " " << ModificationsDB::getInstance()->getModification(*it).getTermSpecificity() << "\n";
// }
set<String> mod_names = mod_def_set_.getModificationNames();
// throw out any of the modifications that are not contained in the def set (throws out also s.th. like "Carbamidomethyl (N-term)"
for (vector<String>::const_iterator it = possible_mass_mods.begin(); it != possible_mass_mods.end(); ++it)
{
if (mod_names.find(*it) != mod_names.end())
{
possible_mods.push_back(*it);
}
}
// cerr << "Possible mods (#=" << possible_mods.size() << "): " << "\n";
// for (vector<String>::const_iterator it = possible_mods.begin(); it != possible_mods.end(); ++it)
// {
// cerr << *it << "\n";
// }
// maybe we missed the real modification, even it is not terminal
if (possible_mods.empty() && mod_pos == 0)
{
vector<String> new_possible_mass_mods;
ModificationsDB::getInstance()->getModificationsByDiffMonoMass(new_possible_mass_mods, type, modified.toDouble(), 0.01);
// now try to find this in the definitions which are set
for (vector<String>::const_iterator it = new_possible_mass_mods.begin(); it != new_possible_mass_mods.end(); ++it)
{
if (mod_names.find(*it) != mod_names.end())
{
possible_mods.push_back(*it);
}
}
}
// use all possible mass mods, because the modification was not predefined
if (possible_mods.empty())
{
possible_mods = possible_mass_mods;
}
if (possible_mods.empty())
{
error(LOAD, String("No modification found which fits residue '") + type + "' with mass '" + modified + "'!");
}
else
{
if (possible_mods.size() > 1)
{
// if available use a specific one, except if the modification is terminal
set<String> specific_ones;
for (vector<String>::const_iterator it = possible_mods.begin(); it != possible_mods.end(); ++it)
{
String origin = ModificationsDB::getInstance()->getModification(*it).getOrigin();
ResidueModification::Term_Specificity term_spec = ModificationsDB::getInstance()->getModification(*it).getTermSpecificity();
if (origin == type && !(term_spec == ResidueModification::N_TERM || term_spec == ResidueModification::C_TERM))
{
specific_ones.insert(*it);
}
}
if (specific_ones.size() == 1)
{
possible_mods.clear();
possible_mods.push_back(*specific_ones.begin());
}
else
{
if (specific_ones.empty())
{
// maybe there are terminal modifications but none of them has been selected
// search unspecific but terminal residues
vector<String> new_possible_mods;
for (vector<String>::const_iterator it = possible_mods.begin(); it != possible_mods.end(); ++it)
{
String origin = ModificationsDB::getInstance()->getModification(*it).getOrigin();
ResidueModification::Term_Specificity term_spec = ModificationsDB::getInstance()->getModification(*it).getTermSpecificity();
//cerr << "Testing: " << *it << ", origin='" << origin << "', term_spec='" << term_spec << "'" << "\n";
if ((origin == "N-term" || origin == "C-term") && (term_spec == ResidueModification::N_TERM || term_spec == ResidueModification::C_TERM))
{
//cerr << "Adding1: '" << *it << "', origin='" << origin << "' term_spec='" << term_spec << "'" << "\n";
new_possible_mods.push_back(*it);
}
}
if (new_possible_mods.empty())
{
// if we haven't found a generic terminal modification, we search for a specific terminal mods which fits
for (vector<String>::const_iterator it = possible_mods.begin(); it != possible_mods.end(); ++it)
{
String origin = ModificationsDB::getInstance()->getModification(*it).getOrigin();
ResidueModification::Term_Specificity term_spec = ModificationsDB::getInstance()->getModification(*it).getTermSpecificity();
if (origin == type && (term_spec == ResidueModification::N_TERM || term_spec == ResidueModification::C_TERM))
{
//cerr << "Adding2: '" << *it << "', origin='" << origin << "' term_spec='" << term_spec << "'" << "\n";
new_possible_mods.push_back(*it);
}
}
}
if (!new_possible_mods.empty())
{
possible_mods = new_possible_mods;
}
}
else
{
// also haven't found a non-specific terminal modification
//if (specific_ones.empty())
//{
// put the specific ones in front of the list
vector<String> new_possible_mods;
for (set<String>::const_iterator it = specific_ones.begin(); it != specific_ones.end(); ++it)
{
new_possible_mods.push_back(*it);
}
for (vector<String>::const_iterator it = possible_mods.begin(); it != possible_mods.end(); ++it)
{
if (specific_ones.find(*it) == specific_ones.end())
{
new_possible_mods.push_back(*it);
}
}
possible_mods = new_possible_mods;
// }
// else
// {
// for (set<String>::const_iterator it = specific_ones.begin(); it != specific_ones.end(); ++it)
// {
// possible_mods.push_back(*it);
// }
}
}
if (possible_mods.size() > 1)
{
String error_string = String("More than one modification found which fits residue '") + type + "' with mass '" + modified + "': ";
String possbile_mods;
possbile_mods.concatenate(possible_mods.begin(), possible_mods.end(), ',');
error_string += possbile_mods + ". Using first hit: '" + *possible_mods.begin() + "'.";
error(LOAD, error_string);
}
}
if (ModificationsDB::getInstance()->getModification(*possible_mods.begin()).getTermSpecificity() == ResidueModification::N_TERM && mod_pos == 0)
{
aa_seq.setNTerminalModification(*possible_mods.begin());
}
else
{
aa_seq.setModification(mod_pos, *possible_mods.begin());
}
}
peptide_hits_[actual_id_].back().setSequence(aa_seq);
return;
}
if (tag_ == "group")
{
Int index = attributes.getIndex(sm_.convert("z"));
if (index >= 0)
{
actual_charge_ = String(sm_.convert(attributes.getValue(index))).toInt();
}
return;
}
if (tag_ == "note")
{
String label;
optionalAttributeAsString_(label, attributes, "label");
if (label == "description")
{
is_description_ = true;
}
}
if (tag_ == "protein")
{
//protein_open_ = true;
ProteinHit hit;
String uid;
optionalAttributeAsString_(uid, attributes, "uid");
actual_protein_id_ = uid;
if (!protein_hits_.has(uid))
{
double score(0);
optionalAttributeAsDouble_(score, attributes, "expect");
hit.setScore(score);
protein_hits_[uid] = hit;
}
return;
}
}
void XTandemXMLFile::endElement(const XMLCh * const /*uri*/, const XMLCh * const /*local_name*/, const XMLCh * const qname)
{
tag_ = String(sm_.convert(qname));
return;
}
void XTandemXMLFile::characters(const XMLCh * const chars, const XMLSize_t /*length*/)
{
if (tag_ == "note" && is_description_)
{
is_description_ = false;
protein_hits_[actual_protein_id_].setAccession(((String) sm_.convert(chars)).trim());
}
}
} // namespace OpenMS
|