Skip to content

Commit 97ad550

Browse files
committed
Merge branch 'main' of https://github.com/MunskyGroup/SSIT
2 parents 8b7a300 + e49e13f commit 97ad550

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

README.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,23 @@ You should then see the model loading and building page of the graphical interfa
8282

8383
## Command Line Version
8484

85-
To get started with the Command line Tools, navigate to the directory "CommandLine" and open one of the tutorial scripts "example_XXX.m". Or you caan start creating and solving models as follows.
85+
To get started with the Command line Tools, navigate to the directory "Examples" and open one of the tutorial scripts "example_XXX.m". We recommend getting started using the following examples:
86+
87+
[Examples/example_SSITBasics.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_SSITBasics.html) This example will get you started on creating and solving SSIT models.
88+
89+
[Examples/example_EscapeTimes.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_EscapeTimes.html) This example will get you started on using the SSIT to calculate escape time distributions.
90+
91+
[Examples/example_FIMCalculation.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_FIMCalculation.html) This example demonstrates the use of the SSIT to calculate Sensitivity of the CME solution and the Fisher Information Matrix.
92+
93+
[Examples/example_FittingAndDesigningExperiments.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_FittingAndDesigningExperiments.html) This example demonstrates the use of the SSIT and Fisher Information Matrix to design optimally informative experiments.
94+
95+
[Examples/example_HybridModel.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_HybridModel.html) This example demonstrates the use of the SSIT for creating hybrid models where some (upstream) species evolve determistically while other (downstream) species are stochastic.
96+
97+
[Examples/example_ModelReductionTool.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_ModelReductionTool.html) This example demonstrates the use of the SSIT for applying linear transformations to reduce the size of the CME solution scheme (e.g., eigvenvalue decomposition, principle orthoginal decomposition, quasi-steady state assumptions, or coarse mesh solutions).
98+
99+
[Examples/example_MultiModelTool.m](https://htmlpreview.github.io/?https://github.com/MunskyGroup/SSIT/blob/main/Examples/html/example_MultiModelTool.html) This example demonstrates the use of the SSIT for fitting multiple different models with shared or related pameters, but fit to different data sets.
100+
101+
Or you can start creating and solving models as follows.
86102

87103
Example for generating an FSI model and fitting it to smFISH data for Dusp1 activation following glucocorticoid stimulation:
88104

@@ -109,8 +125,10 @@ Load and Fit smFISH Data
109125
>> Model = Model.loadData('../ExampleData/DUSP1_Dex_100nM_Rep1_Rep2.csv',{'rna','RNA_nuc'});
110126
111127
>> Model.tSpan = unique([Model.initialTime,Model.dataSet.times]);
128+
112129
>> fitOptions = optimset('Display','iter','MaxIter',100);
113-
>> pars,likelihood] = Model.maximizeLikelihood([],fitOptions);
130+
131+
>> [pars,likelihood] = Model.maximizeLikelihood([],fitOptions);
114132
115133
Update Model and Make Plots of Results
116134

0 commit comments

Comments
 (0)