Comments for COMPUTE CANCER https://computecancer.wordpress.com All about models and implementation techniques Sat, 22 May 2021 10:01:24 +0000 hourly 1 http://wordpress.com/ Comment on Visualization of 3D tumor using isosurfaces and simple blur by jpoleszczuk https://computecancer.wordpress.com/2015/06/04/visualization-of-3d-tumor-using-isosurfaces-and-simple-blur/comment-page-1/#comment-1034 Sat, 22 May 2021 10:01:24 +0000 http://computecancer.wordpress.com/?p=62#comment-1034 In reply to LBN.

You have the code that generates the input to the visualization function in the first part of the code, but in general the input variable” L” is a 3D logical matrix that have true values only in places occupied by cells + on the boundary and “cells” is an accompanying vector with positions of cells using linear indexing. Of course you can construct “cells” from “L” and vice versa if you want to reduce number of input parameters.

Like

]]>
Comment on Visualization of 3D tumor using isosurfaces and simple blur by LBN https://computecancer.wordpress.com/2015/06/04/visualization-of-3d-tumor-using-isosurfaces-and-simple-blur/comment-page-1/#comment-1030 Sat, 08 May 2021 12:04:55 +0000 http://computecancer.wordpress.com/?p=62#comment-1030 Hey can you please give me an example for the inputs to visualize the data

Like

]]>
Comment on Agent-Based Modeling (ABM) of Tumors in Java by Lisa https://computecancer.wordpress.com/2015/07/17/agent-based-modeling-of-tumors-in-java/comment-page-1/#comment-650 Fri, 04 Oct 2019 09:14:48 +0000 http://computecancer.wordpress.com/?p=280#comment-650 Amazing work! So each image is like after 2hrs, 4hrs, 6hrs… and so on?

Like

]]>
Comment on Cancer stem cell driven tumor growth model in less than 70 lines of code by Amir Behjat https://computecancer.wordpress.com/2015/05/31/cancer-stem-cell-driven-tumor-growth-model-in-less-than-70-lines-of-code/comment-page-1/#comment-358 Fri, 11 Jan 2019 14:39:25 +0000 http://computecancer.wordpress.com/?p=38#comment-358 In reply to jpoleszczuk.

Thanks. I finally used the C code you had which was so fast. Thanks again.

Like

]]>
Comment on Cancer stem cell driven tumor growth model in less than 70 lines of code by jpoleszczuk https://computecancer.wordpress.com/2015/05/31/cancer-stem-cell-driven-tumor-growth-model-in-less-than-70-lines-of-code/comment-page-1/#comment-357 Fri, 11 Jan 2019 10:51:26 +0000 http://computecancer.wordpress.com/?p=38#comment-357 In reply to Amir Behjat.

I’m glad that you are considering to use the model. You can either cite the blog post directly (follow standard guidelines) or cite one of my papers with Heiko Enderling (e.g. https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1004025 ).

Like

]]>
Comment on Cancer stem cell driven tumor growth model in less than 70 lines of code by Amir Behjat https://computecancer.wordpress.com/2015/05/31/cancer-stem-cell-driven-tumor-growth-model-in-less-than-70-lines-of-code/comment-page-1/#comment-355 Wed, 09 Jan 2019 03:24:52 +0000 http://computecancer.wordpress.com/?p=38#comment-355 Hi How can I cite your work if I want to use it?

Like

]]>
Comment on Cancer stem cell driven tumor growth model in C++ by jpoleszczuk https://computecancer.wordpress.com/2015/06/06/cancer-stem-cell-driven-tumor-growth-model-in-c/comment-page-1/#comment-260 Tue, 31 Jul 2018 15:38:08 +0000 http://computecancer.wordpress.com/?p=90#comment-260 In reply to Margriet Palm.

I’m glad that you found the code useful. And you are right – the cell without any empty spot in the surrounding can’t die and cancer stem cells are immortal. Both of the above are modeling assumptions that you can easily modify. The rationale behind the former is that the cell death occurs because of unsuccessful division.

Liked by 1 person

]]>
Comment on Cancer stem cell driven tumor growth model in C++ by Margriet Palm https://computecancer.wordpress.com/2015/06/06/cancer-stem-cell-driven-tumor-growth-model-in-c/comment-page-1/#comment-259 Tue, 31 Jul 2018 15:14:30 +0000 http://computecancer.wordpress.com/?p=90#comment-259 Thanks for this code! Maybe I’m misreading the code, but it seems to me that a cell that can’t find a spot for proliferation or migration also can’t die:

} else {//no free spot
cellsTmp.push_back(currCell);
}

also, stem cells seem to be immortal. Is there a reason behind this?

Like

]]>
Comment on Some ideas about how to efficently store simulation data by jpoleszczuk https://computecancer.wordpress.com/2016/05/17/some-ideas-about-how-to-efficently-store-simulation-data/comment-page-1/#comment-242 Mon, 16 Apr 2018 17:02:03 +0000 http://computecancer.wordpress.com/?p=878#comment-242 In reply to Myroslav Zapukhlyak.

I think that it would be overkill in this case…

Like

]]>
Comment on Some ideas about how to efficently store simulation data by Myroslav Zapukhlyak https://computecancer.wordpress.com/2016/05/17/some-ideas-about-how-to-efficently-store-simulation-data/comment-page-1/#comment-241 Mon, 16 Apr 2018 13:42:18 +0000 http://computecancer.wordpress.com/?p=878#comment-241 hdf5, netcdf etc ?

Like

]]>