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

column mascot ion score added

parent a089f042
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ int PeptideTableModel::rowCount(const QModelIndex &parent ) const {
return 0;
}
int PeptideTableModel::columnCount(const QModelIndex &parent ) const {
return 18;
return 19;
}
QVariant PeptideTableModel::headerData(int section, Qt::Orientation orientation, int role) const
{
......@@ -191,6 +191,9 @@ QVariant PeptideTableModel::data(const QModelIndex &index, int role ) const {
case (std::int8_t)PeptideListColumn::hyperscore:
return _p_protein_match->getPeptideMatchList().at(row).getPeptideEvidence()->getParam(PeptideEvidenceParam::tandem_hyperscore);
break;
case (std::int8_t)PeptideListColumn::mascot_score:
return _p_protein_match->getPeptideMatchList().at(row).getPeptideEvidence()->getParam(PeptideEvidenceParam::mascot_score);
break;
}
}
return QString("Row%1, Column%2")
......@@ -280,6 +283,9 @@ const QString PeptideTableModel::getTitle(std::int8_t column) {
break;
case (std::int8_t) PeptideListColumn::hyperscore:
return "hyperscore";
break;
case (std::int8_t) PeptideListColumn::mascot_score:
return "mascot score";
}
return "";
}
......@@ -343,6 +349,9 @@ const QString PeptideTableModel::getDescription(std::int8_t column) {
break;
case (std::int8_t) PeptideListColumn::hyperscore:
return "X!Tandem hyperscore";
break;
case (std::int8_t) PeptideListColumn::mascot_score:
return "Mascot ion score";
}
return "";
......
......@@ -49,7 +49,8 @@ enum class PeptideListColumn: std::int8_t {
Evalue=14,
theoretical_mhplus=15,
delta_mhplus=16,
hyperscore=17
hyperscore=17,
mascot_score=18
};
class PeptideListWindow;
......
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