FAQ

From Transsyswiki
Revision as of 09:56, 28 June 2010 by Jtkim (talk | contribs) (Created page with '== Introductory Questions == === What is transsys? === transsys is a framework for the computational modelling of gene regulatory networks (GRNs). === How is transsys differen…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Introductory Questions

What is transsys?

transsys is a framework for the computational modelling of gene regulatory networks (GRNs).

How is transsys different from other GRN modelling systems?

One of its unique features is its object-oriented structure that facilitates building integrated models that represent the GRNs as well as other levels of biological organisation (e.g. pattern formation, morphogenesis, and others).


Are there some introductory examples?

Yes, please have a look at the tutorial


Installation

Can I install transsys on my computer?

Yes. You need a Linux system on your computer with the gcc and Python development options installed. On any contemporary Linux box with these, you should be able to install transsys by downloading the transsys distribution and configuring, building and installing that.

Can you tell me the commands for installing transsys?

Yes, but please notice this disclaimer first: Executing commands supplied by others on your computer can damage your system. You run this code at your own risk.

With this disclaimer in place, you can try the following commands:

 wget http://www.transsys.net/software/transsys-current.tar.gz
 tar -zxvf transsys-current.tar.gz
 cd transsys-current
 ./configure --prefix=${HOME}
 make
 make install

This will install transsys into your local account. Therefore you can use these without having root privileges. These commands may overwrite an existing transsys build directory. The FAQ author(s) are not aware of any other damage that these commands may cause. You may have to update your PATH and PYTHONPATH environment variables for your transsys installation to work.


Tips and Tricks

My transsys models take very long to equilibrate, what can I do about that?

Notice that the speed of equilibration depends on the smallest decay rate in your transsys program. Therefore, bringing up your decay rates as much as possible will speed up equilibration. However, too high decay rates will result in large numerical artifacts, this typically implies a limit for increasing decay rates.

Can I use mechanisms other than Michaelis-Menten kinetics to model activation and repression?

Yes. You can use arbitrary mathematical expressions with the constitutive promoter element.


Using the Python API

Please see the [1].