Skip to main content

ORIGINAL RESEARCH article

Front. Bioeng. Biotechnol., 10 May 2021
Sec. Synthetic Biology
Volume 9 - 2021 | https://doi.org/10.3389/fbioe.2021.660148

A Framework for Implementing Metaheuristic Algorithms Using Intercellular Communication

  • 1School of Informatics and Telecommunications, Faculty of Engineering and Sciences, Diego Portales University, Santiago, Chile
  • 2Department of Biodiversity, Ecology and Evolution (Biomathematics), Faculty of Biological Sciences, Complutense University of Madrid, Madrid, Spain

Metaheuristics (MH) are Artificial Intelligence procedures that frequently rely on evolution. MH approximate difficult problem solutions, but are computationally costly as they explore large solution spaces. This work pursues to lay the foundations of general mappings for implementing MH using Synthetic Biology constructs in cell colonies. Two advantages of this approach are: harnessing large scale parallelism capability of cell colonies and, using existing cell processes to implement basic dynamics defined in computational versions. We propose a framework that maps MH elements to synthetic circuits in growing cell colonies to replicate MH behavior in cell colonies. Cell-cell communication mechanisms such as quorum sensing (QS), bacterial conjugation, and environmental signals map to evolution operators in MH techniques to adapt to growing colonies. As a proof-of-concept, we implemented the workflow associated to the framework: automated MH simulation generators for the gro simulator and two classes of algorithms (Simple Genetic Algorithms and Simulated Annealing) encoded as synthetic circuits. Implementation tests show that synthetic counterparts mimicking MH are automatically produced, but also that cell colony parallelism speeds up the execution in terms of generations. Furthermore, we show an example of how our framework is extended by implementing a different computational model: The Cellular Automaton.

Introduction

Evolution is a trademark process involved in all living organisms. It is the process that drives organism adaptation to better survive and thrive in their surrounding environment. This process occurs at a genotypic level involving mainly genetic recombination and mutations of DNA material which translates into potential changes at a phenotypic level of the organism. Appropriate and useful organism phenotypical traits are selected and passed onto newly generated offspring, who in turn recombine and mutate their genetic material. It is in following this cycle that organisms evolve and develop new useful phenotypical traits, while other traits are lost (Darwin and Costa, 2009; Freeman and Herron, 2015; Futuyma and Kirkpatrick, 2017; Losos, 2017). The transformation of the individual organisms within populations can be seen as a trial-and-error process in which each variation is tested for adaptation to the environment conditions. Genetic diversity produced by evolution is studied and used as inspiration in computational methods such as Evolutionary Algorithms (EAs) (Bäck, 1996; De Jong, 2016). These algorithms are generally used for approximating solutions to optimization problems and rely on a pool of potential solutions that evolve over time.

Since Evolution is a standard occurring process in all living organisms, it is natural to relate EAs to them. Specifically, microbiology experiments and Synthetic Biology constructs can be used as a platform for carrying out the execution of said algorithms, as cell colonies offer immense processing power coming from each individual cell, and large counts of these entities function simultaneously. Also, natural processes involved in cell operation, such as recombination or mutation originally inspire EAs. For instance, synthetic bacteria have been a source of inspiration for the design of EAs illustrating its utility solving simple instances of optimization problems such as function optimization, 0/1 knapsack problem and Hamiltonian path problem (Gargantilla Becerra et al., 2021). Therefore, using these processes in the design and implementation in a cell colony mimics their computational counterpart. Native cell processes such as growth, mutation and intercell communication are components that can be mapped to tasks pertaining to computational EAs, greatly easing the translation. The described relationship has already been addressed by Directed Evolution (Arnold, 1998, 2018) and its variants (English et al., 2019; Wu et al., 2019; Yang K. K. et al., 2019; Morrison et al., 2020). However, the control level of Directed Evolution is not as specific as the one reached in computational EAs, since they use a hand-tailored definition of the fitness function for evaluating and selecting solutions. Furthermore, many computational methods can be translated to Synthetic Biology constructs that emulate their operation, expanding the array of techniques that can be applied on a same problem and improving automation over Directed Evolution. Moreover, cell colonies of synthetic bacteria have been successfully used to build the evaluation function of an EA to evaluate the fitness of candidate solutions (Gargantilla Becerra and Lahoz-Beltra, 2020). It is in this spirit that we study Metaheuristic procedures (MH) (Glover and Kochenberger, 2006; Talbi, 2009; Sörensen, 2015), a larger class of procedures that contain EAs. Inspiration upon which these techniques are designed range from metallurgy processes (Kirkpatrick et al., 1983; van Laarhoven and Aarts, 1987; Aarts and Korst, 1988) through bird flock movement patterns (Kennedy and Eberhart, 1995; Shi, 2001; Poli et al., 2007), ant colony food foraging (Dorigo and Di Caro, 1999; Dorigo et al., 2006), and of course Darwinian evolution (Davis, 1991; Holland, 1992) (and a variant inspired on a microorganism setting (Harvey, 2009)).

In this work, we propose a general mapping, relating Synthetic Biology constructs to MH elements, such that any procedure of that class can be modeled as a synthetic circuit. This is due to MH sharing common elements and similarities that can be generalized. This alternative paradigm for designing, implementing and executing MH is developed in the context of large-scale individual systems. The original population of solutions that take part in the execution is replaced by a set of individual entities, such as cells (in this work, bacteria specifically). Therefore, large-scale parallelism is a consequence of moving toward this new paradigm. Also, the use of MH within a biological environment expands their scope by establishing a wider array of possible implementations and problems to tackle (such as Protein Design (Lippow and Tidor, 2007; Ollikainen et al., 2009; Gainza et al., 2016), or integration with Directed Evolution procedures). This association is logical, as these techniques work on a set of different elements (solutions) and apply changes to these elements to explore a large search space and eventually reach a good solution in a reasonable amount of time according to specific constraints.

MH have been long studied and possess a defined structure (Sörensen et al., 2018). One approach toward implementing AI using Synthetic Biology is shown in this article in the form of a framework that automates the mapping of MH elements to synthetic constructs. A proof-of-concept of this framework is implemented to show that automation of the process and generation of readily executable simulation files for the cell colony simulator gro (Jang et al., 2012; Gutiérrez et al., 2017) is feasible. It also seeks to demonstrate that by using the implementation framework, the intricacies and design of the algorithm that will be simulated need not be fully understood, since a generator automates the production of skeleton simulation files only based on specific input parameters such as conjugation rates, mutation rates, and environmental signal diffusion and degradation rates. Finally, execution speed approach is compared (in terms of generations) between simulations automatically generated by our framework implementation and standard (computational) versions of their counterparts. With this, we show that our approach enables the advantage of the intrinsic parallelism in cell colonies to explore the search space faster.

Materials and Methods

gro Simulator

gro (Jang et al., 2012; Gutiérrez et al., 2017) is a 2D Agent based Model (AbM) bacterial colony simulator, where the behavior of each cell is simulated individually. Bacteria grow and divide according to general parameters which are set and can be modified during simulation execution. gro was originally conceived as a rule-based functional language to program bacteria, but was then extended to also accept protein-based specifications to simulate the colony behavior. The simulator has a GUI which is used to visually assess the outcome of the simulation. It is especially helpful for observing spatial and temporal patterns.

After its extension, gro is capable of reaching 105 simulated bacteria in under 10 min. Other features added were nutrient consumption, a protein-based specification language, a gene expression module to handle those dynamics automatically, and cell-cell communication in the form of a new signal module and bacterial conjugation. These improvements offer a testbed for prototyping and debugging gene circuits at an initial stage, and correcting any fundamental flaws the circuits may have. Also, the spatial and visual component of the simulator are key for identifying and determining how cell-cell communication influences the execution of the simulated gene circuits.

MH Framework, Repositories and Hardware

