Team:StanfordBrownSpelman/Modelling

From 2014.igem.org

(Difference between revisions)
(DoubleOptimizer: a utility for simultaneous codon optimization and optimization for gene synthesis)
(DoubleOptimizer: a utility for simultaneous codon optimization and optimization for gene synthesis)
Line 37: Line 37:
where "seq.txt" is a DNA sequence, stored as a plain text file, and "codons.txt" is a file containing the desired codon distribution to match. It should be formatted as plain text, according to the following example template:
where "seq.txt" is a DNA sequence, stored as a plain text file, and "codons.txt" is a file containing the desired codon distribution to match. It should be formatted as plain text, according to the following example template:
-
<div class="mw-collapsible" style="width:400px">
+
<div class="toccolours mw-collapsible">
Line 154: Line 154:
-
'''''-L#'''''  
+
'''''-L##'''''  
This allows the user to specify a different minimum length for what is considered a repeat, other than the default 8 nucleotides.
This allows the user to specify a different minimum length for what is considered a repeat, other than the default 8 nucleotides.

Revision as of 17:46, 6 October 2014

DoubleOptimizer: a utility for simultaneous codon optimization and optimization for gene synthesis

Background


Gene synthesis as a tool for biological engineering presents both opportunities and challenges. One opportunity presented is the ability to optimize codon usage in a gene to match that of a host organism. Compared to traditional cloning methods, this can increase protein yields in the host organism by several fold. However, while there exist a large number of freely-usable programs that perform codon optimization, there is no guarantee that the sequences these programs provide will be able to be synthesized. Specifically, in the case of genes with repetitive amino acid sequences, these programs will often generate outputs that contain too many repeated short DNA sequences to be synthesized commercially.

As an example, the hypothetical protein X777_06170 from the ant species Cerapachys biroi has an amino acid sequence that appears to be somewhat repetitive:

       1 mklfkclvpv vvlllikdss arpglirdfv ggtvgsilep fqilkpkdsy adanshasah
      61 nlggtfslgp vslggglssa sasssasang gglasasska daqaggygyg gsnanaqasa
     121 sanaqgggyg nggihgiypg qqgvhggnpf lggagsnana naiananaqa naggnngglg
     181 syggyqqggn ypidsstgpi gnnpflsggh gdgnanaaan anagasaign gggpidvnnp
     241 flhggaansg agginyqpgn aggiilsekp lglptiypgq hppayldsig spgansnaga
     301 napcsecgss gatilgyegq glggikesgs sgatilgyeg qglggikesg ssgatilgye
     361 gqglggikes gssgatilgs ydgqgpsgat ilgdyngqgl ggikessgvt vlgdyegqgl
     421 ggisgphggh gqaganagan ananagatvg ssggvlggvg dhggyhgyng hdgssglnlg
     481 gygggsnana qassnalass ggsssatsda lsnahssggs alanssskas angsgsanan
     541 ahassnassg shglgsktsa ssqasasadt rdmlifs

Note that this sequence is not simply the same sequence repeated multiple times, but instead contains several motifs on the order of 10 - 20 amino acids in length that occur several times. When this sequence was run through the codon optimization program for expression in E. coli provided by a major DNA synthesis firm, the resulting output could not be synthesized by the very same firm: the "optimized" DNA sequence contained too many recurring short (> 8 nucleotide) DNA sequences to allow for synthesis.

Manually correcting for repeats in the codon-optimized DNA sequence is a sub-optimal solution: not only is this process time-consuming, but it has the tendency to undo the codon-optimization: if a sequence of amino acids occurs several times, one may be forced to use all possible codon-combinations to represent this sequence to avoid nucleotide-sequence repetition. Unless corrected for by skewing codon usage elsewhere in the sequence, this will tend to make the codon usage more uniform than is optimal for the expression vector. Additionally, any changes made in either correcting for repeats or re-correcting for codon usage may in turn introduce additional repeats.

