Skip to content

Commit 81fab3a

Browse files
committed
@ physicelldataloader : next release.
1 parent 6c807eb commit 81fab3a

File tree

10 files changed

+27
-11
lines changed

10 files changed

+27
-11
lines changed

man/docstring/mcds.__init__.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
processing, similar to the original pyMCDS_cells.py script.
2424
2525
graph: boole; default True
26-
should neighbor garph and attached graph be loaded?
27-
setting graph to False will use less memory and speed up processing.
26+
should neighbor garph, attached graph, and spring attached graph
27+
be loaded? setting graph to False will use less memory and
28+
speed up processing.
2829
2930
physiboss: boole; default True
3031
should physiboss state data be loaded, if found?

man/docstring/mcds.make_conc_vtk.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33

44
## input:
55
```
6+
visualize: boolean; default is True
7+
additionally, visualize cells using vtk renderer.
68
79
```
810

911
## output:
1012
```
1113
s_vtkpathfile: vtk rectilinear grid file that contains
12-
3D distributions of all substrates over the microenvironment.
14+
3D distributions of all substrates over the microenvironment.
1315
1416
```
1517

man/docstring/mcds.make_graph_gml.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
to specify which physicell output data should be processed.
88
neighbor, touch: processes mcds.get_neighbor_graph_dict dictionary.
99
attached: processes mcds.get_attached_graph_dict dictionary.
10+
spring: processes mcds.get_spring_graph_dict dictionary.
1011
1112
edge_attribute: boolean; default True
1213
specifies if the spatial Euclidean distance is used for

man/docstring/mcdsts.__init__.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
processing, similar to the original pyMCDS_cells.py script.
2424
2525
graph: boole; default True
26-
should neighbor graph and attached graph be loaded?
27-
setting graph to False will use less memory and speed up processing.
26+
should neighbor garph, attached graph, and spring attached graph
27+
be loaded? setting graph to False will use less memory and
28+
speed up processing.
2829
2930
physiboss: boole; default True
3031
should physiboss state data be loaded, if found?

man/docstring/mcdsts.make_conc_vtk.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
## input:
55
```
6+
visualize: boolean; default is False
7+
additionally, visualize cells using vtk renderer.
68
79
```
810

man/docstring/mcdsts.make_graph_gml.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
```
66
self: pyMCDS class instance.
77
8-
graph_type: string; default is neighbor
8+
graph_type: string
99
to specify which physicell output data should be processed.
10-
attached: processes mcds.get_attached_graph_dict dictionary.
10+
attached, touch: processes mcds.get_attached_graph_dict dictionary.
1111
neighbor: processes mcds.get_neighbor_graph_dict dictionary.
12+
spring: processes mcds.get_spring_graph_dict dictionary.
1213
1314
edge_attribute: boolean; default True
1415
specifies if the spatial Euclidean distance is used for

man/docstring/pcdl_get_anndata.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ options:
3131
will use less memory and speed up processing, similar
3232
to the original pyMCDS_cells.py script. default is
3333
True.
34-
--graph GRAPH should neighbor graph and attach graph be extracted
35-
and loaded into the anndata object? default is True.
34+
--graph GRAPH should neighbor graph, attach graph, and attached
35+
spring graph be extracted and loaded into the anndata
36+
object? default is True.
3637
--physiboss PHYSIBOSS
3738
if found, should physiboss state data be extracted and
3839
loaded into the anndata object? default is True.

man/docstring/pcdl_make_graph_gml.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ positional arguments:
1919
graph_type to specify which physicell output data should be
2020
processed. attached: processes
2121
mcds.get_attached_graph_dict dictionary. neighbor:
22-
processes mcds.get_neighbor_graph_dict dictionary.
22+
processes mcds.get_neighbor_graph_dict dictionary
23+
spring: processes mcds.get_spring_graph_dict
24+
dictionary.
2325
2426
options:
2527
-h, --help show this help message and exit

man/scarab.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ def docstring_md(s_function, ls_doc, s_header=None, s_opath='man/docstring/'):
9191
f.close()
9292

9393

94+
# download test dataset
95+
if not os.path.exists('pcdl/output_2d/') or not os.path.exists('pcdl/output_3d/'):
96+
pcdl.install_data()
97+
98+
9499
# load data
95100
mcds = pcdl.TimeStep(
96101
'pcdl/output_2d/output00000000.xml',

pcdl/VERSION.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.3.2'
1+
__version__ = '3.3.3'

0 commit comments

Comments
 (0)