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

write protein coverage percent in ODS

parent def77197
No related branches found
No related tags found
No related merge requests found
......@@ -349,10 +349,10 @@ const QString PeptideTableModel::getDescription(std::int8_t column) {
return "peptide length";
break;
case (std::int8_t) PeptideListColumn::used:
return "used";
return "number of subgroups in which this peptide is used";
break;
case (std::int8_t) PeptideListColumn::subgroups:
return "subgroups";
return "list of subgroups in which this peptide is used";
break;
case (std::int8_t) PeptideListColumn::Evalue:
return "peptide Evalue";
......
......@@ -149,7 +149,7 @@ void ProteinSheet::writeOneProtein(const GroupingGroup * p_group, const ProteinM
_p_writer->writeCell(p_protein->getDescription());
_p_writer->writeCell(p_protein_match->getLogEvalue());
// _p_writer->writeCell("Coverage");
_p_writer->writeCell(p_protein_match->getCoverage());
_p_writer->writeCellPercentage(p_protein_match->getCoverage());
// _p_writer->writeCell("MW");
_p_writer->writeCell(p_protein->getMass());
_p_writer->writeCell(p_protein->size());
......
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