To test our framework, we first generated gro file skeletons using Simulated Annealing (SA) and Simple Genetic Algorithm (SGA) automated generators for the specification files. These skeleton files were instances of the Boolean Satisfiability problem (SAT). Then, our team ran them on the gro simulator to assess their performance and demonstrate that optimal solutions could be reached using the proposed algorithms. Finally, we ran similar tests on the Cellular Automaton (CA) model, which we obtained by reusing elements generated for an SGA gro specification instance, and extended it into a CA instance.

We used a new version of gro developed by AI-UDP for the simulations. This new version can be found at https://github.com/AI-UDP/GRO63. All simulations (gro, C, and C++) were run in MacOS Catalina version 10.15.2 and in Windows 10. The interpreter to generate the gro simulation files was written in C++ and can be found at https://github.com/AI-UDP/MHInterpreter. Machines used for simulations were two MacBook Pro core i5 2.7 GHz and 2.5 GHz with 8GB RAM and a Pentium G4560 3.5 GHz with 16GB RAM.

Results

One key aspect for using MH is to be able to represent all elements necessary for the execution of the procedure. Mainly, this involves the solution pool used in the execution, a fitness function to evaluate different solutions, and operations that carry out the exploration of new solutions. The application and design of these elements in a context of Synthetic Biology is not straightforward, as often they are dependent on the problem to solve. However, in this work, we propose a general mapping scheme to relate each of the elements which participate in an MH to a functional synthetic construct and make the association easier. The whole set of constructs is then organized and distributed over a pool of individuals (in this case, bacteria) to represent, and reproduce dynamics associated to the procedures. These constructs are designed from a general standpoint and seek to translate each of the involved components using transcriptional logic gates, intercellular communication mechanisms, and external elements such as environmental signals. It should be emphasized that the mapping presented here is a proposal and could be complemented and extended with other kinds of mechanisms, such as CRISPR (Cong et al., 2013; Xu and Qi, 2019) systems, external conditions such as temperature, nutrient consumption, or specific spatial conditions. Also, it should be stressed that our proposal heavily relies on intercellular communication, since it offers a higher computation power and also distributes it among the colony cells. The main intercell communication processes used were bacterial conjugation (Smillie et al., 2010; Goñi-Moreno et al., 2013; Cabezón et al., 2015) and Quorum Sensing (QS) (Nealson et al., 1970; Miller and Bassler, 2001; Waters and Bassler, 2005; Papenfort and Bassler, 2016).

The framework is composed by three parts (a depiction of the components and their relationship can be found in Figure 1):

FIGURE 1
www.frontiersin.org

Figure 1. Framework components. Intercellular communication processes were chosen as the tools to implement evolution operators in MH for cell colonies. Depending on what MH is implemented, each process could play a different role. MH logic and representation are encoded using transcriptional regulation. However, other possibilities such as the use of RNA or CRISPR mediated regulation remain open to be explored as new forms of logic and representation for MH. The selected tools are then mapped to the logic of the specific MH, generating a model. Once the model and mapping have occurred, a gro simulation file is outputted and run to collect data on the behavior of the algorithm.

(1) A set of parameters that configure the execution of the instance of a MH. This set of parameters is always the same for the selected technique, despite having specific values to solve different problems. At this stage, the input parameters for the procedure are abstracted and generalized for multiple instances of the selected MH (see Table 1).

(2) A mapping/translation language to relate specific elements of the MH technique to genetic circuits. This is the fundamental idea and value of the presented work, as it provides the blueprints for automating the design of MH in Synthetic Biology (see Figures 2, 3A). How specific elements are ported to a genetic circuit will be presented further in this section.

(3) An interpreter that automates the translation of the specification of the algorithm into a skeleton of a gro source code, so the MH can readily be simulated and tested. The output design generation of this interpreter is based on (2) and its configuration on (1).

TABLE 1
www.frontiersin.org

Table 1. Fundamental parameters for modeling MH in cell colonies.

FIGURE 2
www.frontiersin.org

Figure 2. Depiction of how the SAT problem relates to the elements in cells. (A) Clauses are identified in a propositional formula, and each of them is encoded as a single protein within a plasmid. (B) The plasmids in the cell are used to evaluate the fitness of a solution (set of plasmids seeking to satisfy the formula with their truth values). The plasmids may be present or absent. According to whether the values in the plasmid contribute to the correct satisfaction of the whole formula, if it fully complies, the cell expresses GFP, else it does not glow.

FIGURE 3
www.frontiersin.org

Figure 3. General logic mapping for SA and SGA. (A) General gene network mapping for the MH framework. A three-tier design is proposed: the first tier are conjugative plasmids (x and y) holding input proteins that are used by the fitness function to assess the quality of the solution. A second tier is a transition one in which the input signals are transduced into standard proteins (araC and trpR) for their evaluation. At this stage, the set of proteins which should be absent express araC to induce cI in the next tier. This is due to the fact that if any of those proteins is present, it activates cI, making the solution sub-optimal. Conversely, the set of proteins that should be present inhibit the expression of trpR, forcing the presence of all of them. If all of them are present, the following inhibition chain fails to repress GFP, evaluating correctly for those plasmids. Finally, tier three is the evaluation circuit in which the input signals are checked against their respective set (if they need to be present, absent, or it is indifferent if they are present). This part of the circuit acts works as two inverters feeding an OR gate (Pλ): the first one (stemming from the x protein branch) evaluates for plasmids that should not be present and activates cI to block expression of GFP. The branch corresponding to the y protein evaluates for plasmids that should be present by using lacI to inhibit the expression of cI, allowing for GFP expression if all the required plasmids of that branch are present. If either condition fails, GFP will not be expressed, meaning it is not an optimal solution. However, if said evaluation is successful, it triggers GFP expression. That action may be replaced by any other such as increased conjugation rate or lower division times. (B) The mutation operation for SGA acts on the expression of a specific protein in the design, changing the solution to evaluate. The mutation rate parameter for SGA maps directly to the mutation rate configured in the simulation. This operation accounts for global search in terms of the solution exploration. (C) Crossover is a recombination operation that we mapped to bacterial conjugation. Part of a foreign solution is integrated to the current one. In our mapping, we individualized a single protein to be held by a unique plasmid, therefore mobilizing a single protein between solutions for recombination. Conjugation rate is the parameter that accounts for the SGA crossover rate parameter. (D) SA is largely based on a temperature decrease function: we use environmental signals (such as aTc or IPTG) as its representation. The temperature is associated to the signal concentration at a given location. The decrease is achieved by the shoving mechanical effects of the cell colony: the center of the colony experiences a greater temperature that the outer sections.

Circuit design is done sequentially over the framework on the basis of fundamental part integration and the idea that all of the components of the MH procedure are expressed in terms of these parts. Such parts merge into a more complex circuit that evaluates the inputs, and outputs a function of these inputs. The circuits implement different elements of an MH, such as fitness function, solution representation, or evolution operators.

Synthetic Circuit Designs for MH Simulation

Heuristics are embedded in MH through a fitness function that evaluates and guides the search for best solutions within a search space. As a base assumption in this context, we link the individual solution to the information inside a single cell. The presence or absence of a set of proteins of interest acts as the specific solution instance. This representation is inspired on the computational representation of a solution (a vector of values, which is in turn inspired on a chromosome). Therefore, depending on which proteins are present or absent, each cell represents an individual and independent solution.

Both evaluation and evolution dynamics are implemented by taking advantage of individual cell capabilities. Bacterial conjugation is used as the main backbone for evolution operations both in SA (Kirkpatrick et al., 1983; van Laarhoven and Aarts, 1987; Aarts and Korst, 1988) (as a solution mutation) and in SGA (Davis, 1991; Holland, 1992) (as recombination/crossover operation). Since solutions are represented as a set of proteins within a cell, perturbations of the set occur upon the arrival of a plasmid containing new proteins of interest into the cell. Fitness evaluation is organized in a synthetic circuit that senses the presence or absence of the proteins and performs a certain action (GFP expression in our gro examples) when fitness is optimal. This design decision can also be replaced by other operations such as growth rate increase/decrease or plasmid conjugation rate modification, for instance.

A summary of the proposed mappings for both SA and SGA is depicted in Figure 3.

Framework Design and Implementation

To illustrate the capabilities and flexibility of the framework, we first present the phases involved in the parameterization, design and construction of the model along with the whole execution process associated with our implementation of the framework.

Parameter Collection for Model Generation

The first phase relies on user-defined parameters to guide the shaping and automated generation of the model skeleton. Specifically, two of the three techniques mentioned above (SGA and SA) are examples that can be promptly executed in cell colony simulators using our framework implementation. The third model, the CA, is shown as an example of how it would be possible to extend the functionalities and models proposed by our framework through relating to the underlying mappings and models.

The fitness function and constraints associated to each of the MH (SGA and SA) are encoded through references to proteins and their interactions: since in gro, proteins are the unit for directing cell behavior, in our framework, they will mainly act as the base variables. At first, the number of proteins used in the system is entered as a parameter, but also if each protein should be present, absent, or if it does not matter for describing a good solution to the problem. Concretely, the evaluation is embodied in the fitness function. Also, the initial and final number of cells in the colony for the simulation are specified as additional parameters (as a control mechanism for the simulation itself). It should also be noted that other proteins are used in the construction of the logic processes driving the algorithmic steps of each MH. Algorithm-related circuit construction process is automatically done in the next step.

These are all general parameters that are useful for specifying both SGA and SA. However, some specific parameters must also be collected in the case of each algorithm. For SGA, both mutation and crossover ratios must be provided. Mutation is implemented as an arbitrary change in the state of a protein within a cell, while crossover is simulated as a bacterial conjugation event. In the case of SA, the basic additional parameter is the temperature decrease ratio. In terms of gro simulations, this ratio is translated to the diffusion factor of an environmental signal (such as aTc), since the temperature can be associated to the signal concentration.

For implementing CA, they key parameter is setting intercell signaling using appropriate diffusion and degradation ratios. Such parameter configures the distance from the signaling cell to its furthest neighbor. The goal of this configuration process is to emulate the Moore neighborhood in 2D. Within these settings, rules are encoded based on the concentration of signal sensed by cells. An example is shown in Figure 4, and a summary of the parameters involved in the framework (and for CA modeling) is compiled in Table 1.

FIGURE 4
www.frontiersin.org

Figure 4. Approximation of Moore neighborhood using cells. CA execution is strongly dependent on the concept of neighborhood. 2D CA typically work on a Moore neighborhood. To reproduce this idea in the context of cell colonies, autoinducer sensing is used. The size of the neighborhood is dependent directly on the reach of the autoinducers. In terms of our simulation model, this is represented through diffusion and degradation values of the intercellular signal.

Translation Into the Base Model for Simulation

Once the basic parameters and elements for the MH have been chosen and put in place, a model is constructed. This model summarizes the operation rules according to the specific mapping of the different elements present in the chosen technique to simulation instructions and constructs. The models are predefined and are an extensible (although specific) representation of the algorithms. Under our framework, it is possible to capture the essence and approximate the dynamics of MH through genetic designs. Therefore, as it is possible to model a MH based on genetic circuits, it can also be simulated.

The core representation of these circuits lies in protein expression that each define the elements of the solution for all MH. Therefore, a candidate solution is linked to a set of proteins being expressed jointly within the cell (shown in Figure 3A). Intercell communication methods such as QS, or bacterial conjugation serve the purpose of providing a backbone for implementing operations on the existing solutions and obtaining new solutions. Specifically, under our representation, a set of plasmids hold the solution elements and their mobility aids in the dissemination of these elements within the colony. Since intercell communication is programmable, specific behavior regarding these operations can represent different operations for each MH.

Automated Generation of gro Skeleton Simulation File

Finally, with the model in place and informed by the input parameters, a simulation file generator constructs a gro simulation skeleton file. The mapping to the gro file takes place using the abstractions present in the simulator such as proteins, plasmids, environmental signals, etc. Our team implemented generators for two MH techniques: SA and SGA. These generators were written in C++ and require input of values for the respective parameters shown in Table 1. The generated skeleton gro simulation files can be directly run by the gro simulator, or can be modified by the final user for more specific operation. Figure 5 depicts the integration of the framework design and its implementation in the form of the interpreter.

FIGURE 5
www.frontiersin.org

Figure 5. Interpreter organization and workflow. The interpreter uses mappings from cell processes to specific MH evolution operators to automatically generate a gro simulation skeleton file. Input parameters such as conjugation rate, mutation rate, cell population values, among others, are used for the generation of the skeleton file according to gro syntax.

Simulation Implementation Examples

To test the framework implementation, we generated gro simulations of SGA and SA, ran the simulations, and compared their results to the ones of standard versions of the algorithms coded in C/C++. All of the simulations implement a MH for solving an adapted version of the boolean satisfiability problem (SAT) (Cook, 1971; Levin, 1973). For context, the SAT problem seeks to evaluate whether a set of truth values (true or false) assigned to propositional variables, organized in disjunctive clauses and connected through logical conjunctions, can satisfy the resulting propositional logic formula (the truth value for the whole formula is true).

In the adapted version, each boolean clause is represented by a protein under the control of a promoter as a single gene in an operon. In turn, each operon resides in a different conjugative plasmid. Hence, each clause produces a truth value that will be used to calculate the final truth value for the whole formula. Also, clauses will be arbitrarily combined within single cells, since plasmids move within the colony. In sum, each plasmid carries a boolean clause with its associated truth value.

The form of each complete solution is therefore a set of proteins within a cell, where each of them can be either present or absent. The presence of every plasmid in a cell is encoded using a bit string: if the ith plasmid is present in the individual then the ith bit is a 1, for the complementary case the ith bit is a 0. The choice of conjugative plasmids to hold each of the proteins was made to better relate to a neighborhood space among solutions and to promote mobility of the clauses to induce combinatorial variability of the potential solutions. It should be stressed that the mentioned neighborhood is not a physical neighborhood, but a logical one for the solution set. Since a set of proteins is represented as a bit string, binary neighbors of said string can be reached through conjugation. It should be noted that, unlike the original definition of the algorithm, we did not implement plasmid loss (a possible way of finding a different solution), but only relied on plasmid mobility and aggregation. Within this binary scheme, plasmid loss would account for degradation of a protein (along with the already existing mutations). However, the intrinsic limitation of the simulator is that it works with a binary definition of proteins. These settings configure solutions to evaluate within each individual cell: a set of plasmids (bearing single proteins) present in the cell (a depiction of the setup is shown in Figure 2A).

Each solution is then evaluated by a fitness function. This function is encoded in an operon that checks for a subset of necessary proteins that should be present, a subset of detrimental proteins that should be absent, and a subset of proteins that have no effect on the fitness of the solution. The operons that implement this function are also encoded in a single plasmid. Cells that comply with the requirements of the fitness function are classified as optimal solutions. In the C/C++ versions of the simulation, an optimal solution is stored upon detection and later reported. In the gro simulations, optimal solutions are marked by expressing GFP, while all other bacteria are uncolored. This is done merely for simulation purposes, but GFP can be replaced with different processes such as cell death, growth rate configuration or intercell signaling, depending on the purpose of the evaluation (please see Figure 2B).

Performance of all executions was compared in terms of number of generations (iterations, in the case of the native algorithms) until finding the first instance of an optimal solution. Other performance measures are difficult to associate given differences in operation implementations and parametrization. This choice was made because a direct time comparison is not readily associated between both types of implementations, but also, because many possible interpretations of these associations are possible. Therefore, to be able to most equally compare the performance, we selected an element which is present in both types of implementations and common to most MH algorithms: generations/iterations. Thus, gro simulation size limits were set at 10,000 bacteria which is about 6 generations (taking into account a division time of 20 min, and 200 initial cells in the colony). This was a sufficiently number of generations, as most solutions were found within 4 generations of the start of the simulation (see Tables 27).

TABLE 2
www.frontiersin.org

Table 2. Fitness function variation for SGA.

TABLE 3
www.frontiersin.org

Table 3. Mutation rate variation for SGA.

TABLE 4
www.frontiersin.org

Table 4. Crossover rate variation for SGA.

TABLE 5
www.frontiersin.org

Table 5. Initial population size variation for SGA.

TABLE 6
www.frontiersin.org

Table 6. Fitness function variation for SA.

TABLE 7
www.frontiersin.org

Table 7. Temperature decrease rate variation for SA.

Finally, and as an extension to the proposed framework, we implemented a simulation in gro relying mainly on QS, and one in C. The goal was to map the idea of Moore neighborhood to a cell colony context (see Figure 4). To preserve a static neighborhood, we eliminated growth from the colony simulation. The implemented CA simulation was an adaptation of Conway’s Game of Life (Berlekamp et al., 1982). The synthetic circuit we propose to implement this logic is based on the idea of band detection (Basu et al., 2005; Rodríguez Regueira et al., 2019): overcrowding and under-crowding are conditions that induce grid cell death, while a mid-level crowding amount induces grid cell life. The proposed equivalence between the original Game of Life model and the gro simulation is that a grid cell should be mapped to a single cell in a colony.

The color code for the gro simulations was to use RFP for live cells and uncolored cells for “dead” ones. Cell state is determined based on the concentration of AHL at the cell location: high and low concentrations induce the cell to the “death” state, while a mid-level concentration makes the cell glow red. There are also some GFP cells, which have the task of starting the system, since there is no initial amount of AHL in the environment. These cells are placed randomly in the colony and are controlled by an environmental signal (aTc) as a start switch, and later continue their operation as normal cells.

A summary of the circuits implemented for all gro simulations is depicted in Figure 6.

FIGURE 6
www.frontiersin.org

Figure 6. Circuit implementation and simulation. (A) SGA circuit implementation and simulation. The set of plasmids required to be absent for the fitness function to be optimal are organized in an OR gate manner. If any protein of this set is present, it triggers the cI repressor which in turn represses the fitness reporting (GFP for this example). The plasmids required to be present are processed through an AND gate design: if any of these proteins are missing, the trpR repressor causes the final cI repressor to act on the GFP reporting. Proteins not included in this design are omitted from the fitness evaluation, which is equivalent to a “don’t care” classification in terms of fitness values. All plasmids encoding proteins for evaluation are conjugative. Please see Figure 3A caption for details on how the input plasmids, transduction circuits, and fitness evaluation circuit were designed. (B) The SA implementation follows a very similar design to the one made for SGA, however, it incorporates a temperature sensing module, in which aTc concentration regulates conjugation frequency, having higher conjugation rates when aTc concentration is higher, and gradually lower ones as aTc concentration diminishes. This occurs by negatively regulating the fundamental bacterial conjugation rel protein, with the tetR repressor, and cancelling the repression in high aTc concentration zones. (C) A Game of Life (CA) design is implemented in two parts. It should be noted that a CA does not use a fitness function, therefore does not include this part in the implementation. One of the modules initiates the system, since no AHL signals are present in the beginning (and represent the neighborhood signaling for a “live cell”). The system starts by subjecting the cells to an aTc zone to kickstart the production of AHL (by canceling the tetR repressor). Also, these starting cells are identified by a GFP marker. Once the system is started, the first module ceases its operation and the other module, an adaptation of a band detector (Basu et al., 2005), evaluates the Game of Life in a mid-range concentration of AHL (for assessing live cells maintaining their state or dead cells coming to life). This second module is the one that keeps the CA running afterward.

SGA Simulation Examples

The crossover operation in these simulations is mapped to bacterial conjugation between cells. Conjugation rate is therefore associated to the crossover rate parameter of the original SGA. Mutation operation was modeled as promoter mutation leading to incorrect functioning of the circuit, and arbitrary change in protein expression. Selection is random, since arbitrary recombination occurs, and bacterial conjugation is a simulated as a stochastic process. A notable difference among both versions is that the C++ version uses a solution pool of fixed size, however, the solution pool in the gro version grows.

Tests were performed both on the C++ and gro versions by varying the fitness function to evaluate, the mutation rate, crossover rate, and population size. A baseline configuration for all simulations was: the 1,100 bit string for fitness function, 1% crossover rate, 1% mutation rate and 200 initial solutions. Using this baseline configuration, respective parameters were varied to get the results for the execution of SGA. The initial populations for all simulations were composed by 50% of empty solutions (holding no plasmids initially) and 50% holding a single plasmid, distributed equally. gro simulations were stopped when a population of 10,000 cells was simulated. All simulations were executed 30 times.

SA Simulation Examples

The C version of the SA algorithm uses the following parameters: fitness function, number of plasmids, initial temperature, the minimum temperature that marks the end of the execution of the program, and alpha (a value that denotes the decrease rate in temperature). For this instance of the model, the temperature decrease is encoded as a linear function with the alpha value being strictly lower than one. It should be noted that this version of SA works with a single solution. In contrast, the gro version of SA uses several solutions (each one is an individual bacterium). Therefore, an additional parameter is required: initial population size. The temperature value, in the gro version of the simulations, was related to an aTc global signal. This value is linked to the concentration of aTc at a given location. The temperature decrease rate (alpha) is translated to a degradation rate of the environmental signal and simulated mechanically, as cells are pushed outward and experience a lower aTc concentration (equivalent to a lower temperature).

A baseline configuration for all simulations was also set for SA: a value of 0.25 for alpha and a fitness function of 1,100. For the gro version, an additional default value of 200 was set for the initial population. As in SGA, initial populations for all simulations were made up of 50% of empty solutions (holding no plasmids initially) and 50% holding a single plasmid, distributed equally for the gro version. All simulations were executed 30 times.

CA Simulation Example

For this model, the only results that our team compared were the spatial patterns that the automaton exhibits. This comparison was made between the patterns generated by the C version and the gro version and is shown in Figure 7. QS was the enabling mechanism for calculating neighborhood rules in the gro version. A circuit based on band detection was designed to define thresholds for implementing Conway’s Game of Life.

FIGURE 7
www.frontiersin.org

Figure 7. Comparison of spatial patterns achieved by Conway’s Game of Life implementations in gro and in C. In the gro implementation, red cells represent live ones, and uncolored cells represent dead ones. The magenta regions are locations at which there is a high concentration of AHL. In the C implementation, cyan cells are live ones and black cells are dead ones.

Discussion

We presented a new framework that proposes a mapping to associate MH to genetic circuits to be encoded in a growing cell colony. The idea behind this proposal is to bring the inspiration from evolution, used for EA (and more broadly MH), back to its origins – an evolving and growing cell colony – for assessing its viability as an implementation testbed. To the best of our knowledge, this is the first definition proposal for general MH using synthetic circuits with intercell communication as implementation backbone. The aim is to generalize how MH are defined in terms of their parameters, establish base circuits which can be extended to generically model key players in MH procedures such as fitness functions, pool of solutions, or operations. We think the presented work is a two-fold contribution as first, it eliminates the need for fully understanding all intricate mechanisms of the MH despite providing a solution for immediate use, and second, automates its design thanks to the mapping that translates all of the elements into gene circuits (that are outputted in the form of a gro specification file, but also set a starting point in the design of gene circuit implementation related to the MH in the wet-lab). Another advantage is a consequence of the chosen paradigm: large scale parallelism is attained by implementing MH in bacterial colonies. An interesting feature of our work is that it represents a natural way of building MH algorithms. In other words, both the final product, i.e., MH, and the approach, i.e., the principles of Synthetic Biology, are both inspired from biology. However, one constraint to which our work is subjected at this stage is that the current version of the gro simulator works with digital proteins. We are aware that this is a large limitation and that the power of the proposed framework would increase greatly by extending its definition to work with analog values of protein expression instead of digital values. In fact, analog values for would open an avenue for better quality and more complex evaluation schemes of solutions. Another limitation of the chosen platform is that processes involving detailed dynamics of the protein such as binding affinity, substrate specificity or protein stability are exclusively handled with a generic “mutation” operation localized at the promoter (see subsection “Parameter Collection for Model Generation”) which globally accounts for the variability in the protein operation.

Table 2 (SGA) and Table 6 (SA) in the Results section show that finding an optimal solution takes longer when a more restrictive function is sought. In the context of these simulations, the term restrictive means that more plasmids must be present simultaneously in the solution. Typically, conventional SGA and SA algorithms running in a computer use a relatively “low” number of solutions. Hence, using cell colonies, orders of magnitude more solutions can be evaluated simultaneously. This offers a larger search space exploration capability and improves speed to convergence toward good solutions (Vrajitoru, 2000; Rylander, 2002) (see Table 5). For instance, under our definition of the framework, in SGA the solution pool in a bacterial colony is constantly growing, whereas the conventional definition of SGA uses a constant sized population. This growth further improves exploration capacity since each solution evolves independently. In SA the benefits of growth are two-fold: parallel exploration of the search space, but also parallel use of the temperature values and simultaneous decrease for all solutions due to the environmental signal representing the temperature value. The comparison for population in SA was not shown, since a single solution is used in the conventional version of the algorithm.

Intrinsic processes involved in the cell and necessary for implementing our versions of MH, such as growth, gene circuit operation, or intercell communication need not be artificially imposed on growing cell colonies. However, it is their integration into the model, and the level of control which must be studied and adapted to be a suitable element within the mapping. One example involving such features may be mutations that occur in the DNA sequence: although this is a process that can be directly linked to mutations in the definition of SGA, for instance, it is also practically impossible to guarantee a mutation rate (as a parameter for SGA). It is in this spirit that we tested conditions that varied the parameter values involved in the mapping. Specifically, different biological values controlling the evolution operations of the algorithms were tested: mutation rates (Table 3), bacterial conjugation rates (Table 4), and degradation rate of an environmental signal (Table 7). The values we used for the parameters of these executions were based on realistic ones (del Campo et al., 2012; Fernandez-Lopez et al., 2014) adapted for gro simulation. Evolution of the solutions is accelerated as the frequency of the biological/evolution operations is increased leading to a faster convergence to an optimal solution. Mutation and crossover operations display this tendency in Tables 3, 4, and indirectly in Table 7 (since the temperature controls mutation – encoded in our SA simulations by using bacterial conjugation). In this last case, another intervening factor in our approach is evidenced: spatial location. The gro version of SA does not show a clear tendency in its results (although it is still faster) due to randomness of initial solution placements (related to intercell communication processes and also to the intensity of the environmental signal detected). Conventional MH lack a spatial component, while the underlying nature of cell colonies forces this component upon any synthetic procedure using intercell communication. This can be seen as an advantage, since multiple interactions occur simultaneously upon a single solution. However, it also presents a disadvantage with respect to conventional solutions in that it constrains communication to nearby cells only.

From here, a couple of possible options arise as alternatives in implementing the framework. First, a redefinition of MH within a different paradigm immersed in a biological context. Adaptation of MH to a context in which some parameters and/or elements are not fixed, controllable or can be mapped. Second, a direct and artificial mapping of the MH, forcing relationships and mappings to maintain a strict link to their original definition. Since our testbed was a simulation platform, we took a hybrid approach, leaving some of the processes, such as colony growth, to be controlled by the simulator and to be interpreted within the MH execution. This flexibility can be noted, for example, by contrasting our implementation with the definition of the original version of SA (Kirkpatrick et al., 1983; van Laarhoven and Aarts, 1987; Aarts and Korst, 1988), where there is no mention or implementation of “growth”. Our implementation also uses growth to simulate the evolution of the temperature function: due to mechanical shoving of the cells outward of the colony, it simulates temperature decrease (aTc concentration was chosen to represent the temperature measure). On the other hand, a strict link was maintained to the evolution of the solution itself and encoded in the cells as a boolean function based on plasmid and/or protein presence. This could have been modeled in a different manner and only have relied on intrinsic mutation. In sum, we propose a framework and one possible mapping for relating MH to synthetic circuits, however, other possible mappings are also valid. In spite of the proposed model being extensible, a lack of well-characterized synthetic parts may pose a problem in terms of orthogonal intercell communication (Garcillán-Barcia and de la Cruz, 2008; Grant et al., 2016; Scott and Hasty, 2016; Kylilis et al., 2018) and variety of elements to construct large synthetic circuits. Recent research has reported on possible ways for addressing this problem (Yang J. et al., 2019). Future in vivo implementations can be assisted by software to help select the proper parts for the design (Huynh and Tagkopoulos, 2014; Nielsen et al., 2016). The use of systems (Purnick and Weiss, 2009) (that need not be multicellular) or networks (Amos, 2014) offer a direction for tackling the lack of synthetic parts, since a large combinatorial array of circuits with varied functionalities and operation stem from their engineering and combination. Of course, multicellular distributed circuits with intercell communication should also be taken into account, as complex computation and conditions can be described (Amos, 2014; Kamm et al., 2018).

Concerning CA, QS is a key player in our implementation, driving the simulation of the model, as it relies heavily on the signal diffusion and degradation parameters. We have shown that it is possible to simulate a CA using (simulated) cell colonies (see Figures 6, 7). The patterns achieved by the gro simulation mimic the ones from the C simulation in their shape. Dimension discrepancies can be attributed to the difference in the calculation of the Moore neighborhood for both versions, as the gro version uses an AHL signal to find and sense its neighborhood, while the C version of the neighborhood is calculated directly on a grid and does not present variability. This difference makes it very difficult to faithfully reproduce an original Moore neighborhood using QS, since it is not guaranteed that the neighborhood includes a specific number of neighbors or that diffusion can be parametrized, in vitro or in vivo, to an extent that an immediate neighborhood can be detected with a very low concentration of AHL. Depending on the values related to emission and sensing, it can cause the neighborhood to extend past immediate contiguous cell neighbors, turning a cell group into what should be a single grid cell. Therefore, it has not been possible for our gro simulations to achieve perfect fine-grained equivalence between a bacterium and a grid cell, explaining why the patterns exhibit differences.

In consequence, the framework proposed in this work can be directed toward solving problems involving a large number of variables and in which many solutions need to be evaluated. This is based on the fact that cell colonies have very large counts and large-scale parallelism in the solution evaluations is possible. Our results suggest an intrinsic advantage of cell colony approach over conventional approaches in the reduced number of generations it takes to reach an optimal solution. We think that the number of solutions that is evaluated in parallel within this context is not something that can be achieved by a traditional computer.

