Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Urban BEZELJAK
Rab5 spatial stochastic model
Commits
8307551d
Commit
8307551d
authored
Apr 02, 2020
by
Urban BEZELJAK
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README.md
parent
c3c42f25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
README.md
README.md
+16
-0
No files found.
README.md
View file @
8307551d
# Rab5 spatial stochastic model
This repository hosts the Rab5 activation stochastic model development, which supports the Loose and Saunders lab project with tentative title
**"Stochastic nucleation events trigger collective Rab GTPase activation"**
.
The basic model was implemented with
[
Smoldyn
](
http://www.smoldyn.org/
)
stochastic simulator.
...
...
@@ -66,3 +67,18 @@ Smoldyn uses parameters in micrometer and second units, which have to be recalcu
*
continous membrane (periodic walls):
[
200330_Rab5config_nobounds.txt
](
200330_Rab5config_nobounds.txt
)
### Python script for parameter scans
An example of Python script to run muntiple simulations with different GEF numbers:
```
python
import
os
from
subprocess
import
call
import
time
filepath
=
input
(
"Enter filepath (e.g. L:\Modeling
\200
325_Rab5config.txt): "
)
print
(
filepath
)
for
gefnum
in
[
10
,
20
,
40
,
60
,
80
,
120
,
160
,
200
,
400
]:
time
.
sleep
(
0.5
)
dir
=
r
"C:\Program Files\Smoldyn"
cmdline
=
r
"smoldyn %s --define GEFnum=%i -tqw"
%
(
filepath
,
gefnum
)
#insert config file path
rc
=
call
(
"start cmd /K "
+
cmdline
,
cwd
=
dir
,
shell
=
True
)
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment