Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dssp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
dssp
Commits
6cb8c3e9
Unverified
Commit
6cb8c3e9
authored
Oct 25, 2022
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added gxrio as submodule
parent
f75d4584
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
2 deletions
+15
-2
.gitmodules
+3
-0
CMakeLists.txt
+10
-1
gxrio
+1
-0
src/dssp_wrapper.cpp
+1
-1
No files found.
.gitmodules
View file @
6cb8c3e9
...
...
@@ -7,3 +7,6 @@
[submodule "libcifpp"]
path = libcifpp
url = https://github.com/PDB-REDO/libcifpp.git
[submodule "gxrio"]
path = gxrio
url = https://github.com/mhekkel/gxrio.git
CMakeLists.txt
View file @
6cb8c3e9
...
...
@@ -103,13 +103,22 @@ set(CMAKE_THREAD_PREFER_PTHREAD)
set
(
THREADS_PREFER_PTHREAD_FLAG
)
find_package
(
Threads
)
find_package
(
gxrio QUIET
)
if
(
NOT gxrio_FOUND
)
add_git_submodule
(
gxrio EXCLUDE_FROM_ALL
)
endif
()
find_package
(
cifpp 5.0.0 QUIET
)
if
(
NOT cifpp_FOUND
)
add_git_submodule
(
libcifpp EXCLUDE_FROM_ALL
)
endif
()
add_git_submodule
(
date EXCLUDE_FROM_ALL
)
add_git_submodule
(
libconfig EXCLUDE_FROM_ALL
)
find_package
(
libconfig QUIET
)
if
(
NOT libconfig_FOUND
)
add_git_submodule
(
libconfig EXCLUDE_FROM_ALL
)
endif
()
# The DSSP code is in a separate library, optionally to be used by others
add_library
(
dssp_library OBJECT
${
PROJECT_SOURCE_DIR
}
/src/DSSP.cpp
)
...
...
gxrio
@
a7bb5b5c
Subproject commit a7bb5b5c4b6612215a78267b89e05c39a45429b5
src/dssp_wrapper.cpp
View file @
6cb8c3e9
...
...
@@ -64,7 +64,7 @@ std::string ResidueToDSSPLine(const dssp::DSSP::residue_info &info)
code
=
'a'
+
((
ssbridgenr
-
1
)
%
26
);
}
char
ss
;
char
ss
=
' '
;
switch
(
info
.
type
())
{
case
dssp
:
:
structure_type
::
Alphahelix
:
ss
=
'H'
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment