Skip to content

Commit bb77f79

Browse files
committed
initial commit from 2605 of covertlab SVN repo
0 parents  commit bb77f79

File tree

854 files changed

+185003
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

854 files changed

+185003
-0
lines changed

README.txt

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
This package provides the M. genitalium whole-cell knowledge base and simulation.
2+
The script install.php installs the knowledge base and simulation, including
3+
configuring the whole-cell model code for a Rocks Linux cluster. See install.php
4+
for installation instructions.
5+
6+
7+
Obtaining the knowledge, model, and simulation results
8+
=================================================================================
9+
All of the code, training data, and results of the whole-cell study are freely
10+
available at simtk.org/home/wholecell. All of the code, training data, and results
11+
are released under the MIT license. See license.txt for further information.
12+
13+
14+
About the M. genitalium Whole-Cell Model & Knowledge Base
15+
=================================================================================
16+
Please see the following manuscript and its accompanying supplementary information
17+
for information about the construction of the whole-cell model.
18+
19+
Karr JR, Sanghvi JC, Macklin DN, Gutschow MV, Jacobs JM, Bolival B, Assad-Garcia N,
20+
Glass JI, Covert MW. A Whole-Cell Computational Model Predicts Phenotype from Genotype.
21+
In submission (2012).
22+
23+
24+
User Support
25+
=================================================================================
26+
Please contact the authors for help installing and/or using this
27+
software. See wholecell.stanford.edu for contact information.
28+
29+
30+
Development Team
31+
=================================================================================
32+
The M. genitalium whole cell model and knowledge base were developed at Stanford University by
33+
- Jonathan Karr, Graduate Student in Biophysics
34+
- Jayodita Sanghvi, Graduate Student in Bioengineering
35+
- Derek Macklin, Graduate Student in Bioengineering
36+
- Jared Jacobs, Software Engineer
37+
- Markus Covert, Assistant Professor of Bioengineering

build.sh

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/sh
2+
#
3+
# Compiles and runs tests. Arguments:
4+
# 1. target name (e.g. "runMediumTests" for runMediumTests.m)
5+
6+
if [ ! -f "$1.m" ]
7+
then
8+
echo No such file: $1.m
9+
exit 1
10+
fi
11+
12+
echo Compiling $1...
13+
14+
rm -rf bin/$1
15+
mkdir -p bin/$1
16+
./runMcc.pl runSimulation.prj $1
17+
chmod -R 775 bin/$1
18+
19+
if [ $? -ne 0 ]
20+
then
21+
echo Compile failed.
22+
exit 1
23+
fi
24+
25+
echo Compile succeeded
26+
exit 0

buildAndRunTests.sh

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/bin/sh
2+
#
3+
# Compiles and runs tests. Arguments:
4+
# 1. target name (e.g. "runMediumTests" for runMediumTests.m)
5+
# 2. path to MATLAB Compiler Runtime (e.g. "/share/apps/MATLAB/MATLAB_Compiler_Runtime/v714")
6+
7+
if [ ! -f "$1.m" ]
8+
then
9+
echo No such file: $1.m
10+
exit 1
11+
fi
12+
13+
#build
14+
./build.sh $1
15+
if [[ $? -ne 0 ]]
16+
then
17+
exit 1
18+
fi
19+
20+
#run
21+
build=$1
22+
pathToRunTime=$2
23+
shift; shift;
24+
fname=$(mktemp $(dirname $(readlink -f $0))/tmp/test.out.XXXXXX)
25+
./run.sh $build $pathToRunTime $fname $*
26+
27+
#parse output
28+
result="$(tail -2 $fname)"
29+
if [[ "$result" =~ "NO DISPLAY$" ]]
30+
then
31+
result="$(tail -4 $fname)"
32+
if [[ "$result" =~ "[Pp][Aa][Ss][Ss][Ee][Dd] in [0-9. a-z]*[.\s]*" ]]
33+
then
34+
exit 0
35+
fi
36+
else
37+
if [[ "$result" =~ "[Pp][Aa][Ss][Ss][Ee][Dd] in [0-9. a-z]*[.\s]*$" ]]
38+
then
39+
exit 0
40+
fi
41+
fi
42+
exit 1

compileSummary.pl

+245
Large diffs are not rendered by default.

config.m

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
function dbConnectionParameters = config()
2+
%CONFIG Returns configuration values.
3+
%
4+
% Author: Jonathan Karr, jkarr@stanford.edu
5+
% Affilitation: Covert Lab, Department of Bioengineering, Stanford University
6+
% Last updated: 9/21/2010
7+
8+
%% knowledgebase
9+
dbConnectionParameters.hostName = 'covertlab.stanford.edu';
10+
dbConnectionParameters.schema = 'wholecell';
11+
dbConnectionParameters.userName = 'wholecell';
12+
dbConnectionParameters.password = 'wholecell';

data/Simulation_fitted-R2120.mat

2.01 MB
Binary file not shown.

data/Simulation_fitted-R2139.mat

2.01 MB
Binary file not shown.

