-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from drbergman/development
0.0.15
- Loading branch information
Showing
72 changed files
with
2,985 additions
and
936 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ test.jl | |
/data | ||
*.db | ||
.vscode | ||
studio_debug.log | ||
|
||
# from PkgTemplate.jl | ||
*.jl.*.cov | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "pcvct" | ||
uuid = "3c374bc7-7384-4f83-8ca0-87b8c727e6ff" | ||
authors = ["Daniel Bergman <[email protected]> and contributors"] | ||
version = "0.0.14" | ||
version = "0.0.15" | ||
|
||
[deps] | ||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | ||
|
@@ -18,6 +18,8 @@ LightXML = "9c8b4983-aa76-5018-a973-4c85ecc9e179" | |
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MAT = "23992714-dd62-5051-b70f-ba57cb901cac" | ||
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a" | ||
PhysiCellCellCreator = "eac91067-0c6e-4a29-b848-3b4e7cf67017" | ||
PhysiCellECMCreator = "515ed340-d2f8-4e13-b70e-c9ebab3e992f" | ||
PhysiCellXMLRules = "bad69253-e2d7-49f9-a0cf-2fd158c7c32b" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" | ||
QuasiMonteCarlo = "8a4e6c94-4038-4cdc-81c3-7e6ffdb2a71b" | ||
|
@@ -42,7 +44,9 @@ LightXML = "0.9" | |
LinearAlgebra = "1.10" | ||
MAT = "0.10" | ||
Parameters = "0.12" | ||
PhysiCellXMLRules = "0.0.3" | ||
PhysiCellCellCreator = "0.0.3" | ||
PhysiCellECMCreator = "0.0.3" | ||
PhysiCellXMLRules = "0.0.4" | ||
Pkg = "1.10.0" | ||
QuasiMonteCarlo = "0.3" | ||
RecipesBase = "1.3.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
ignore: | ||
- "src/public.jl" | ||
- "src/VCTPhysiCellStudio.jl" | ||
- "src/VCTUp.jl" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
pcvct = "3c374bc7-7384-4f83-8ca0-87b8c727e6ff" | ||
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTConfiguration | ||
|
||
Interface with the configuration file necessary for PhysiCell simulations. | ||
|
||
Provide functionality for accessing and modifying elements in any XML, including the PhysiCell configuration file, XML rules file, and XML IC cell file. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTConfiguration.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTICCell | ||
|
||
Functionality for the using [PhysiCellCellCreator.jl](https://github.com/drbergman/PhysiCellECMCreator.jl) to create and use PhysiCell IC cell XML files. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTICCell.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTICECM | ||
|
||
Functionality for the using [PhysiCellECMCreator.jl](https://github.com/drbergman/PhysiCellECMCreator.jl) to create and use PhysiCell ECM XML files. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTICECM.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTLoader | ||
|
||
Load PhysiCell data into useful forms for downstream analysis. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTLoader.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTMovie | ||
|
||
Make movies for simulations in the database. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTMovie.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTPhysiCellStudio | ||
|
||
Launch PhysiCell Studio for a simulation run in pcvct. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTPhysiCellStudio.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTPruner | ||
|
||
Prune files from a simulation immediately after finishing the simulation. | ||
|
||
To motivate this functionality, consider the following scenario. A user has been testing their model, including making movies, and is ready to do a large virtual clinical trial with thousands of simulations. Saving all the SVGs will require gigabytes of storage, which is not ideal for the user. The user could choose to create a new variation on the SVG parameters (e.g., increase the SVG save interval), but then pcvct will not be able to reuse previous simulations as they have different variation IDs. Alternatively, the user can use the `PruneOptions` to delete the SVGs after each simulation is finished. This way, there are fewer variations in the database and more capability to reuse simulations. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTPruner.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTSensitivity | ||
|
||
Run sensitivity analyses on a model. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTSensitivity.jl"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```@meta | ||
CollapsedDocStrings = true | ||
``` | ||
|
||
# VCTUserAPI | ||
|
||
Main functions users will use to create and run simulations, monads, samplings, and trials. | ||
|
||
```@autodocs | ||
Modules = [pcvct] | ||
Pages = ["VCTUserAPI.jl"] | ||
``` |
Oops, something went wrong.