In terms of applicability, protein engineering (Poluri and Gulati, 2016) is an example of a problem to which this research could be applied in that the properties or functionalities of the protein are encoded as a fitness function, establishing the selection mechanism for desired proteins to be evolved. In fact, the choice of the SAT problem for our tests was due to relation in solving subproblems of Protein Design (Lippow and Tidor, 2007; Ollikainen et al., 2009; Gainza et al., 2016). At the same time, SAT has long been researched as a problem to solve through SGA (De Jong and Spears, 1989) and SA (Spears, 1993). Being the first known NP-complete problem, it is an important one in Computer Science and has been extensively researched. We also believe that each MH implemented for cell colonies following the proposed approach, and pursuing an optimization goal, represents an intracellular specialized form of Directed Evolution. It establishes further definition and control from an algorithmic standpoint, because the general algorithmic logic and evolution steps are explicitly specified. Furthermore, this form of continuous evolution is constantly being evaluated in MH by means of a fitness function. The variability for expressing and implementing this function within the context of our framework offers improved flexibility, expressiveness and specificity in the expected solutions, acting as a complement to the original definition of Directed Evolution. By including rules defined by a MH, evolution can be controlled further and more precisely, implying a multi-level Directed Evolution technique, and maintaining compatibility with recent research involving improvements in the technique (Wu et al., 2019; Yang K. K. et al., 2019). Also, it is our opinion that the process is further made autonomous, since an additional intracellular selection machinery can be programmed and expressed in terms of synthetic circuits.

Future Work

Integration with automated techniques for evaluating fitness functions (Gargantilla Becerra and Lahoz-Beltra, 2020) is an immediate expansion to the workflow which can lead to further automation in the definition of the algorithms to generate. Current research is also being invested into relating different AI algorithms such as Neural Networks, Reinforced Learning (Q-Learning) and other MH, such as Ant Colony Optimization, to our framework. Also, a related direction would be to further study the proposed framework by broadening the tools used to implement the underlying synthetic circuits. An idea in this direction would be to include bacteriophage infection as an intercell communication method (Ortiz and Endy, 2012) in the framework definition. The current renewed interest in AI, and its need for powerful computational resources, offers a huge opportunity for directing the potential of Synthetic Biology toward satisfying those needs and providing an alternative paradigm (and more natural, since inspiration for most MH actually comes from biology) for solving difficult problems. The goal of this ongoing and future research is to reach the definition of a global AI framework (Grozinger et al., 2019). A multi-level Directed Evolution testbed is something that also should be investigated as it is a large potential of the framework. Characterizing the power of CA in cell colonies and specifying the limits of the expressivity for these models becomes an important matter, as there are cases of CA that are Turing-complete models (Smith, 1971; Berlekamp et al., 1982). Another long-standing debt of our research group is the linkage of the gro simulator to accept SBOL (Madsen et al., 2019; Mısırlı et al., 2019; Baig et al., 2020; Crowther et al., 2020) specifications as input. In the context of the work presented in this paper, the association of SBOL to Agent/Individual based Model (AbM/IbM) simulators such as gro can go further and entail an AI toolkit within SBOL for immediate implementation of such algorithms in cell colonies.

Data Availability Statement

The datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://github.com/AI-UDP/MHInterpreter.

Author Contributions

MG and RL-B: framework design. JC: interpreter design and implementation. MG and JC: design and implementation of the gro versions of the algorithms. YO: design and implementation of C and C++ versions of the algorithms. MG, JC, and YO: synthetic circuit designs. YO and JC: simulation executions and data processing. MG and RL-B: wrote the manuscript. YO and MG: Supplementary Information documents. All authors have read and agreed to the published version of the manuscript.

Conflict of Interest

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Acknowledgments

The authors thank Nicolás Hidalgo for his support and help in making this paper possible. The authors also thank Luciano Ahumada, Marco Clavero, Sebastián Antón and Pablo Ramos for their comments and valuable discussions, Guillermo Iglesias for helping in automating and running the SA gro simulations, José Undurraga for the new gro version (gro63) and Luis Muñoz for collaborating, Aaron Adler and Fusun Yaman for their valuable insight in the initial stages of this work at the AI for Synthetic Biology Workshop, 2018. The authors are also grateful for all feedback received at IWBDA 2019 for developing this work. This work is dedicated to the memory of Mr. Gastón Luis Ortiz Soto.

Supplementary Material

The Supplementary Material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fbioe.2021.660148/full#supplementary-material

References

Aarts, E., and Korst, J. (1988). Simulated Annealing and Boltzmann Machines. Available online at: https://www.osti.gov/biblio/5311236 [Accessed January 21, 2020]

Google Scholar

Amos, M. (2014). Population-based microbial computing: a third wave of synthetic biology? Int. J. Gen. Syst. 43, 770–782. doi: 10.1080/03081079.2014.921001

CrossRef Full Text | Google Scholar

Arnold, F. (2018). Directed evolution: bringing new chemistry to life. Angew. Chemie Int. Ed. Engl. 57, 4143–4148. doi: 10.1002/anie.201708408

PubMed Abstract | CrossRef Full Text | Google Scholar

Arnold, F. H. (1998). Design by directed evolution. Acc. Chem. Res. 31, 125–131. doi: 10.1021/ar960017f

CrossRef Full Text | Google Scholar

Bäck, T. (1996). Evolutionary Algorithms in Theory and Practice: Evolution Strategies, Evolutionary Programming, Genetic Algorithms. Available online at: https://books.google.cl/books?hl=en&lr=&id=htJHI1UrL7IC&oi=fnd&pg= PR9&dq=evolutionary+algorithms&ots=fAs31JVwlV&sig=2sq4EotZfzwoY9l skpdneMmSDBs&redir_esc=y#v=onepage&q=evolutionary algorithms&f=false [Accessed January 21, 2020].

Google Scholar

Baig, H., Fontanarossa, P., Kulkarni, V., McLaughlin, J., Vaidyanathan, P., Bartley, B., et al. (2020). Synthetic biology open language visual (SBOL visual) version 2.2. J. Integr. Bioinform. 17:20200014.

Google Scholar

Basu, S., Gerchman, Y., Collins, C. H., Arnold, F. H., and Weiss, R. (2005). A synthetic multicellular system for programmed pattern formation. Nature 434, 1130–1134. doi: 10.1038/nature03461

PubMed Abstract | CrossRef Full Text | Google Scholar

Berlekamp, E., Conway, J., and Guy, R. (1982). Winning Ways for your Mathematical Plays, Vol. 2. Boca Raton, FL: CRC Press, 212.

Google Scholar

Cabezón, E., Ripoll-Rozada, J., Peña, A., de la Cruz, F., and Arechaga, I. (2015). Towards an integrated model of bacterial conjugation. FEMS Microbiol. Rev. 39, 81–95. doi: 10.1111/1574-6976.12085

PubMed Abstract | CrossRef Full Text | Google Scholar

Cong, L., Ran, F. A., Cox, D., Lin, S., Barretto, R., Habib, N., et al. (2013). Multiplex genome engineering using CRISPR/Cas systems. Science 339, 819–823. doi: 10.1126/science.1231143

PubMed Abstract | CrossRef Full Text | Google Scholar

Cook, S. A. (1971). “The Complexity of Theorem-Proving Procedures,” in Proceedings of the 3rd annual ACM symposium on Theory of computing. (New York, NY: ACM), 151–158.

Google Scholar

Crowther, M., Grozinger, L., Pocock, M., Taylor, C. P. D., McLaughlin, J. A., Misirli, G., et al. (2020). ShortBOL: a language for scripting designs for engineered biological systems using SyntheticBiology Open Language (SBOL). ACS Synth. Biol. 9, 962–966. doi: 10.1021/acssynbio.9b00470

PubMed Abstract | CrossRef Full Text | Google Scholar

Darwin, C., and Costa, J. T. (2009). The Annotated Origin: A Facsimile of the First Edition of on the Origin of Species. Cambridge, MA: Harvard University Press.

Google Scholar

Davis, L. (1991). Handbook of Genetic Algorithms. Available online at: http://papers.cumincad.org/cgi-bin/works/paper/eaca [Accessed January 21, 2020]

Google Scholar

De Jong, K. (2016). “Evolutionary computation: a unified approach,” in Proceedings of the GECCO 2016 Companion - 2016 Genetic and Evolutionary Computation Conference (New York, NY: Association for Computing Machinery Inc), 185–199. doi: 10.1145/2908961.2926973

CrossRef Full Text | Google Scholar