data/Simulation_fitted-R2163.mat

2.01 MB
Binary file not shown.

data/Simulation_fitted-R2395.mat

2.01 MB
Binary file not shown.

data/Simulation_fitted-R2576.mat

2.02 MB
Binary file not shown.

data/Simulation_fitted.mat

2.02 MB
Binary file not shown.

data/allDeletionSimulations.json

+534
Large diffs are not rendered by default.

data/allSimulationBatches.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[
2+
{id:'2012_01_03_20_29_11', timestamp:'2012_01_03_20_29_11', pbsid:'29470', date:'2012-01-03 20:29:11', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2261', nConditions:6, nSimulations:30},
3+
{id:'2011_12_05_00_16_20', timestamp:'2011_12_05_00_16_20', pbsid:'23676', date:'2011-12-05 00:16:20', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2207', nConditions:16, nSimulations:80},
4+
{id:'2011_11_11_21_29_19', timestamp:'2011_11_11_21_29_19', pbsid:'22313', date:'2011-11-11 21:29:19', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2176', nConditions:525, nSimulations:525},
5+
{id:'2011_11_11_21_28_00', timestamp:'2011_11_11_21_28_00', pbsid:'21261', date:'2011-11-11 21:28:00', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2176', nConditions:525, nSimulations:525},
6+
{id:'2011_11_11_21_25_46', timestamp:'2011_11_11_21_25_46', pbsid:'20209', date:'2011-11-11 21:25:46', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2176', nConditions:525, nSimulations:525},
7+
{id:'2011_10_31_21_15_45', timestamp:'2011_10_31_21_15_45', pbsid:'19104', date:'2011-10-31 21:15:45', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2155', nConditions:525, nSimulations:525},
8+
{id:'2011_10_26_19_26_15', timestamp:'2011_10_26_19_26_15', pbsid:'18052', date:'2011-10-26 19:26:15', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2149', nConditions:525, nSimulations:525},
9+
{id:'2011_10_25_01_45_44', timestamp:'2011_10_25_01_45_44', pbsid:'17787', date:'2011-10-25 01:45:44', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2139', nConditions:1, nSimulations:128},
10+
{id:'2011_10_20_10_09_12', timestamp:'2011_10_20_10_09_12', pbsid:'17117', date:'2011-10-20 10:09:12', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2129', nConditions:334, nSimulations:334},
11+
{id:'2011_10_19_03_04_42', timestamp:'2011_10_19_03_04_42', pbsid:'16987', date:'2011-10-19 03:04:42', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2125', nConditions:64, nSimulations:64},
12+
{id:'2011_10_19_02_53_45', timestamp:'2011_10_19_02_53_45', pbsid:'16850', date:'2011-10-19 02:53:45', firstName:'Jonathan', lastName:'Karr', affiliation:'Covert Lab, Department of Bioengineering, Stanford University', email:'jkarr@stanford.edu', userName:'jkarr', hostName:'covertlab-jkarr.Stanford.EDU', ipAddress:'171.65.92.146', revision:'2125', nConditions:1, nSimulations:64}
13+
]

data/deletionStrainSimulations.json

+1
Large diffs are not rendered by default.

data/fittedConstants.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"processes":{"ChromosomeCondensation":{},"ChromosomeSegregation":{},"Cytokinesis":{},"DNADamage":{},"DNARepair":{},"DNASupercoiling":{},"FtsZPolymerization":{},"HostInteraction":{},"MacromolecularComplexation":{},"Metabolism":{"macromoleculeStateInitializationGrowthFactor":[],"unaccountedEnergyConsumption":[]},"ProteinActivation":{},"ProteinDecay":{},"ProteinFolding":{},"ProteinModification":{},"ProteinProcessingI":{},"ProteinProcessingII":{},"ProteinTranslocation":{},"RNADecay":{},"RNAModification":{},"RNAProcessing":{},"Replication":{},"ReplicationInitiation":{},"RibosomeAssembly":{},"TerminalOrganelleAssembly":{},"Transcription":{"transcriptionUnitBindingProbabilities":[]},"TranscriptionalRegulation":{},"Translation":{},"tRNAAminoacylation":{}},"states":{"Chromosome":{},"FtsZRing":{},"Geometry":{},"Host":{},"Mass":{"dryWeightFractionCarbohydrate":[],"dryWeightFractionDNA":[],"dryWeightFractionIon":[],"dryWeightFractionLipid":[],"dryWeightFractionNucleotide":[],"dryWeightFractionPolyamine":[],"dryWeightFractionProtein":[],"dryWeightFractionRNA":[],"dryWeightFractionVitamin":[]},"MetabolicReaction":{},"Metabolite":{"biomassComposition":[],"biomassProduction":[],"byproducts":[]},"Polypeptide":{},"ProteinComplex":{},"ProteinMonomer":{},"RNAPolymerase":{},"Ribosome":{},"Rna":{"expression":[]},"Stimulus":{},"Time":{"replicationInitiationDuration":[]},"Transcript":{}}}

0 commit comments

Comments
 (0)