westpa 2022.10__cp39-cp39-macosx_10_9_x86_64.whl → 2022.11__cp39-cp39-macosx_10_9_x86_64.whl
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.
- westpa/_version.py +3 -3
- westpa/cli/core/w_truncate.py +15 -6
- westpa/core/binning/_assign.cpython-39-darwin.so +0 -0
- westpa/core/kinetics/_kinetics.cpython-39-darwin.so +0 -0
- westpa/core/propagators/executable.py +1 -1
- westpa/core/reweight/_reweight.cpython-39-darwin.so +0 -0
- westpa/fasthist/_fasthist.cpython-39-darwin.so +0 -0
- westpa/mclib/_mclib.cpython-39-darwin.so +0 -0
- westpa/oldtools/aframe/plotting.py +4 -4
- westpa/trajtree/_trajtree.cpython-39-darwin.so +0 -0
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/METADATA +1 -1
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/RECORD +17 -17
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/WHEEL +1 -1
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/AUTHORS +0 -0
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/LICENSE +0 -0
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/entry_points.txt +0 -0
- {westpa-2022.10.dist-info → westpa-2022.11.dist-info}/top_level.txt +0 -0
westpa/_version.py
CHANGED
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2024-
|
|
11
|
+
"date": "2024-07-02T19:19:53-0400",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "2022.
|
|
14
|
+
"full-revisionid": "a2d390ea5ff8681246351e21a0bdeaeedc00f366",
|
|
15
|
+
"version": "2022.11"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
westpa/cli/core/w_truncate.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import argparse
|
|
2
1
|
import logging
|
|
2
|
+
from argparse import ArgumentParser
|
|
3
3
|
|
|
4
4
|
import westpa
|
|
5
5
|
|
|
@@ -14,7 +14,7 @@ traj_segs directory) is deleted or moved for the corresponding iterations.
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
def entry_point():
|
|
17
|
-
parser =
|
|
17
|
+
parser = ArgumentParser(
|
|
18
18
|
'w_truncate',
|
|
19
19
|
description='''\
|
|
20
20
|
Remove all iterations after a certain point in a WESTPA simulation.
|
|
@@ -30,7 +30,7 @@ def entry_point():
|
|
|
30
30
|
metavar='WEST_H5FILE',
|
|
31
31
|
help='''Take WEST data from WEST_H5FILE (default: read from the HDF5 file specified in west.cfg).''',
|
|
32
32
|
)
|
|
33
|
-
parser.add_argument('-n', '--iter', dest='n_iter', type=int, help='Truncate this iteration and those following.')
|
|
33
|
+
parser.add_argument('-n', '--iter', dest='n_iter', type=int, default=0, help='Truncate this iteration and those following.')
|
|
34
34
|
|
|
35
35
|
args = parser.parse_args()
|
|
36
36
|
westpa.rc.process_args(args, config_required=False)
|
|
@@ -40,7 +40,15 @@ def entry_point():
|
|
|
40
40
|
|
|
41
41
|
dm.open_backing()
|
|
42
42
|
# max_iter = dm.current_iteration
|
|
43
|
-
|
|
43
|
+
|
|
44
|
+
if args.n_iter > dm.current_iteration:
|
|
45
|
+
parser.error(
|
|
46
|
+
'Provided iteration {} > current iteration {} of the {} HDF5 file. Exiting without doing anything.'.format(
|
|
47
|
+
args.n_iter, dm.current_iteration, dm.we_h5filename.split('/')[-1]
|
|
48
|
+
)
|
|
49
|
+
)
|
|
50
|
+
else:
|
|
51
|
+
n_iter = args.n_iter if args.n_iter > 0 else dm.current_iteration
|
|
44
52
|
|
|
45
53
|
for i in range(n_iter, dm.current_iteration + 1):
|
|
46
54
|
dm.del_iter_group(i)
|
|
@@ -48,8 +56,9 @@ def entry_point():
|
|
|
48
56
|
dm.del_iter_summary(n_iter)
|
|
49
57
|
dm.current_iteration = n_iter - 1
|
|
50
58
|
|
|
51
|
-
|
|
52
|
-
|
|
59
|
+
westpa.rc.pstatus('simulation data truncated after iteration {}'.format(dm.current_iteration))
|
|
60
|
+
westpa.rc.pstatus('\n' + warning_string)
|
|
61
|
+
westpa.rc.pflush()
|
|
53
62
|
|
|
54
63
|
dm.flush_backing()
|
|
55
64
|
dm.close_backing()
|
|
Binary file
|
|
Binary file
|
|
@@ -278,7 +278,7 @@ class ExecutablePropagator(WESTPropagator):
|
|
|
278
278
|
self.data_info['log'] = {'name': 'seglog', 'loader': seglog_loader, 'enabled': store_h5, 'filename': None, 'dir': False}
|
|
279
279
|
|
|
280
280
|
# Grab config from west.executable.datasets, else fallback to west.data.datasets.
|
|
281
|
-
dataset_configs = config.get(["west", "executable", "datasets"]
|
|
281
|
+
dataset_configs = config.get(["west", "executable", "datasets"]) or config.get(['west', 'data', 'datasets'], {})
|
|
282
282
|
for dsinfo in dataset_configs:
|
|
283
283
|
try:
|
|
284
284
|
dsname = dsinfo['name']
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -66,10 +66,10 @@ else:
|
|
|
66
66
|
cm_pdr = matplotlib.colors.LinearSegmentedColormap('pdr', _pdr_data, 2048)
|
|
67
67
|
cm_pdr_r = cm_pdr.reversed()
|
|
68
68
|
|
|
69
|
-
matplotlib.
|
|
70
|
-
matplotlib.
|
|
71
|
-
matplotlib.
|
|
72
|
-
matplotlib.
|
|
69
|
+
matplotlib.colormaps.register(cmap=cm_pdr, name='pdr')
|
|
70
|
+
matplotlib.colormaps.register(cmap=cm_pdr_r, name='pdr_r')
|
|
71
|
+
matplotlib.colormaps.register(cmap=cm_hovmol, name='hovmol')
|
|
72
|
+
matplotlib.colormaps.register(cmap=cm_hovmol_r, name='hovmol_r')
|
|
73
73
|
|
|
74
74
|
del cmap_data
|
|
75
75
|
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: westpa
|
|
3
|
-
Version: 2022.
|
|
3
|
+
Version: 2022.11
|
|
4
4
|
Summary: WESTPA is a package for constructing and running stochastic simulations using the "weighted ensemble" approach of Huber and Kim (1996).
|
|
5
5
|
Home-page: http://github.com/westpa/westpa
|
|
6
6
|
License: MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
westpa/_version.py,sha256=
|
|
1
|
+
westpa/_version.py,sha256=tWQgWvkf-J3h5mOX5Li8wSan3MM-AjT2sxSxH6w8Obk,499
|
|
2
2
|
westpa/__init__.py,sha256=xyNfYIcP2ncBLu_foO1NKmJrQh8-uYdwvMuM0HsOG1M,329
|
|
3
|
-
westpa/fasthist/_fasthist.cpython-39-darwin.so,sha256=
|
|
3
|
+
westpa/fasthist/_fasthist.cpython-39-darwin.so,sha256=iN2_0wtUogBdrWVS4PcpXq5FJVopE_iKgCy2lH8xJGc,246200
|
|
4
4
|
westpa/fasthist/__init__.py,sha256=oWj0gKEkKfHjGHwkzmpgAxDz55h2ze_sqQVzWSsOP6s,1071
|
|
5
5
|
westpa/fasthist/__main__.py,sha256=7XCBZvrKbBG3KEuQMpZD0jXa3vVMEVfZJTG8MmdbsrM,3902
|
|
6
6
|
westpa/westext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -47,7 +47,7 @@ westpa/core/progress.py,sha256=tEDDn-JPY6ZNzYqyrdgA7peo7pDu8kOMvqfyiHWUgps,6753
|
|
|
47
47
|
westpa/core/data_manager.py,sha256=fHgdILXZoiDyrDv34DjZqS5YyqqG6bbnUBLouqYwOFQ,71924
|
|
48
48
|
westpa/core/states.py,sha256=umsdgSrYjt2vjw-1kQeiILWmureOBmBaOgg0nQxUVmA,13318
|
|
49
49
|
westpa/core/yamlcfg.py,sha256=B78OEr1n_sIkW6kDzl3FO63tiugaT-1VutAgLxU0i7A,12696
|
|
50
|
-
westpa/core/kinetics/_kinetics.cpython-39-darwin.so,sha256=
|
|
50
|
+
westpa/core/kinetics/_kinetics.cpython-39-darwin.so,sha256=PnFlu_YJY4Y2daTxHtgaUpmL7yplZXgPGmY85qlFsIo,387296
|
|
51
51
|
westpa/core/kinetics/matrates.py,sha256=1sf7L6ojLE8yT2sFfgeB8eqgjMHdMK2O_Xgyz_RjCzc,5554
|
|
52
52
|
westpa/core/kinetics/events.py,sha256=VqYBN5rVOf3hAYUA6xQ6UN7GP6tVgRFIoP69tfGhkTo,6511
|
|
53
53
|
westpa/core/kinetics/__init__.py,sha256=djtiki7X5-IEzwjwswbdgrolwUIzVAHKxCiI5B3WH28,510
|
|
@@ -56,23 +56,23 @@ westpa/core/binning/binless_driver.py,sha256=T5qWpLnjxCS9RdKeWf7eVCC_s6TQFDENL7X
|
|
|
56
56
|
westpa/core/binning/mab_driver.py,sha256=azSqc9pqHk_zc1ptGNjXARDbK-UAnPVmCiYwebi5mPY,2223
|
|
57
57
|
westpa/core/binning/binless.py,sha256=Fb9TI5swQntzXjmlWFbYQ9yjzjLxDKNVVdmRxRqOnIY,4056
|
|
58
58
|
westpa/core/binning/__init__.py,sha256=XmjBP6fg_id_vDELkcWW3u2GeuL5OPWblvX-kc7mINk,1297
|
|
59
|
-
westpa/core/binning/_assign.cpython-39-darwin.so,sha256=
|
|
59
|
+
westpa/core/binning/_assign.cpython-39-darwin.so,sha256=myA6qAkiYVDjM6we1cAs0_V09m-UI0paY0NcpI2Qhlk,264288
|
|
60
60
|
westpa/core/binning/mab_manager.py,sha256=-bb9CdSXrx6XV8NWHa6Q1CTWVaGa4coAZn_lDlvHCkM,9815
|
|
61
61
|
westpa/core/binning/assign.py,sha256=e1YWyU3R12evLAoIWUrEvv3uvdKFo4u_mfKGDcK5AVU,18028
|
|
62
62
|
westpa/core/binning/binless_manager.py,sha256=XgsLaYhknzWA9IHCqOvmnLXSgM303KnKOUjLe1NM0Zw,9414
|
|
63
63
|
westpa/core/binning/mab.py,sha256=X7L1jx--nNJTNA-PeJGDpwSa2PDMoMb4OtLpjffXQ4A,16046
|
|
64
64
|
westpa/core/binning/bins.py,sha256=WDj7DNX3MTVkRvkgAooa9G8VThxw32uIfMTuk9sS194,1460
|
|
65
65
|
westpa/core/reweight/matrix.py,sha256=219sRxkML1V9niPIndSoRvJAC0fUmpG0PLDKpmfWW-g,5509
|
|
66
|
-
westpa/core/reweight/_reweight.cpython-39-darwin.so,sha256=
|
|
66
|
+
westpa/core/reweight/_reweight.cpython-39-darwin.so,sha256=077GIAox0GPKVEyi-JCWc1Gr336OFHNfcHeZxozy1to,303048
|
|
67
67
|
westpa/core/reweight/__init__.py,sha256=8goYojsHMcJCZblBC2sc2fcj-NUNVEstbSLswKNlVfg,284
|
|
68
68
|
westpa/core/propagators/__init__.py,sha256=rx_kkeg3Tbb_rI0uhLGCD3OwSYj9QuhxF8QGN3mILrg,2373
|
|
69
|
-
westpa/core/propagators/executable.py,sha256=
|
|
69
|
+
westpa/core/propagators/executable.py,sha256=yYextknWycTtyUTFMNyIt6EeLblMdWOJM7YJ4FsZ93E,32203
|
|
70
70
|
westpa/analysis/__init__.py,sha256=CcmVPCB9OSEib0mJ4U-s9v3nrj4h-T_9AGApAbPnn8I,268
|
|
71
71
|
westpa/analysis/core.py,sha256=rZ7xcrskpPwy2lrB27gXT4mSQRbqnPj9D8yA-Utve-M,22426
|
|
72
72
|
westpa/analysis/statistics.py,sha256=M3Gj1bOiAu_SA4upR7gENYEOP2gnIEaSOZeGyoIxAc8,789
|
|
73
73
|
westpa/analysis/trajectories.py,sha256=jyrbbKOVyZ3GjHQushDS_G8C4IRXlUmxa-WzmEEVGwc,12878
|
|
74
74
|
westpa/mclib/__init__.py,sha256=NskP81wKw-tHTniyJ8QbgKAHah5JdpCrnPKJo1T-nLw,11513
|
|
75
|
-
westpa/mclib/_mclib.cpython-39-darwin.so,sha256=
|
|
75
|
+
westpa/mclib/_mclib.cpython-39-darwin.so,sha256=oeBGn-8m-ct0-mvO1vy86HSxlQaj-g2ky6VrLuEkJAs,245864
|
|
76
76
|
westpa/mclib/__main__.py,sha256=cKqfE9koMcrHkslEPpFISA4Eblwl0mllaxn7pFeyX1A,881
|
|
77
77
|
westpa/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
78
|
westpa/cli/tools/w_direct.py,sha256=5Z9eQpvpKM-40XdiI0L3t0O3jpjMx7tk8ndYAaJxvrc,22361
|
|
@@ -102,10 +102,10 @@ westpa/cli/core/w_fork.py,sha256=UZVY6nUdMRRbKPfNFGAfEAu7tVhu7NewopPdQ0s8cz8,569
|
|
|
102
102
|
westpa/cli/core/w_states.py,sha256=Fkr0WdUut59vPtj0_TZWAmY5_qf5H_WsoiusO7Slz50,9433
|
|
103
103
|
westpa/cli/core/w_run.py,sha256=9fLOJjCYQadB28gdsKwGxwjJtSB5u0DRITzAWmL3rJg,2159
|
|
104
104
|
westpa/cli/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
westpa/cli/core/w_truncate.py,sha256
|
|
105
|
+
westpa/cli/core/w_truncate.py,sha256=QdIwMespZD69t3tDkqC1bZRo4CICs18ShlVXYSeFPd8,2030
|
|
106
106
|
westpa/cli/core/w_init.py,sha256=V_CvlAuq8flg-zUO01sbMGYkLqrEDD4DU9sV90bYFus,8793
|
|
107
107
|
westpa/cli/core/w_succ.py,sha256=ZK1MHHu7t53VdBrRgJUe7b1R8DnhMKPjHOqbbOjC_As,3074
|
|
108
|
-
westpa/trajtree/_trajtree.cpython-39-darwin.so,sha256=
|
|
108
|
+
westpa/trajtree/_trajtree.cpython-39-darwin.so,sha256=55cJGwSUYj16vFppFIPepSK94kCzb9hxV2jhL1bGa-g,130928
|
|
109
109
|
westpa/trajtree/__init__.py,sha256=K64Ok5bUP-fXo1H2rigJqxCnm-U23tJlRngNOnzR3gs,96
|
|
110
110
|
westpa/trajtree/trajtree.py,sha256=sLf4kTi0QyvFdbSR__YcPwOR2wcOxtlkC4IPUFcq-9M,4497
|
|
111
111
|
westpa/oldtools/files.py,sha256=JmLtZqxD88cybEHcOU6kodAeOJYxylpYFl4OQqU13Hs,944
|
|
@@ -115,7 +115,7 @@ westpa/oldtools/cmds/w_ttimes.py,sha256=Ny_l_N7k__4eE71h9ugpk_jr6VZbDH3p4lylFzzl
|
|
|
115
115
|
westpa/oldtools/cmds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
116
|
westpa/oldtools/aframe/binning.py,sha256=L259HcIn-1Qz1AKUWBXjZ3HFE0odry7OZf-aG070fSE,7565
|
|
117
117
|
westpa/oldtools/aframe/atool.py,sha256=5_ZkivLChU1wMaEvI-F7i-huMRYg2Dy8AH36eivWI0Y,2185
|
|
118
|
-
westpa/oldtools/aframe/plotting.py,sha256=
|
|
118
|
+
westpa/oldtools/aframe/plotting.py,sha256=2XZwZRzH_Fr-9xctoGy0txU7LUwF_BnCUF4MUsIh4UQ,2469
|
|
119
119
|
westpa/oldtools/aframe/trajwalker.py,sha256=mXkLMg3aIBo76fogCXZs3xNwpTc9Y6qfHNIEhYRIERg,5540
|
|
120
120
|
westpa/oldtools/aframe/__init__.py,sha256=1MMuHYaL790Y1bh7NU3gweTYRIr2xgR1U9bmNrJVrSM,1047
|
|
121
121
|
westpa/oldtools/aframe/data_reader.py,sha256=nuIkR-vFRW_stcXwcjMSZI1RO73By-x-phfTrlD73Jc,20927
|
|
@@ -141,10 +141,10 @@ westpa/work_managers/zeromq/__init__.py,sha256=rrl4YbEaZr2AiEBTMlhvEFH83dBlAwWR_
|
|
|
141
141
|
westpa/work_managers/zeromq/core.py,sha256=K3Iyrz5u2Dy-GgZFL3ZXDN2iaaLm7qL-A3cm4PdBiF8,22907
|
|
142
142
|
westpa/work_managers/zeromq/work_manager.py,sha256=UB_WvnejDRVi1ZU2QWpP9uzhnccOH7b3qHgU-wSstTY,22425
|
|
143
143
|
westpa/work_managers/zeromq/node.py,sha256=CeoJhXVqrZxrV3lMnDtm3LNkGFxjS4dr3E6wd7ZQRTE,4877
|
|
144
|
-
westpa-2022.
|
|
145
|
-
westpa-2022.
|
|
146
|
-
westpa-2022.
|
|
147
|
-
westpa-2022.
|
|
148
|
-
westpa-2022.
|
|
149
|
-
westpa-2022.
|
|
150
|
-
westpa-2022.
|
|
144
|
+
westpa-2022.11.dist-info/RECORD,,
|
|
145
|
+
westpa-2022.11.dist-info/LICENSE,sha256=I2wUldIRJmflTYUxmSiITSZEKvlovlMPrE3JU5IslkY,1074
|
|
146
|
+
westpa-2022.11.dist-info/AUTHORS,sha256=YMi91-Fs-vFgZKUaItfh20uXthT9oe2Kq6CQXmqMGqg,671
|
|
147
|
+
westpa-2022.11.dist-info/WHEEL,sha256=hrcdVXw-IOHvGzZfWgkUFYIyP1oKeC8D-Ytx9jSHhog,108
|
|
148
|
+
westpa-2022.11.dist-info/entry_points.txt,sha256=0Ym8meKTdYbUEMtUHF_4zaZP__4ldfFnoYXyYlKRB6s,1428
|
|
149
|
+
westpa-2022.11.dist-info/top_level.txt,sha256=otaLnQtwo9jKCJmja4iOOsOVDThUvPfjJaeLrgGEhlE,7
|
|
150
|
+
westpa-2022.11.dist-info/METADATA,sha256=ZNUuNk0-tU-eHAT3nKAXC1KnqXbsj-P-vuEiaFXy2ZA,7563
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|