y_petri 2.3.6 → 2.3.8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7f29de0c9215e85b22d4326902e0078fb6bac51
|
4
|
+
data.tar.gz: be5051893dcf85079c56b53e855ae2958957d6de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a9423c84849b720a8e7e6a5a482cc9244ba100c6459c5134e8eecdd1bdf481570baba1b60b8e4ff3b8fd93b87fe2cf3802f9ffd1bf09c653be4509448c0d989
|
7
|
+
data.tar.gz: 942d1e626a3a886161a7adf1f1ef1b09680a07dc0cb852e136ab453afa43e5b65021021689f5bc6d2c7ee9b071b5d25fdfacf446479a3ba9cf5e5c725e26d18d
|
Binary file
|
Binary file
|
Binary file
|
data/lib/y_petri/version.rb
CHANGED
data/y_petri.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["boris"]
|
10
10
|
spec.email = ["\"boris@iis.sinica.edu.tw\""]
|
11
11
|
spec.summary = %q{Systems modelling and simulation gem. Biologically inspired, but concerns specific to biology and chemistry have been purposely separated away from it, so it is a general-purpose model specification and simulation DSL. Dynamical systems are specified by a specific universal type of a hybrid Petri net which YPetri implements and which allows description of any kind of dynamical system whatsoever.}
|
12
|
-
spec.description = %q{YPetri is a gem for modelling of dynamical systems. It is biologically inspired, but concerns of biology and chemistry have been purposely separated away from it. YPetri caters solely to the two main concerns of modelling, model specification and simulation, and it excels in the first one. Dynamical systems are described under a Petri net paradigm. YPetri implements a universal Petri net abstraction that integrates discrete/continous, deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows efficient specification of any kind of dynamical system. Like Petri nets themselves, YPetri was inspired by problems from the domain of chemistry (biochemical pathway modelling), but is not specific to it. Other gems, YChem and YCell are planned to cater to the concerns specific to chemistry and cell biochemistry.
|
12
|
+
spec.description = %q{YPetri is a gem for modelling of dynamical systems. It is biologically inspired, but concerns of biology and chemistry have been purposely separated away from it. YPetri caters solely to the two main concerns of modelling, model specification and simulation, and it excels in the first one. Dynamical systems are described under a Petri net paradigm. YPetri implements a universal Petri net abstraction that integrates discrete/continous, deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows efficient specification of any kind of dynamical system. Like Petri nets themselves, YPetri was inspired by problems from the domain of chemistry (biochemical pathway modelling), but is not specific to it. Other gems, YChem and YCell are planned to cater to the concerns specific to chemistry and cell biochemistry. A lower-level extension of YPetri is currently under development under the name YNelson. Its usage is practically identical to YPetri, so any YPetri user can now consider using YNelson instead. YNelson covers additional concerns: it allows relations among nodes and parameters to be specified under a zz structure paradigm (developed by Ted Nelson) and it is also aimed towards providing a higher level of abstraction in Petri net specification by providing commands that create more than one Petri net node per command. YPetri documentation is avalable online, but due to formatting issues, you may prefer to generate the documentation on your own by running rdoc in the gem directory. As for the user manuals, there are currently 3 documents applicable for both YPetri and YNelson, which are stored in the YNelson source directory: 1. Introduction to YNelson and YPetri (hands-on tutorial), 2. Object model of YNelson and YPetri, 3. Introduction to Ruby for YNelson users. These manuals will are written so that any would-be user, including those unfamiliar with Ruby, can start using YPetri and/or YNelson. For an example of how YPetri can be used to model complex dynamical systems, see the eukaryotic cell cycle model which I released as "cell_cycle" gem.}
|
13
13
|
spec.homepage = ""
|
14
14
|
spec.license = "GPLv3"
|
15
15
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: y_petri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- boris
|
@@ -104,18 +104,23 @@ description: 'YPetri is a gem for modelling of dynamical systems. It is biologic
|
|
104
104
|
efficient specification of any kind of dynamical system. Like Petri nets themselves,
|
105
105
|
YPetri was inspired by problems from the domain of chemistry (biochemical pathway
|
106
106
|
modelling), but is not specific to it. Other gems, YChem and YCell are planned to
|
107
|
-
cater to the concerns specific to chemistry and cell biochemistry.
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
providing
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
107
|
+
cater to the concerns specific to chemistry and cell biochemistry. A lower-level
|
108
|
+
extension of YPetri is currently under development under the name YNelson. Its usage
|
109
|
+
is practically identical to YPetri, so any YPetri user can now consider using YNelson
|
110
|
+
instead. YNelson covers additional concerns: it allows relations among nodes and
|
111
|
+
parameters to be specified under a zz structure paradigm (developed by Ted Nelson)
|
112
|
+
and it is also aimed towards providing a higher level of abstraction in Petri net
|
113
|
+
specification by providing commands that create more than one Petri net node per
|
114
|
+
command. YPetri documentation is avalable online, but due to formatting issues,
|
115
|
+
you may prefer to generate the documentation on your own by running rdoc in the
|
116
|
+
gem directory. As for the user manuals, there are currently 3 documents applicable
|
117
|
+
for both YPetri and YNelson, which are stored in the YNelson source directory: 1.
|
118
|
+
Introduction to YNelson and YPetri (hands-on tutorial), 2. Object model of YNelson
|
119
|
+
and YPetri, 3. Introduction to Ruby for YNelson users. These manuals will are written
|
120
|
+
so that any would-be user, including those unfamiliar with Ruby, can start using
|
121
|
+
YPetri and/or YNelson. For an example of how YPetri can be used to model complex
|
122
|
+
dynamical systems, see the eukaryotic cell cycle model which I released as "cell_cycle"
|
123
|
+
gem.'
|
119
124
|
email:
|
120
125
|
- '"boris@iis.sinica.edu.tw"'
|
121
126
|
executables: []
|
@@ -125,7 +130,10 @@ files:
|
|
125
130
|
- ".gitignore"
|
126
131
|
- ACKNOWLEDGMENT.txt
|
127
132
|
- Gemfile
|
133
|
+
- Introduction_to_Ruby_for_YNelson_Users.pdf
|
134
|
+
- Introduction_to_YNelson_and_YPetri.pdf
|
128
135
|
- LICENSE.txt
|
136
|
+
- Object_model_of_YNelson_and_YPetri.pdf
|
129
137
|
- README.md
|
130
138
|
- Rakefile
|
131
139
|
- lib/y_petri.rb
|