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

display columns of present identification engines

parent 7ea294d8
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,21 @@ PeptideTableModel::setProteinMatch(ProteinMatch *p_protein_match)
// QModelIndex topLeft = createIndex(0,0);
// QModelIndex bottomRight = createIndex(rowCount(),columnCount());
std::set<PeptideListColumn> engine_columns;
for(auto &&peptide_match : _p_protein_match->getPeptideMatchList())
{
IdentificationEngine engine =
peptide_match.getPeptideEvidence()->getIdentificationEngine();
if(engine == IdentificationEngine::XTandem)
{
engine_columns.insert(PeptideListColumn::hyperscore);
}
else if(engine == IdentificationEngine::mascot)
{
engine_columns.insert(PeptideListColumn::mascot_score);
}
}
_p_peptide_list_window->resizeColumnsToContents();
// emit dataChanged(topLeft, topLeft);
// emit headerDataChanged(Qt::Horizontal, 0,3);
......
......@@ -78,6 +78,7 @@ PeptideTableProxyModel::filterAcceptsColumn(
}
return _column_display[source_column];
}
bool
PeptideTableProxyModel::filterAcceptsRow(int source_row,
const QModelIndex &source_parent) const
......@@ -326,7 +327,7 @@ QVariant
PeptideTableProxyModel::data(const QModelIndex &index, int role) const
{
//auto new_index = this->index(index.row(), mapToSource(index).column());
// auto new_index = this->index(index.row(), mapToSource(index).column());
return sourceModel()->data(mapToSource(index), role);
}
......
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