Solution: DoubleOptimizer


DoubleOptimizer is a software tool we have created to optimize codon usage in a gene both to match a given codon usage distribution and to avoid repetition of nucleotide sequences. Given a DNA or amino acid sequence and a desired codon distribution, DoubleOptimizer will produce, within a matter of minutes, an equivalent sequence that has substantially reduced DNA sequence repetition, while also closely matching the desired codon usage.


Availability and Usage DoubleOptimizer may be downladed here. (Note: this link is not public yet, but it will be converted to public before Wiki Freeze Day.)

DoubleOptimizer is a command line utility, provided as a Java jar file. It can be invoked from command line on any system with Java installed, with the following syntax:

      java -jar DoubleOptimizer.jar seq.txt codons.txt [Optional flags]

where "seq.txt" is a DNA sequence, stored as a plain text file, and "codons.txt" is a file containing the desired codon distribution to match. It should be formatted as plain text, according to the following example template:


      A
      GCG .36
      GCC .27
      GCA .21
      GCT .16
      R
      CGC .40
      CGT .38
      CGG .10
      CGA .06
      AGA .04
      AGG .02
      N
      AAC .55
      AAT .45
      D
      GAT .63
      GAC .37
      C
      TGC .55
      TGT .45
      E
      GAA .69
      GAG .31
      Q
      CAG .65
      CAA .35
      G
      GGC .40
      GGT .34
      GGG .15
      GGA .11
      H
      CAT .57
      CAC .43
      I
      ATT .51
      ATC .42
      ATA .07
      L
      CTG .50
      TTG .13
      TTA .13
      CTT .10
      CTC .10
      CTA .04
      K
      AAA .77
      AAG .23
      M
      ATG 1
      F
      TTT .57
      TTC .43
      P
      CCG .52
      CCA .19
      CCT .16
      CCC .12
      S
      AGC .28
      AGT .15
      TCG .15
      TCT .15
      TCC .15
      TCA .12
      *
      TAA .64
      TGA .29
      TAG .07
      T
      ACC .44
      ACG .27
      ACT .17
      ACA .13
      W
      TGG 1
      Y
      TAT .57
      TAC .43
      V
      GTG .37
      GTT .26
      GTC .22
      GTA .15

(Note that the above example is actually the codon usage distribution of E. coli.)

DoubleOptimizer supports non-canonical codon assignments: the amino acid-codon groupings can by specified in whatever way the user wants in the codon distribution file.

When executed, DoubleOptimizer will first display the input sequence with repetitive regions highlighted. It will also give the fraction of the sequence that initially consists of repetitive regions (defined by default as regions of 8 nucleotides or more that occur more than once in the sequence, including as their reverse complement), and a <math>chi^2</math> value for the goodness-of-fit to the desired codon distribution (lower is better).

DoubleOptimizer will then compute and display the optimized sequence (By default, it will produce the best sequence it can find after 10 seconds of computation time). Again, repetitive regions will be highlighted, and the same measurements of repetitiveness and codon fit will be given.

The following optional flags may be used to change the program's behavior:

-A

This allows for an amino-acid sequence, specified in single-letter code, to be used as input instead of a DNA sequence

Example:

java -jar DoubleOptimizer.jar aaseq.txt codons.txt -A


-T##

This allows the user to specify, in seconds, a different run-time for the program other than the default 10 seconds. While 10 seconds should be sufficient to produce a well-optimized result for most genes of moderate length on modern desktop computers, longer times may produce better-optimized results on slower machines or on longer sequences.

Example:

java -jar DoubleOptimizer.jar aaseq.txt codons.txt -A -T30


-L##

This allows the user to specify a different minimum length for what is considered a repeat, other than the default 8 nucleotides.

Example:

java -jar DoubleOptimizer.jar seq.txt codons.txt -L7 -T15


Performance data

  • To be added

References

  • To be added