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

protein id fixed

parent b1fc136e
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ const QStringList GroupingGroup::getSubgroupIdList(const PeptideMatch * p_peptid
QStringList sg_str_list;
for (unsigned int sgnum : subgroup_list) {
sg_str_list << QString("%1%2").arg(pappso::Utils::getLexicalOrderedString(_group_number)).arg(pappso::Utils::getLexicalOrderedString(sgnum));
sg_str_list << QString("%1.%2").arg(pappso::Utils::getLexicalOrderedString(_group_number)).arg(pappso::Utils::getLexicalOrderedString(sgnum));
}
return sg_str_list;
......@@ -139,7 +139,7 @@ std::size_t GroupingGroup::countSpecificSequence(const ProteinMatch * p_protein_
QString GroupingGroup::getProteinGroupingIdOfSubgroup(unsigned int subgroup_number) const {
return QString("%1%2a1").arg(pappso::Utils::getLexicalOrderedString(_group_number)).arg(pappso::Utils::getLexicalOrderedString(subgroup_number));
return QString("%1.%2.a1").arg(pappso::Utils::getLexicalOrderedString(_group_number)).arg(pappso::Utils::getLexicalOrderedString(subgroup_number));
}
void GroupingGroup::add(const ProteinMatch * p_protein_match) {
......
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