Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
i2MassChroQ
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PAPPSO
i2MassChroQ
Commits
2dc7e4c2
Commit
2dc7e4c2
authored
7 years ago
by
Olivier Langella
Browse files
Options
Downloads
Patches
Plain Diff
new PtmIsland object
parent
37edb00e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/CMakeLists.txt
+0
-1
0 additions, 1 deletion
src/CMakeLists.txt
src/grouping/ptm/ptmisland.cpp
+40
-0
40 additions, 0 deletions
src/grouping/ptm/ptmisland.cpp
src/grouping/ptm/ptmisland.h
+48
-0
48 additions, 0 deletions
src/grouping/ptm/ptmisland.h
with
88 additions
and
1 deletion
src/CMakeLists.txt
+
0
−
1
View file @
2dc7e4c2
...
...
@@ -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)
This diff is collapsed.
Click to expand it.
src/grouping/ptm/ptmisland.cpp
0 → 100644
+
40
−
0
View file @
2dc7e4c2
/**
* \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
()
{
}
This diff is collapsed.
Click to expand it.
src/grouping/ptm/ptmisland.h
0 → 100644
+
48
−
0
View file @
2dc7e4c2
/**
* \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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment