// Also, write a file that contains the paths of where we intend to write all the results
public boolean startSims()
{
// Gather parameters
CSVList k_TRANSCRIPTION = new CSVList(this.parameters.getValueOfParameter(Statics.k_TRANSCRIPTION));
CSVList ratio_TRANSCRIPTION_2_REPLICATION = new CSVList(this.parameters.getValueOfParameter(Statics.ratio_TRANSCRIPTION_2_REPLICATION));
CSVList ratio_GENOME_2_ANTIGENOME = new CSVList(this.parameters.getValueOfParameter(Statics.ratio_GENOME_2_ANTIGENOME));
CSVList stoich_ERROR = new CSVList(this.parameters.getValueOfParameter(Statics.stoich_ERROR));
CSVList k_POL_FORMATION = new CSVList(this.parameters.getValueOfParameter(Statics.k_POL_FORMATION));
CSVList k_CONDENSATION = new CSVList(this.parameters.getValueOfParameter(Statics.k_CONDENSATION));
CSVList k_DETECTION = new CSVList(this.parameters.getValueOfParameter(Statics.k_DETECTION));
CSVList pol_SPEED = new CSVList(this.parameters.getValueOfParameter(Statics.pol_SPEED));
CSVList pol_SPACING = new CSVList(this.parameters.getValueOfParameter(Statics.pol_SPACING));
CSVList rib_SPEED = new CSVList(this.parameters.getValueOfParameter(Statics.rib_SPEED));
CSVList rib_SPACING = new CSVList(this.parameters.getValueOfParameter(Statics.rib_SPACING));
this.paramTable = new DimTable();
this.paramTable.add(new Dim(Statics.k_TRANSCRIPTION, k_TRANSCRIPTION));
this.paramTable.add(new Dim(Statics.ratio_TRANSCRIPTION_2_REPLICATION, ratio_TRANSCRIPTION_2_REPLICATION));
this.paramTable.add(new Dim(Statics.ratio_GENOME_2_ANTIGENOME, ratio_GENOME_2_ANTIGENOME));