Skip to content
Snippets Groups Projects
Commit 9a41f6d7 authored by Langella Olivier's avatar Langella Olivier
Browse files

separate peptide formula from modification string with empty space

parent 25e8442c
No related branches found
No related tags found
No related merge requests found
......@@ -71,8 +71,7 @@ MassChroQml::MassChroQml(const QString &out_filename,
: m_params(params)
{
//_p_digestion_pipeline = p_digestion_pipeline;
qDebug() << __FILE__ << " " << __FUNCTION__ << " " << __LINE__ << " "
<< (int)m_params.xic_extraction_method;
qDebug() << (int)m_params.xic_extraction_method;
//_mzidentml = "http://psidev.info/psi/pi/mzIdentML/1.1";
QString complete_out_filename = out_filename;
......@@ -523,7 +522,7 @@ MassChroQml::writePeptideListInGroup(const GroupingGroup *p_group)
mcq_peptide.id =
peptide_evidence->getGrpPeptideSp().get()->getGroupingId();
mcq_peptide.mods
<< QString("[%1]%2")
<< QString("[%1] %2")
.arg(peptide_evidence->getPeptideXtpSp().get()->getFormula(1))
.arg(
peptide_evidence->getPeptideXtpSp().get()->getModifString(true));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment