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

new PtmIsland object

parent 37edb00e
No related branches found
No related tags found
No related merge requests found
......@@ -190,4 +190,3 @@ TARGET_LINK_LIBRARIES(xtpcpp ${PAPPSOMSPP_QT4_LIBRARY} ${Pwiz_LIBRARY} ${ODSSTRE
INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/xtpcpp DESTINATION bin)
#configure_file (${CMAKE_SOURCE_DIR}/templates/share/applications/pt-peptideviewer.desktop.cmake ${CMAKE_BINARY_DIR}/templates/share/applications/pt-peptideviewer.desktop)
/**
* \file grouping/ptm/ptmisland.cpp
* \date 24/5/2017
* \author Olivier Langella
* \brief store overlapping peptides containing PTMs
*/
/*******************************************************************************
* Copyright (c) 2017 Olivier Langella <olivier.langella@u-psud.fr>.
*
* This file is part of XTPcpp.
*
* XTPcpp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* XTPcpp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XTPcpp. If not, see <http://www.gnu.org/licenses/>.
*
* Contributors:
* Olivier Langella <olivier.langella@u-psud.fr> - initial API and implementation
******************************************************************************/
#include "ptmisland.h"
PtmIsland::PtmIsland()
{
}
PtmIsland::~PtmIsland()
{
}
/**
* \file grouping/ptm/ptmisland.h
* \date 24/5/2017
* \author Olivier Langella
* \brief store overlapping peptides containing PTMs
*/
/*******************************************************************************
* Copyright (c) 2017 Olivier Langella <olivier.langella@u-psud.fr>.
*
* This file is part of XTPcpp.
*
* XTPcpp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* XTPcpp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XTPcpp. If not, see <http://www.gnu.org/licenses/>.
*
* Contributors:
* Olivier Langella <olivier.langella@u-psud.fr> - initial API and implementation
******************************************************************************/
#ifndef PTMISLAND_H
#define PTMISLAND_H
#include "../../core/proteinmatch.h"
#include "../../core/peptidematch.h"
class PtmIsland
{
public:
PtmIsland();
~PtmIsland();
private:
ProteinMatch * _protein_match_p;
std::vector<PeptideMatch *> _peptide_match_list;
unsigned int _group_number; //group together different ptmislands linked by a common protein
unsigned int _subgroup_number; //group together proteins that share the same ptmisland
};
#endif // PTMISLAND_H
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