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
7be15ced
Commit
7be15ced
authored
Sep 29, 2021
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove bzip2 support
parent
d7688b21
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
7 deletions
+12
-7
CMakeLists.txt
+6
-1
changelog
+3
-0
doc/mkdssp.1
+2
-2
doc/mkdssp.html
+1
-1
src/mkdssp.cpp
+0
-3
No files found.
CMakeLists.txt
View file @
7be15ced
...
...
@@ -25,7 +25,7 @@
cmake_minimum_required
(
VERSION 3.15
)
# set the project name
project
(
mkdssp VERSION 4.0.
1
LANGUAGES CXX
)
project
(
mkdssp VERSION 4.0.
2
LANGUAGES CXX
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake"
)
...
...
@@ -144,6 +144,11 @@ set(CMAKE_THREAD_PREFER_PTHREAD)
set
(
THREADS_PREFER_PTHREAD_FLAG
)
find_package
(
Threads
)
set
(
Boost_DETAILED_FAILURE_MSG ON
)
if
(
NOT BUILD_SHARED_LIBS
)
set
(
Boost_USE_STATIC_LIBS ON
)
endif
()
find_package
(
cifpp 2.0.0 REQUIRED
)
if
(
USE_RSRC
)
...
...
changelog
View file @
7be15ced
Version 4.0.2
- Dropped support for reading bzip2 files directly. gzipped is still supported
Version 4.0.1
- Switch from GNU configure to cmake as the build environment
...
...
doc/mkdssp.1
View file @
7be15ced
.TH mkdssp 1 "2021-08-31" "version 4.0.
1
" "User Commands"
.TH mkdssp 1 "2021-08-31" "version 4.0.
2
" "User Commands"
.if n .ad l
.nh
.SH NAME
...
...
@@ -19,7 +19,7 @@ information in the _struct_conf category.
Since version 4.0 the mkdssp program also assigns PPII helices.
.SH OPTIONS
The input file can be either mmCIF or PDB format and the file may be
gzip
or bzip2
compressed. Note that input files must be formatted correctly.
gzip compressed. Note that input files must be formatted correctly.
E.g. PDB files must have a CRYST1 record. More info:
https://www.wwpdb.org/documentation/file-format-content/format33/sect8.html#CRYST1
.sp
...
...
doc/mkdssp.html
View file @
7be15ced
...
...
@@ -36,7 +36,7 @@ Since version 4.0 the mkdssp program also assigns PPII helices.
<H2>
OPTIONS
</H2>
The input file can be either mmCIF or PDB format and the file may be
gzip
or bzip2
compressed. Note that input files must be formatted correctly.
gzip compressed. Note that input files must be formatted correctly.
E.g. PDB files must have a CRYST1 record. More info:
<A
HREF=
"https://www.wwpdb.org/documentation/file-format-content/format33/sect8.html#CRYST1"
>
https://www.wwpdb.org/documentation/file-format-content/format33/sect8.html#CRYST1
</A>
<P>
...
...
src/mkdssp.cpp
View file @
7be15ced
...
...
@@ -43,7 +43,6 @@
#include <boost/program_options.hpp>
#include <boost/iostreams/filter/gzip.hpp>
#include <boost/iostreams/filter/bzip2.hpp>
#include <boost/iostreams/filtering_stream.hpp>
#include "dssp.hpp"
...
...
@@ -213,8 +212,6 @@ int d_main(int argc, const char* argv[])
if
(
output
.
extension
()
==
".gz"
)
out
.
push
(
io
::
gzip_compressor
());
else
if
(
output
.
extension
()
==
".bz2"
)
out
.
push
(
io
::
bzip2_compressor
());
out
.
push
(
of
);
...
...
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