De Jong, K. A., and Spears, W. M. (1989). “Using genetic algorithms to solve NP-complete problems,” in Proceedings of the Third ICGA, Virginia, VA, 124–132.

Google Scholar

del Campo, I., Ruiz, R., Cuevas, A., Revilla, C., Vielva, L., and De la Cruz, F. (2012). Determination of conjugation rates on solid surfaces. Plasmid 67, 174–182. doi: 10.1016/j.plasmid.2012.01.008

PubMed Abstract | CrossRef Full Text | Google Scholar

Dorigo, M., Birattari, M., and Stützle, T. (2006). Ant colony optimization. IEEE Comput. Intell. Mag. 1, 28–39.

Google Scholar

Dorigo, M., and Di Caro, G. (1999). “Ant colony optimization: a new meta-heuristic,” in Proceedings of the 1999 Congress on Evolutionary Computation (New York, NY: IEEE), 1470–1477.

Google Scholar

English, J. G., Olsen, R. H. J., Lansu, K., Patel, M., White, K., Cockrell, A. S., et al. (2019). VEGAS as a platform for facile directed evolution in mammalian cells. Cell 178, 748–761. doi: 10.1016/j.cell.2019.05.051

PubMed Abstract | CrossRef Full Text | Google Scholar

Fernandez-Lopez, R., Del Campo, I., Revilla, C., Cuevas, A., and de la Cruz, F. (2014). Negative feedback and transcriptional overshooting in a regulatory network for horizontal gene transfer. PLoS Genet. 10:e1004171. doi: 10.1371/journal.pgen.1004171

PubMed Abstract | CrossRef Full Text | Google Scholar

Freeman, S., and Herron, J. C. (2015). Evolutionary Analysis. London: Pearson.

Google Scholar

Futuyma, D., and Kirkpatrick, M. (2017). Evolution. Sunderland, MA: Sinauer.

Google Scholar

Gainza, P., Nisonoff, H. M., and Donald, B. R. (2016). Algorithms for protein design. Curr. Opin. Struct. Biol. 39, 16–26.

Google Scholar

Garcillán-Barcia, M. P., and de la Cruz, F. (2008). Why is entry exclusion an essential feature of conjugative plasmids? Plasmid 60, 1–18. doi: 10.1016/j.plasmid.2008.03.002

PubMed Abstract | CrossRef Full Text | Google Scholar

Gargantilla Becerra, A., and Lahoz-Beltra, R. (2020). A microbial screening in silico method for the fitness step evaluation in evolutionary algorithms. Appl. Sci. 10:3936. doi: 10.3390/app10113936

CrossRef Full Text | Google Scholar

Gargantilla Becerra, Á, Gutiérrez, M., and Lahoz-Beltra, R. (2021). A synthetic biology approach for the design of genetic algorithms with bacterial agents. Int. J. Parallel Emergent Distrib. Syst. 37, 1–18. doi: 10.1080/17445760.2021.1879072

CrossRef Full Text | Google Scholar

Glover, F., and Kochenberger, G. (2006). Handbook of Metaheuristics, Vol. 57. Berlin: Springer Science & Business Media.

Google Scholar

Goñi-Moreno, A., Amos, M., and de la Cruz, F. (2013). Multicellular computing using conjugation for wiring. PLoS One 8:e65986. doi: 10.1371/journal.pone.0065986

PubMed Abstract | CrossRef Full Text | Google Scholar

Grant, P. K., Dalchau, N., Brown, J. R., Federici, F., Rudge, T. J., Yordanov, B., et al. (2016). Orthogonal intercellular signaling for programmed spatial behavior. Mol. Syst. Biol. 12:849. doi: 10.15252/msb.20156590

PubMed Abstract | CrossRef Full Text | Google Scholar

Grozinger, L., Amos, M., Gorochowski, T. E., Carbonell, P., Oyarzún, D. A., Stoof, R., et al. (2019). Pathways to cellular supremacy in biocomputing. Nat. Commun. 10:5250. doi: 10.1038/s41467-019-13232-z

PubMed Abstract | CrossRef Full Text | Google Scholar

Gutiérrez, M., Gregorio-Godoy, P., Pérez Del Pulgar, G., Muñoz, L. E., Sáez, S., and Rodríguez-Patón, A. (2017). A new improved and extended version of the multicell bacterial simulator gro. ACS Synth. Biol. 6, 1496–1508. doi: 10.1021/acssynbio.7b00003

PubMed Abstract | CrossRef Full Text | Google Scholar

Harvey, I. (2009). “The microbial genetic algorithm,” in Proceedings of the European conference on artificial life, Budapest, 126–133.

Google Scholar

Holland, J. (1992). Adaptation in Natural and Artificial Systems: An Introductory Analysis with Applications to Biology, Control, and Artificial Intelligence. Cambridge, MA: MIT Press.

Google Scholar

Huynh, L., and Tagkopoulos, I. (2014). Optimal part and module selection for synthetic gene circuit design automation. ACS Synth. Biol. 3, 556–564. doi: 10.1021/sb400139h

PubMed Abstract | CrossRef Full Text | Google Scholar

Jang, S. S., Oishi, K. T., Egbert, R. G., and Klavins, E. (2012). Specification and simulation of synthetic multicelled behaviors. ACS Synth. Biol. 1, 365–374. doi: 10.1021/sb300034m

PubMed Abstract | CrossRef Full Text | Google Scholar

Kamm, R. D., Bashir, R., Arora, N., Dar, R. D., Gillette, M. U., Griffith, L. G., et al. (2018). Perspective: the promise of multi-cellular engineered living systems. APL Bioeng. 2:040901. doi: 10.1063/1.5038337

CrossRef Full Text | Google Scholar

Kennedy, J., and Eberhart, R. (1995). “Particle swarm optimization,” in Proceedings of ICNN’95-International Conference on Neural Networks (New York, NY: IEEE), 1942–1948.

Google Scholar

Kirkpatrick, S., Gelatt, C. D., and Vecchi, M. P. (1983). Optimization by simulated annealing. Science 220, 671–680.

Google Scholar

Kylilis, N., Tuza, Z. A., Stan, G. B., and Polizzi, K. M. (2018). Tools for engineering coordinated system behaviour in synthetic microbial consortia. Nat. Commun. 9:2677. doi: 10.1038/s41467-018-05046-5042

CrossRef Full Text | Google Scholar

Levin, L. A. (1973). Universal sequential search problems. Probl. Peredachi Informatsii 9, 115–116.

Google Scholar

Lippow, S. M., and Tidor, B. (2007). Progress in computational protein design. Curr. Opin. Biotechnol. 18, 305–311. doi: 10.1016/j.copbio.2007.04.009

PubMed Abstract | CrossRef Full Text | Google Scholar

Losos, J. B. (2017). The Princeton Guide to Evolution. Princeton, NJ: Princeton University Press.

Google Scholar

Madsen, C., Goñi Moreno, A., Palchick, Z., Roehner, N., Atallah, C., Bartley, B., et al. (2019). Synthetic Biology Open Language (SBOL) Version 2.3. J. Integr. Bioinform. 16:20190025. doi: 10.1515/jib-2019-0025

PubMed Abstract | CrossRef Full Text | Google Scholar

Miller, M. B., and Bassler, B. L. (2001). Quorum sensing in bacteria. Annu. Rev. Microbiol. 55, 165–199.

Google Scholar

Mısırlı, G., Taylor, R., Goñi-Moreno, A., Alastair McLaughlin, J., Myers, C., Gennari, J. H., et al. (2019). SBOL-OWL: an ontological approach for formal and semantic representation of synthetic biology information. ACS Synth. Biol. 8, 1498–1514. doi: 10.1021/acssynbio.8b00532

PubMed Abstract | CrossRef Full Text | Google Scholar

