-
Notifications
You must be signed in to change notification settings - Fork 2
Protein Translocation
Nikita Mandrik edited this page Nov 6, 2015
·
5 revisions
ProteinTranslocation model represents the translocation of each protein monomer species into and through the cell membrane (See also model summary).
- Small molecules: involved in ATP hydrolysis
- ATP
- ADP
- water
- PI
- H+
- Protein monomers: Includes both cytosolic and membrane/extracellular compartmentalizations for each translocated protein
- Enzymes:
- Sec translocase pore: MG_055_170_277_464_476_20MER
- SecA translocase: MG_072_DIMER
- Stoichiometry:
- Catalysis: SecA translocase (
MG_072_DIMER
), Sec translocase pore (MG_055_170_277_464_476_20MER
) - Kinetics: first order in the monomers and SecA concentrations
-
*.txt
files are antimony versions of the model -
*.xml
files are sbml l2v4 versions of the model
ProteinTranslocation.xml from the root folder whole-cell-reduced\ProteinTranslocation
is the most recent version of the model.
-
old_versions
folder contains old versions of the model -
src
folder contains script for antimony version of the model generating using.csv
files from thesrc/resources
folder. These filesspecies.csv
andreactions.csv
contains data (separated by;
) about species and reactions respectively from the Jonathan's table (also can be found on the Google Drive)
- Go to
src
folder - Run
javac *.java
to compile script (if one of these files is changed it might be compiled again) - Run
java -classpath . AntimonyBuilder [resultFilePath] [modelName] [pathToFileWithAllowableNames]
. Script will write Antimony model named asmodelName
parameter (optional) orProteinTranslocation
(by default) in the file specified by theresultFilePath
parameter (optional). By default antimony file will be saved in the root folderwhole-cell-reduced\ProteinTranslocation
with nameProteinTranslocation.txt
. Also there is a possibility to create model with given subset of species presented. To set path to the file with species names subset the 3rd parameterpathToFileWithAllowableNames
(optional) should be set.
Note: if you want to use, e.g.,modelName
parameter,resultFilePath
parameter must be set. To usepathToFileWithAllowableNames
parameter one must set bothmodelName
andresultFilePath
parameters. - Use something to generate SBML file from the created Antimony. I use BioUML to do it.