Skip to content

Commit 08a8a5a

Browse files
author
Daniel Bergman
authored
Merge pull request #72 from drbergman/development
v0.0.12
2 parents bf86501 + 408a887 commit 08a8a5a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1900
-915
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
compiler: ["g++"]
3636
include:
3737
- os: "macOS-latest"
38-
julia-version: '1'
38+
julia-version: 'lts'
3939
shell: "bash"
4040
compiler: "g++-14"
4141
arch: "arm64"
4242
- os: "macOS-latest"
43-
julia-version: 'lts'
43+
julia-version: '1'
4444
shell: "bash"
4545
compiler: "g++-14"
4646
arch: "arm64"
@@ -83,13 +83,13 @@ jobs:
8383
- name: Run all tests
8484
uses: julia-actions/julia-runtest@v1
8585
env:
86-
JULIA_NUM_THREADS: 8
86+
PCVCT_NUM_PARALLEL_SIMS: 8
8787
PHYSICELL_CPP: ${{ matrix.compiler }} # maybe necessary for windows??
8888
PCVCT_PUBLIC_REPO_AUTH: ${{ secrets.PUBLIC_REPO_AUTH }}
8989
- uses: julia-actions/julia-processcoverage@v1
9090
- uses: codecov/codecov-action@v5
9191
with:
92-
file: lcov.info
92+
files: lcov.info
9393
token: ${{ secrets.CODECOV_TOKEN }}
9494
fail_ci_if_error: false
9595

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
test.jl
3+
/data
34
*.db
45
.vscode
56

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "pcvct"
22
uuid = "3c374bc7-7384-4f83-8ca0-87b8c727e6ff"
33
authors = ["Daniel Bergman <[email protected]> and contributors"]
4-
version = "0.0.11"
4+
version = "0.0.12"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
@@ -42,7 +42,7 @@ LightXML = "0.9"
4242
LinearAlgebra = "1.10"
4343
MAT = "0.10"
4444
Parameters = "0.12"
45-
PhysiCellXMLRules = "0.0.1 - 0.0.2"
45+
PhysiCellXMLRules = "0.0.3"
4646
Pkg = "1.10.0"
4747
QuasiMonteCarlo = "0.3"
4848
RecipesBase = "1.3.4"

docs/src/lib/VCTAnalysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CollapsedDocStrings = true
44

55
# VCTAnalysis
66

7-
This folder holds functionality for analyzing output from the model.
7+
Analyze output from a pcvct project.
88

99
```@autodocs
1010
Modules = [pcvct]

docs/src/lib/VCTClasses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CollapsedDocStrings = true
44

55
# VCTClasses
66

7-
This file contains the class definitions for the hierarchical structure connecting simulations to trials.
7+
Class definitions for the hierarchical structure connecting simulations to trials.
88

99
```@autodocs
1010
Modules = [pcvct]

docs/src/lib/VCTCompilation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CollapsedDocStrings = true
44

55
# VCTCompilation
66

7-
This file contains the functions used to compile a PhysiCell project, including using the necessary compiler macros.
7+
Compile a PhysiCell project in pcvct. Includes the necessary compiler macros and checks PhysiCell version by the commit hash of the PhysiCell repository.
88

99
```@autodocs
1010
Modules = [pcvct]

docs/src/lib/VCTCreation.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
```@meta
2+
CollapsedDocStrings = true
3+
```
4+
5+
# VCTCreation
6+
7+
Create a new pcvct project.
8+
9+
```@autodocs
10+
Modules = [pcvct]
11+
Pages = ["VCTCreation.jl"]
12+
```

docs/src/lib/VCTDatabase.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
```@meta
2+
CollapsedDocStrings = true
3+
```
4+
5+
# VCTDatabase
6+
7+
Create and manage the pcvct database.
8+
9+
```@autodocs
10+
Modules = [pcvct]
11+
Pages = ["VCTDatabase.jl"]
12+
```

docs/src/lib/VCTDeletion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CollapsedDocStrings = true
44

55
# VCTDeletion
66

7-
This file holds functionality for deleting output.
7+
Safely delete output from a pcvct project.
88

99
```@autodocs
1010
Modules = [pcvct]

docs/src/lib/VCTExport.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
```@meta
2+
CollapsedDocStrings = true
3+
```
4+
5+
# VCTExport
6+
7+
This file holds the functions for exporting a simulation to a `user_project` format.
8+
9+
```@autodocs
10+
Modules = [pcvct]
11+
Pages = ["VCTExport.jl"]
12+
```

0 commit comments

Comments
 (0)