Skip to content
Snippets Groups Projects
Unverified Commit abc34067 authored by Xavier Robin's avatar Xavier Robin
Browse files

Merge branch 'release-2.6.0' into develop

parents 4beb2cf9 2addee9b
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ PROJECT_LOGO = ...@@ -58,7 +58,7 @@ PROJECT_LOGO =
# entered, it will be relative to the location where doxygen was started. If # entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used. # left blank the current directory will be used.
OUTPUT_DIRECTORY = doc OUTPUT_DIRECTORY = @BUILD_DIR@/doc
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and # directories (in 2 levels) under the output directory of each output format and
......
...@@ -172,8 +172,8 @@ class Scorer: ...@@ -172,8 +172,8 @@ class Scorer:
assign_elem=True) assign_elem=True)
Molck(self._model, conop.GetDefaultLib(), molck_settings) Molck(self._model, conop.GetDefaultLib(), molck_settings)
Molck(self._target, conop.GetDefaultLib(), molck_settings) Molck(self._target, conop.GetDefaultLib(), molck_settings)
self._model = model.Select("peptide=True or nucleotide=True") self._model = self._model.Select("peptide=True or nucleotide=True")
self._target = target.Select("peptide=True or nucleotide=True") self._target = self._target.Select("peptide=True or nucleotide=True")
# catch models which have empty chain names # catch models which have empty chain names
for ch in self._model.chains: for ch in self._model.chains:
......
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