Skip to content

Commit dbf7990

Browse files
authored
Merge pull request #22 from elmbeech/master
@ workflows update PYTHONPATH
2 parents 4e42719 + a962772 commit dbf7990

File tree

13 files changed

+30
-14
lines changed

13 files changed

+30
-14
lines changed

.github/workflows/apple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222

2323
env:
24-
PYTHONPATH: /Users/runner/work/physicelldataloader/physicelldataloader
24+
PYTHONPATH: /Users/runner/work/physicelldataloader/physicelldataloader:/Users/runner/work/python-loader/python-loader
2525

2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222

2323
env:
24-
PYTHONPATH: /home/runner/work/physicelldataloader/physicelldataloader
24+
PYTHONPATH: /home/runner/work/physicelldataloader/physicelldataloader:/home/runner/work/python-loader/python-loader
2525

2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222

2323
env:
24-
PYTHONPATH: D:\a\physicelldataloader\physicelldataloader
24+
PYTHONPATH: D:\a\physicelldataloader\physicelldataloader:D:\a\python-loader\python-loader
2525

2626
steps:
2727
- uses: actions/checkout@v4

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.

0 commit comments

Comments
 (0)