westpa 2022.6__tar.gz → 2022.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of westpa might be problematic. Click here for more details.
- {westpa-2022.6/src/westpa.egg-info → westpa-2022.7}/PKG-INFO +5 -6
- {westpa-2022.6 → westpa-2022.7}/README.rst +2 -2
- {westpa-2022.6 → westpa-2022.7}/pyproject.toml +6 -5
- {westpa-2022.6 → westpa-2022.7}/setup.py +2 -3
- {westpa-2022.6 → westpa-2022.7}/src/westpa/__init__.py +0 -4
- {westpa-2022.6 → westpa-2022.7}/src/westpa/_version.py +3 -3
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_multi_west.py +15 -10
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/_assign.c +413 -330
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/assign.py +3 -1
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/kinetics/_kinetics.c +440 -341
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/propagators/executable.py +9 -7
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/reweight/_reweight.c +417 -334
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/states.py +19 -3
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/yamlcfg.py +1 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/fasthist/_fasthist.c +489 -392
- {westpa-2022.6 → westpa-2022.7}/src/westpa/mclib/_mclib.c +403 -321
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/__init__.py +1 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/trajtree/_trajtree.c +433 -336
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/environment.py +0 -1
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/zeromq/node.py +0 -1
- {westpa-2022.6 → westpa-2022.7/src/westpa.egg-info}/PKG-INFO +5 -6
- {westpa-2022.6 → westpa-2022.7}/src/westpa.egg-info/SOURCES.txt +1 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa.egg-info/requires.txt +1 -6
- westpa-2022.7/tests/test_states.py +38 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_yamlfe.py +5 -0
- {westpa-2022.6 → westpa-2022.7}/AUTHORS +0 -0
- {westpa-2022.6 → westpa-2022.7}/LICENSE +0 -0
- {westpa-2022.6 → westpa-2022.7}/MANIFEST.in +0 -0
- {westpa-2022.6 → westpa-2022.7}/setup.cfg +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/analysis/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/analysis/core.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/analysis/statistics.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/analysis/trajectories.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/w_fork.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/w_init.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/w_run.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/w_states.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/w_succ.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/core/w_truncate.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/ploterr.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/plothist.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_assign.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_bins.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_crawl.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_direct.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_dumpsegs.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_eddist.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_fluxanl.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_ipa.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_kinavg.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_kinetics.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_ntop.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_pdist.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_postanalysis_matrix.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_postanalysis_reweight.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_red.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_reweight.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_select.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_stateprobs.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/cli/tools/w_trace.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/_rc.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/_assign.pyx +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/binless.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/binless_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/binless_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/bins.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/mab.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/mab_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/binning/mab_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/data_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/extloader.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/h5io.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/kinetics/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/kinetics/_kinetics.pyx +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/kinetics/events.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/kinetics/matrates.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/kinetics/rate_averaging.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/progress.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/propagators/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/reweight/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/reweight/_reweight.pyx +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/reweight/matrix.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/segment.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/sim_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/systems.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/textio.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/trajectory.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/we_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/core/wm_ops.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/fasthist/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/fasthist/__main__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/fasthist/_fasthist.pyx +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/mclib/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/mclib/__main__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/mclib/_mclib.pyx +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/atool.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/base_mixin.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/binning.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/data_reader.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/iter_range.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/kinetics.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/mcbs.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/output.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/plotting.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/trajwalker.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/aframe/transitions.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/cmds/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/cmds/w_ttimes.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/files.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/miscfn.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/stats/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/stats/accumulator.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/stats/edfs.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/oldtools/stats/mcbs.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/binning.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/core.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/data_reader.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/dtypes.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/iter_range.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/kinetics_tool.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/plot.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/progress.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/selected_segs.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/tools/wipi.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/trajtree/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/trajtree/_trajtree.pyx +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/trajtree/trajtree.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/adaptvoronoi/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/adaptvoronoi/adaptVor_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/hamsm_restarting/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/hamsm_restarting/example_overrides.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/hamsm_restarting/restart_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/stringmethod/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/stringmethod/fourier_fitting.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/stringmethod/string_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/stringmethod/string_method.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/weed/BinCluster.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/weed/ProbAdjustEquil.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/weed/UncertMath.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/weed/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/weed/weed_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/wess/ProbAdjust.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/wess/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/westext/wess/wess_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/core.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/mpi.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/processes.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/serial.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/threads.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/zeromq/__init__.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/zeromq/core.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/zeromq/work_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa/work_managers/zeromq/worker.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa.egg-info/dependency_links.txt +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa.egg-info/entry_points.txt +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa.egg-info/not-zip-safe +0 -0
- {westpa-2022.6 → westpa-2022.7}/src/westpa.egg-info/top_level.txt +0 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_binning.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_data_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_kinetics.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_loaders.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_sim_manager.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/tests/test_we_driver.py +0 -0
- {westpa-2022.6 → westpa-2022.7}/versioneer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: westpa
|
|
3
|
-
Version: 2022.
|
|
3
|
+
Version: 2022.7
|
|
4
4
|
Home-page: http://github.com/westpa/westpa
|
|
5
5
|
License: MIT
|
|
6
6
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Cython
|
|
|
14
14
|
Requires-Python: >=3.6
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
License-File: AUTHORS
|
|
17
|
-
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: numpy<2,>=1.16.0
|
|
18
18
|
Requires-Dist: scipy>=0.19.1
|
|
19
19
|
Requires-Dist: h5py>=2.10
|
|
20
20
|
Requires-Dist: mdtraj>=1.9.5
|
|
@@ -25,8 +25,7 @@ Requires-Dist: blessings
|
|
|
25
25
|
Requires-Dist: ipykernel
|
|
26
26
|
Requires-Dist: tqdm
|
|
27
27
|
Requires-Dist: pandas
|
|
28
|
-
Requires-Dist: tables
|
|
29
|
-
Requires-Dist: tables; python_version >= "3.9"
|
|
28
|
+
Requires-Dist: tables
|
|
30
29
|
Provides-Extra: tests
|
|
31
30
|
Requires-Dist: pytest; extra == "tests"
|
|
32
31
|
Requires-Dist: pytest-cov; extra == "tests"
|
|
@@ -49,7 +48,7 @@ WESTPA 2.0
|
|
|
49
48
|
|
|
50
49
|
|docs| |usersgroup| |develgroup|
|
|
51
50
|
|
|
52
|
-
.. |ghactions| image:: https://github.com/westpa/westpa/actions/workflows/test.yaml/badge.svg?branch=
|
|
51
|
+
.. |ghactions| image:: https://github.com/westpa/westpa/actions/workflows/test.yaml/badge.svg?branch=westpa2
|
|
53
52
|
:target: https://github.com/westpa/westpa/actions/workflows/test.yaml
|
|
54
53
|
:alt: GitHub Actions
|
|
55
54
|
|
|
@@ -143,7 +142,7 @@ To install from source (**not recommended**), start by downloading the correspon
|
|
|
143
142
|
|
|
144
143
|
.. _`releases page`: https://github.com/westpa/westpa/releases
|
|
145
144
|
.. _`Anaconda Python distribution`: https://www.anaconda.com/products/individual
|
|
146
|
-
.. _`wiki`: https://github.com/westpa/westpa/wiki/WESTPA
|
|
145
|
+
.. _`wiki`: https://github.com/westpa/westpa/wiki/Installing-WESTPA
|
|
147
146
|
|
|
148
147
|
---------------
|
|
149
148
|
Getting started
|
|
@@ -6,7 +6,7 @@ WESTPA 2.0
|
|
|
6
6
|
|
|
7
7
|
|docs| |usersgroup| |develgroup|
|
|
8
8
|
|
|
9
|
-
.. |ghactions| image:: https://github.com/westpa/westpa/actions/workflows/test.yaml/badge.svg?branch=
|
|
9
|
+
.. |ghactions| image:: https://github.com/westpa/westpa/actions/workflows/test.yaml/badge.svg?branch=westpa2
|
|
10
10
|
:target: https://github.com/westpa/westpa/actions/workflows/test.yaml
|
|
11
11
|
:alt: GitHub Actions
|
|
12
12
|
|
|
@@ -100,7 +100,7 @@ To install from source (**not recommended**), start by downloading the correspon
|
|
|
100
100
|
|
|
101
101
|
.. _`releases page`: https://github.com/westpa/westpa/releases
|
|
102
102
|
.. _`Anaconda Python distribution`: https://www.anaconda.com/products/individual
|
|
103
|
-
.. _`wiki`: https://github.com/westpa/westpa/wiki/WESTPA
|
|
103
|
+
.. _`wiki`: https://github.com/westpa/westpa/wiki/Installing-WESTPA
|
|
104
104
|
|
|
105
105
|
---------------
|
|
106
106
|
Getting started
|
|
@@ -3,12 +3,13 @@ build-backend = 'setuptools.build_meta:__legacy__'
|
|
|
3
3
|
# Minimum requirements for the build system to execute.
|
|
4
4
|
# See current numpy pinning in https://github.com/scipy/oldest-supported-numpy
|
|
5
5
|
requires = [
|
|
6
|
-
"setuptools>=40.8.0",
|
|
6
|
+
"setuptools >=40.8.0",
|
|
7
7
|
"wheel",
|
|
8
|
-
"Cython>=0.29.16; python_version >='3.10'", # Note: sync with setup.py
|
|
9
|
-
"Cython<3.0.3, >=0.29.16; python_version <
|
|
10
|
-
"oldest-supported-numpy",
|
|
11
|
-
"
|
|
8
|
+
"Cython >=0.29.16; python_version >='3.10'", # Note: sync with setup.py
|
|
9
|
+
"Cython <3.0.3, >=0.29.16; python_version <'3.10'",
|
|
10
|
+
"oldest-supported-numpy; python_version <'3.9'",
|
|
11
|
+
"numpy >=1.25.0, <2; python_version >='3.9'",
|
|
12
|
+
"scipy >=0.19.1",
|
|
12
13
|
"versioneer-518"
|
|
13
14
|
]
|
|
14
15
|
# Uncommenting this requires adding the top level of the repo to sys.path in the setup.py
|
|
@@ -109,7 +109,7 @@ CLASSIFIERS = [
|
|
|
109
109
|
]
|
|
110
110
|
|
|
111
111
|
INSTALL_REQUIRES = [
|
|
112
|
-
"numpy >= 1.16.0",
|
|
112
|
+
"numpy >= 1.16.0, <2",
|
|
113
113
|
"scipy >= 0.19.1",
|
|
114
114
|
"h5py >= 2.10",
|
|
115
115
|
"mdtraj >= 1.9.5",
|
|
@@ -120,8 +120,7 @@ INSTALL_REQUIRES = [
|
|
|
120
120
|
"ipykernel",
|
|
121
121
|
"tqdm",
|
|
122
122
|
"pandas",
|
|
123
|
-
"tables
|
|
124
|
-
"tables; python_version >= '3.9'",
|
|
123
|
+
"tables",
|
|
125
124
|
]
|
|
126
125
|
|
|
127
126
|
EXTRAS_REQUIRE = {
|
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "
|
|
11
|
+
"date": "2024-04-02T11:29:16-0400",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "2022.
|
|
14
|
+
"full-revisionid": "d48640fc3fff59f2f8470d6e7170a73f72fff5c6",
|
|
15
|
+
"version": "2022.07"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
|
@@ -159,13 +159,6 @@ Command-line options
|
|
|
159
159
|
except ValueError:
|
|
160
160
|
self.total_walkers[:] += west['summary'][:-1]['n_particles'][: len(self.total_walkers)]
|
|
161
161
|
|
|
162
|
-
class Segment:
|
|
163
|
-
def __init__(self, weight=0, iteration=0, simid=0, recycled_in=0):
|
|
164
|
-
self.weight = weight
|
|
165
|
-
self.iteration = iteration
|
|
166
|
-
self.simid = simid
|
|
167
|
-
self.recycled_in = recycled_in
|
|
168
|
-
|
|
169
162
|
def go(self):
|
|
170
163
|
pi = self.progress.indicator
|
|
171
164
|
self.istates = True # Assume serendipitously istates is same between runs...
|
|
@@ -174,7 +167,11 @@ Command-line options
|
|
|
174
167
|
self.open_files()
|
|
175
168
|
self.total_number_of_walkers()
|
|
176
169
|
if self.auxall is True:
|
|
177
|
-
|
|
170
|
+
try:
|
|
171
|
+
self.aux = list(self.westH5[1]['iterations/iter_00000001/auxdata'].keys())
|
|
172
|
+
except KeyError:
|
|
173
|
+
self.aux = None
|
|
174
|
+
log.warning('No auxdata. Proceeding forward without merging auxdata.')
|
|
178
175
|
# Create a giant WEST.h5 file, separating the individual walkers, and renormalizing the weights.
|
|
179
176
|
# It should then be compatible with existing toolsets.
|
|
180
177
|
# Isn't really going to start with auxdata, but we'll add it in.
|
|
@@ -240,7 +237,7 @@ Command-line options
|
|
|
240
237
|
self.futr_iter[i] = []
|
|
241
238
|
self.past_rm[i] = []
|
|
242
239
|
self.futr_rm[i] = []
|
|
243
|
-
|
|
240
|
+
pi.new_operation('Recreating...', self.niters)
|
|
244
241
|
# tracker = SummaryTracker()
|
|
245
242
|
# self.output_file.close()
|
|
246
243
|
|
|
@@ -262,12 +259,20 @@ Command-line options
|
|
|
262
259
|
if addition.dtype != istate_dtype:
|
|
263
260
|
addition = create_idtype_array(addition)
|
|
264
261
|
final_istate_index = np.append(final_istate_index, addition)
|
|
265
|
-
final_istate_pcoord = np.append(final_istate_pcoord, west['ibstates/0/istate_pcoord'][:])
|
|
262
|
+
final_istate_pcoord = np.append(final_istate_pcoord, west['ibstates/0/istate_pcoord'][:], axis=0)
|
|
266
263
|
|
|
267
264
|
# Saving them into self.output_file
|
|
268
265
|
self.output_file['ibstates/0'].create_dataset('istate_index', data=final_istate_index, dtype=istate_dtype)
|
|
269
266
|
self.output_file['ibstates/0'].create_dataset('istate_pcoord', data=final_istate_pcoord)
|
|
270
267
|
|
|
268
|
+
# Remaking the ibstates index link
|
|
269
|
+
master_index_row = self.output_file['ibstates/index'][0]
|
|
270
|
+
master_index_row['iter_valid'] = 0
|
|
271
|
+
master_index_row['n_bstates'] = len(self.output_file['ibstates/0/bstate_index'])
|
|
272
|
+
master_index_row['group_ref'] = self.output_file['ibstates/0'].ref
|
|
273
|
+
|
|
274
|
+
self.output_file['ibstates/index'][0] = master_index_row
|
|
275
|
+
|
|
271
276
|
for iter in range(self.niters):
|
|
272
277
|
# We have the following datasets in each iteration:
|
|
273
278
|
# ibstates, which can now be combined with --ibstates
|