diff --git a/CMakeLists.txt b/CMakeLists.txt index 45df55f64e8d4786d5ed3490f8bf1bd520ac4edd..7911e0c5b4c01c1e456619060b5eb61ad755ca25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,7 +78,7 @@ if(NOT DISABLE_DOCUMENTATION) find_package(Sphinx ${PYTHON_VERSION} REQUIRED) set(PYTHON_DOC_URL "https://docs.python.org/${PYTHON_VERSION}") # set this to the URL corresponding to the version of OST you are using - set(OST_DOC_URL "http://www.openstructure.org/docs/1.3") + set(OST_DOC_URL "http://www.openstructure.org/docs/1.5") endif() find_package(OPENSTRUCTURE 1.4 REQUIRED COMPONENTS io mol seq seq_alg mol_alg conop) diff --git a/modelling/pymod/_closegaps.py b/modelling/pymod/_closegaps.py index 91886522a1a7f9d56d5de79cad9f6bc1fdc4bc7e..ab5441b4cb905758547f4b9d3e6876ca39a68d18 100644 --- a/modelling/pymod/_closegaps.py +++ b/modelling/pymod/_closegaps.py @@ -1251,9 +1251,8 @@ def CloseLargeDeletions(mhandle, scorer, structure_db, linker_length=8, # these methods will be exported into module -__all__ = ('SetupBackboneScorer', 'CloseSmallDeletions', 'MergeGapsByDistance', - 'FillLoopsByDatabase', 'FillLoopsByMonteCarlo', 'ModelTermini', - 'CloseLargeDeletions') +__all__ = ('CloseSmallDeletions', 'MergeGapsByDistance', 'FillLoopsByDatabase', + 'FillLoopsByMonteCarlo', 'ModelTermini', 'CloseLargeDeletions') # LocalWords: modeling stereochemically param idx init # LocalWords: py ost pylint modelling promod CloseSmallDeletions diff --git a/modelling/pymod/_molprobity.py b/modelling/pymod/_molprobity.py index 0bae610bb235f76d9ed1ab529885be6fa620a47b..d1fe777abd42ad7ecb87a8e123c277d3ac717e26 100644 --- a/modelling/pymod/_molprobity.py +++ b/modelling/pymod/_molprobity.py @@ -33,7 +33,7 @@ def RunMolProbity(target_pdb, molprobity_bin=None): - "Ramachandran outliers" (percentage [0,100] as :class:`float`) - "Ramachandran favored" (percentage [0,100] as :class:`float`) - "Rotamer outliers" (percentage [0,100] as :class:`float`) - - "C-beta deviations" (:class:`integer`) + - "C-beta deviations" (:class:`int`) - "Clashscore" (:class:`float`) - "MolProbity score" (:class:`float`) - "RMS(bonds)" (:class:`float`) diff --git a/modelling/pymod/_pipeline.py b/modelling/pymod/_pipeline.py index 0e0cd9cb41b6ab0ec31742c3d69b4a6c5544b598..779ecc7a786754a94823cf48690721da5101dcd8 100644 --- a/modelling/pymod/_pipeline.py +++ b/modelling/pymod/_pipeline.py @@ -271,7 +271,7 @@ def MinimizeModelEnergy(mhandle, max_iterations=12, max_iter_sd=20, :param extra_force_fields: Additional list of force fields to use (see :meth:`BuildFromRawModel`). - :type extra_force_fields: :class:`list` of :class:`ost.mol.Forcefield` + :type extra_force_fields: :class:`list` of :class:`ost.mol.mm.Forcefield` :return: The model including all oxygens as used in the minimizer. :rtype: :class:`Entity <ost.mol.EntityHandle>` @@ -433,7 +433,7 @@ def BuildFromRawModel(mhandle, scorer = None, use_amber_ff=False, extra_force_fi default force field. The force fields are tried in the order as given and ligands without an existing parametrization are skipped. - :type extra_force_fields: :class:`list` of :class:`ost.mol.Forcefield` + :type extra_force_fields: :class:`list` of :class:`ost.mol.mm.Forcefield` :return: Delivers the model as an |ost_s| entity. :rtype: :class:`Entity <ost.mol.EntityHandle>`