Skip to content

Commit c14a5a2

Browse files
committed
add synthetic data
1 parent 6d349cb commit c14a5a2

12 files changed

+310
-4
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ rsconnect/
4242
.DS_Store
4343

4444
#other folders
45-
data/
4645
inst/doc
4746
doc
4847
Meta

R/data.R

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# MISTy companion data
2+
# Copyright (c) 2020 Attila Gabor
3+
4+
#' Synthetic benchmark data for MISTy
5+
#'
6+
#' Data generated from 10 random layouts of four cell types and empty space on
7+
#' 100-by-100 gridby simulating a two-dimensional cellular automata model that
8+
#' focuses on signaling events. Cell growth, division, motility and death are
9+
#' neglected. The intracellular processes involve two layers, first the ligand
10+
#' activation of signaling hubs and ligand production/secretion regulated by
11+
#' proteins. The model simulates the production, diffusion, degradation and
12+
#' interactions of 11 molecular species. Ligands are produced in each cell-type
13+
#' based on the activity level of their production nodes and then freely diffuse,
14+
#' degrade or interact with other cells on the grid. Other molecular species
15+
#' involved in signaling are localised in the intracellular space and their
16+
#' activity depends on ligand binding and intracellular wiring.
17+
#'
18+
#' @format A named \code{list} of length 10. Each list item is a \code{tibble} that
19+
#' corresponds to a simulation of one random layout with information about each
20+
#' cell in rows described by the following 14 variables:
21+
#' \describe{
22+
#' \item{row, col}{location of the cell on the grid}
23+
#' \item{ligA, ligB, ligC, ligD}{expression of ligands}
24+
#' \item{protE, protF}{expression of intracellular proteins}
25+
#' \item{prodA, prodB, prodC, prodD}{expression of regulatory proteins}
26+
#' \item{type}{cell type id}
27+
#' }
28+
#'
29+
#'
30+
#' @source \url{https://github.com/saezlab/misty_pipelines/}
31+
"synthetic"

data/synthetic.rda

2.34 MB
Binary file not shown.

docs/pkgdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pkgdown: 1.6.1
33
pkgdown_sha: ~
44
articles:
55
MISTy: MISTy.html
6-
last_built: 2021-03-30T09:08Z
6+
last_built: 2021-03-30T13:43Z
77
urls:
88
reference: https://saezlab.github.io/misty/reference
99
article: https://saezlab.github.io/misty/articles

docs/reference/add_juxtaview.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/clear_cache.html

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/index.html

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/synthetic.html

+223
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/sitemap.xml

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
<url>
5555
<loc>https://saezlab.github.io/misty/reference/run_misty.html</loc>
5656
</url>
57+
<url>
58+
<loc>https://saezlab.github.io/misty/reference/synthetic.html</loc>
59+
</url>
5760
<url>
5861
<loc>https://saezlab.github.io/misty/articles/MISTy.html</loc>
5962
</url>

man/add_juxtaview.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/clear_cache.Rd

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/synthetic.Rd

+38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)