Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
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
libcifpp
Commits
46fe0d7c
Unverified
Commit
46fe0d7c
authored
Sep 21, 2021
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed cmake file
reduced verbosity for missing atoms update script, more cross platform
parent
0371cec4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
CMakeLists.txt
+1
-0
src/Structure.cpp
+1
-1
tools/update-dictionary-script.in
+1
-1
No files found.
CMakeLists.txt
View file @
46fe0d7c
...
@@ -88,6 +88,7 @@ if(EXISTS "${CCP4}")
...
@@ -88,6 +88,7 @@ if(EXISTS "${CCP4}")
option
(
RECREATE_SYMOP_DATA
"Recreate SymOp data table in case it is out of date"
ON
)
option
(
RECREATE_SYMOP_DATA
"Recreate SymOp data table in case it is out of date"
ON
)
endif
()
endif
()
else
()
else
()
set
(
RECREATE_SYMOP_DATA OFF
)
message
(
"Not trying to recreate SymOpTable_data.hpp since CCP4 is not defined"
)
message
(
"Not trying to recreate SymOpTable_data.hpp since CCP4 is not defined"
)
endif
()
endif
()
...
...
src/Structure.cpp
View file @
46fe0d7c
...
@@ -1053,7 +1053,7 @@ Atom Residue::atomByID(const std::string &atomID) const
...
@@ -1053,7 +1053,7 @@ Atom Residue::atomByID(const std::string &atomID) const
}
}
}
}
if
(
not
result
and
cif
::
VERBOSE
)
if
(
not
result
and
cif
::
VERBOSE
>
1
)
std
::
cerr
<<
"Atom with atom_id "
<<
atomID
<<
" not found in residue "
<<
mAsymID
<<
':'
<<
mSeqID
<<
std
::
endl
;
std
::
cerr
<<
"Atom with atom_id "
<<
atomID
<<
" not found in residue "
<<
mAsymID
<<
':'
<<
mSeqID
<<
std
::
endl
;
return
result
;
return
result
;
...
...
tools/update-dictionary-script.in
View file @
46fe0d7c
...
@@ -48,6 +48,6 @@ fetch_dictionary "@CIFPP_CACHE_DIR@/components.cif" "ftp://ftp.wwpdb.org/pub/pdb
...
@@ -48,6 +48,6 @@ fetch_dictionary "@CIFPP_CACHE_DIR@/components.cif" "ftp://ftp.wwpdb.org/pub/pdb
# notify subscribers
# notify subscribers
if
[
-d
/etc/libcifpp/cache-update.d
]
;
then
if
[
-d
/etc/libcifpp/cache-update.d
]
&&
[
-x
/bin/run-parts
]
;
then
run-parts
--arg
"@CIFPP_CACHE_DIR@"
--
/etc/libcifpp/cache-update.d
run-parts
--arg
"@CIFPP_CACHE_DIR@"
--
/etc/libcifpp/cache-update.d
fi
fi
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