Cancer 2
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
WHAT IS IT?
Currently, the strategies for the design of new pharmacological treatments of cancer are focused on detection of some vulnerability inside of cancer cell and action upon it. Any kind of mutual dependence between cancer cells and its importance for survival of the cancer tissue as a whole is “disregarded”, and is not exploited in the design of pharmacological treatments. The hypothesis under evaluation is that cancer cells provide support one to another to form a structure. With this support by contact they survive and proliferate, without this support they die. Cancer cells can obtain the support for survival from normal cells as well.But this is not reciprocal.Cancer cells do not provide any support for normal cells.
HOW IT WORKS
There are two cell population: cancer cells ("cancers") and normal cells ("normals"). The initial number of both is regulated by the respective sliders. -If a cancer cell is in contact with another cancer cell or a normal cell, it survives and devides in two. -Otherwise it dies. -If a normal cell is in contact with another normal cell it survives,but no cell division takes place. - If there is no cell in contact with a normal cell, it dies - If the neighbor of a normal cell is a cancer cell, the normal cell dies Parametes: Initial number of cancer cells Intial number of normal cells
HOW TO USE IT
Adjust parameters of the sliders or use the default setting Press the "set-up" button Press the "go" button to begin the simulation Look at the "Malignant cells" plot to observe the growth of the cancer cells population
THINGS TO NOTICE
Is there any relation between the initial number of cancer cells, normal cells and cancer/normal ratio and the success of tumor growth. Is there a "threshold-like" behavior of the initial normal and the probability of success of cancer? Are normal cells indispensable for the cancer survival? Always?, never?, sometimes?
THINGS TO TRY
Try to modify both initial-number slider to determine a threshold, below which the probability of tumor growth is low.
(suggested things for the user to try to do (move sliders, switches, etc.) with the model)
EXTENDING THE MODEL
Modify a code increase the complexity of the model introducing an additional parameter: number of cells in contact enogh to survival, from 1 to 8,in authors´ version this number is 1. For this, introduce a switch button to change from von Neumann to Moore neighborhood.
(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)
NETLOGO FEATURES
(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)
RELATED MODELS
(models in the NetLogo Models Library and elsewhere which are of related interest)
CREDITS AND REFERENCES
(a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links)
Comments and Questions
breed[cancers cancer] ;malignant cells breed[normals normal] ;normal cells to setup Clear-all ask patches [ set pcolor gray ] set-default-shape cancers "pentagon" ;; mailgnant cells create-cancers initial-number-cancers ;; create the malignant cells, [ set color red set size 1 ;; malignant cell setxy random-xcor random-ycor ] set-default-shape normals"square" ;;normal cells create-normals initial-number-normals ;; create the normal cells, [ set color blue set size 1 setxy random-xcor random-ycor ] reset-ticks end to go if not any? cancers [stop] if ticks = 20 [stop] ;; the computational power of my PC is not enogh to continue with more tics ask cancers [ ifelse any? turtles-on neighbors4 [hatch 1 rt random-float 360 fd 1 ] [die] ] ask normals [ if not any? normals-on neighbors4 [die] ] tick end
There is only one version of this model, created about 8 years ago by Boris Itkin.
Attached files
No files
This model does not have any ancestors.
This model does not have any descendants.
Cosimo Leuci
balancing_cancer2
Hi Boris! Very interesting project. I've seen you are looking for collaboration: if you like I could introduce some code lines to get a more balanced dynamic of the life cycle cells populations.
Posted over 7 years ago