Morrison, M. S., Podracky, C. J., and Liu, D. R. (2020). The developing toolkit of continuous directed evolution. Nat. Chem. Biol. 16, 610–619. doi: 10.1038/s41589-020-0532-y

PubMed Abstract | CrossRef Full Text | Google Scholar

Nealson, K. H., Platt, T., and Hastings, J. W. (1970). Cellular control of the synthesis and activity of the bacterial luminescent system. J. Bacteriol. 104, 313–322. doi: 10.1128/jb.104.1.313-322.1970

PubMed Abstract | CrossRef Full Text | Google Scholar

Nielsen, A. A. K., Der, B. S., Shin, J., Vaidyanathan, P., Paralanov, V., Strychalski, E. A., et al. (2016). Genetic circuit design automation. Science 352, aac7341. doi: 10.1126/science.aac7341

PubMed Abstract | CrossRef Full Text | Google Scholar

Ollikainen, N., Sentovich, E., Coelho, C., Kuehlmann, A., and Kortemme, T. (2009). “SAT-based protein design,” in Proceedings of the in 2009 IEEE/ACM International Conference on Computer-Aided Design-Digest of Technical Papers (New York, NY: IEEE), 128–135.

Google Scholar

Ortiz, M. E., and Endy, D. (2012). Engineered cell-cell communication via DNA messaging. J. Biol. Eng. 6:16. doi: 10.1186/1754-1611-6-16

PubMed Abstract | CrossRef Full Text | Google Scholar

Papenfort, K., and Bassler, B. L. (2016). Quorum sensing signal–response systems in Gram-negative bacteria. Nat. Rev. Microbiol. 14, 576–578. doi: 10.1038/nrmicro.2016.89

PubMed Abstract | CrossRef Full Text | Google Scholar

Poli, R., Kennedy, J., and Blackwell, T. (2007). Particle swarm optimization an overview. Swarm Intell. 1, 33–57. doi: 10.1007/s11721-007-0002-0

CrossRef Full Text | Google Scholar

Poluri, K., and Gulati, K. (2016). Protein Engineering Techniques: Gateways to Synthetic Protein Universe. Berlin: Springer.

Google Scholar

Purnick, P. E. M., and Weiss, R. (2009). The second wave of synthetic biology: from modules to systems. Nat. Rev. Mol. Cell Biol. 10, 410–422. doi: 10.1038/nrm2698

PubMed Abstract | CrossRef Full Text | Google Scholar

Rodríguez Regueira, M., Daza García, J., and Rodríguez-Patón Aradas, A. (2019). The multicellular incoherent feedforward loop motif generates spatial patterns. bioRxiv [Preprint] doi: 10.1101/579342

CrossRef Full Text | Google Scholar

Rylander, S. G. B. (2002). “Optimal population size and the genetic algorithm,” in Proceedings of the 2002 WSEAS International Conference on Soft Computing, Optimization, Simulation and Manufacturing Systems (Princeton, NJ: Citeseer), 2151–2155.

Google Scholar

Scott, S. R., and Hasty, J. (2016). Quorum sensing communication modules for microbial consortia. ACS Synth. Biol. 5, 969–977. doi: 10.1021/acssynbio.5b00286

PubMed Abstract | CrossRef Full Text | Google Scholar

Shi, Y. (2001). “Particle swarm optimization: development, applications and resources,” in Proceedings of the 2001 Congress on Evolutionary Computation (New York, NY: IEEE), 81–86. doi: 10.1109/CEC.2001.934374

CrossRef Full Text | Google Scholar

Smillie, C., Garcillán-Barcia, M. P., Francia, M. V., Rocha, E. P. C., and de la Cruz, F. (2010). Mobility of plasmids. Microbiol. Mol. Biol. Rev. 74, 434–452. doi: 10.1128/MMBR.00020-0

CrossRef Full Text | Google Scholar

Smith, A. R. (1971). Simple computation-universal cellular spaces. J. ACM 18, 339–353. doi: 10.1145/321650.321652

CrossRef Full Text | Google Scholar

Sörensen, K. (2015). Metaheuristics—the metaphor exposed. Int. Trans. Oper. Res. 22, 3–18. doi: 10.1111/itor.12001

CrossRef Full Text | Google Scholar

Sörensen, K., Sevaux, M., and Glover, F. (2018). “A history of metaheuristics,” in Handbook of Heuristics, eds R. Martí, P. Pardalos, and M. Resende (Berlin: Springer International Publishing), 791–808. doi: 10.1007/978-3-319-07124-4_4

CrossRef Full Text | Google Scholar

Spears, W. M. (1993). Simulated annealing for hard satisfiability problems. Cliques Color. Satisf. 26, 533–558. doi: 10.1090/dimacs/026/26

CrossRef Full Text | Google Scholar

Talbi, E.-G. (2009). Metaheuristics: From Design to Implementation, Vol. 74. Hoboken, NJ: John Wiley & Sons, Ltd.

Google Scholar

van Laarhoven, P. J. M., and Aarts, E. H. L. (eds) (1987). “Simulated annealing,” in Simulated Annealing: Theory and Applications (Dordrecht: Springer Netherlands), 7–15. doi: 10.1007/978-94-015-7744-1_2

CrossRef Full Text | Google Scholar

Vrajitoru, D. (2000). “Large population or many generations for genetic algorithms? Implications in information retrieval,” in Soft Computing in Information, eds R. F. Crestani and G. Pasi (Berlin: Springer), 199–222. doi: 10.1007/978-3-7908-1849-9_9

CrossRef Full Text | Google Scholar

Waters, C. M., and Bassler, B. L. (2005). Quorum sensing: cell-to-cell communication in bacteria. Annu. Rev. Cell Dev. Biol. 21, 319–346. doi: 10.1146/annurev.cellbio.21.012704.131001

PubMed Abstract | CrossRef Full Text | Google Scholar

Wu, Z., Kan, S. B. J., Lewis, R. D., Wittmann, B. J., and Arnold, F. H. (2019). Machine learning-assisted directed protein evolution with combinatorial libraries. Proc. Natl. Acad. Sci. U.S.A. 116, 8852–8858. doi: 10.1073/pnas.1901979116

PubMed Abstract | CrossRef Full Text | Google Scholar

Xu, X., and Qi, L. (2019). A CRISPR–dCas toolbox for genetic engineering and synthetic biology. J. Mol. Biol. 431, 34–47. doi: 10.1016/j.jmb.2018.06.037

PubMed Abstract | CrossRef Full Text | Google Scholar

Yang, J., Kim, B., Kim, G. Y., Jung, G. Y., and Seo, S. W. (2019). Synthetic biology for evolutionary engineering: from perturbation of genotype to acquisition of desired phenotype. Biotechnol. Biofuels 12:113.

Google Scholar

Yang, K. K., Wu, Z., and Arnold, F. H. (2019). Machine-learning-guided directed evolution for protein engineering. Nat. Methods 16, 687–694. doi: 10.1038/s41592-019-0496-6

PubMed Abstract | CrossRef Full Text | Google Scholar

Keywords: agent based model, synthetic biology, bioinspired algorithms, cell-cell communication, metaheuristics, framework, gro

Citation: Ortiz Y, Carrión J, Lahoz-Beltrá R and Gutiérrez M (2021) A Framework for Implementing Metaheuristic Algorithms Using Intercellular Communication. Front. Bioeng. Biotechnol. 9:660148. doi: 10.3389/fbioe.2021.660148

Received: 28 January 2021; Accepted: 06 April 2021;
Published: 10 May 2021.

Edited by:

Miguel Rocha, University of Minho, Portugal

Reviewed by:

Arti Tripathi, Brown University, United States
Mario Andrea Marchisio, Tianjin University, China

Copyright © 2021 Ortiz, Carrión, Lahoz-Beltrá and Gutiérrez. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Martín Gutiérrez, martin.gutierrez@mail.udp.cl

These authors have contributed equally to this work and share first authorship

Download