The SLIC cloning method1 is based on annealing of single-stranded complementary overhangs on the target vector and an insert. This tool implements this basic logic to design primers which generate the appropriate PCR fragments where the vector has overhangs complementary to the insert or vice versa. Single-stranded overhangs can subsequently be generated by using the 3'->5'-exonuclease activity of the T4 DNA polymerase. After that it's just annealing, transformation, and you're done. It's super easy and it works like a charm!
For the full protocol, just click here. Further information and on the cloning procedure can also be found on this EMBL page and in the original paper1.
The script is designed so that it extends the primer until the desired Tm is reached. We implemented two differnt methods for calculation of the Tm:
(1) Rule of thumb:
For less than 14 nucleotides, we use the classic Marmur formula2:
Tm = 4(G + C) + 2(A + T)
and for 14 or more nucleotides, the Wallace rule3 is applied:
Tm = 64.9 + 41(G + C - 16.4) / (A + T + G + C)
where G, C, A and T are the occurrences of the respective bases in the sequence. Both equations assume the standard conditions of 50 nM primer, 50 mM Na+, and pH 7.0.
(2) Base stacking:
This is a thermodynamical approach to approximate the Tm, which also takes salt concentrations into account. The underlying script is essentially a JavaScript version of the PHP script used here4,5.
(1) Li, M. Z., Elledge, S. J. (2012). SLIC: A method for sequence- and ligation-independent cloning. Methods in Molecular Biology, 852, 51–59.
(2) Marmur, J., Doty, P. (1962). Determination of the base composition of deoxyribonucleic acid from its thermal denaturation temperature. Journal of Molecular Biology, 5(1), 109–118.
(3) Wallace, R. B., Shaffer, J., Murphy, R. F., Bonner, J., Hirose, T., Itakura, K. (1979). Hybridization of synthetic oligodeoxyribonucleotides to phi chi174DNA:the effect of single base pair mismatch. Nucleic Acids Research, 6(11), 3543–3557.
(4) SantaLucia, J. (1998). A unified view of polymer, dumbbell, and oligonucleotide DNA nearest-neighbor thermodynamics. Proceedings of the National Academy of Sciences of the United States of America, 95(4), 1460–5.
(5) Von Ahsen, N., Wittwer, C. T., Schütz, E. (2001). Oligonucleotide melting temperatures under PCR conditions: Nearest-neighbor corrections for MG2+, deoxynucleotide triphosphate, and dimethyl sulfoxide concentrations with comparison to alternative empirical formulas. Clinical Chemistry, 47(11), 1956–1961.
(1) Amplify vector and insert with respective primers.
(2) Add 20 U of DpnI to the vector reaction and incubate at 37 °C for at least 1 h to digest the template.
(3) Run both the vector and the insert on a gel, excise the bands and purify.
(4) Treat 1 µg of the vector and 1 µg of the insert separately with 0.5 U of T4 DNA polymerase in T4 buffer at 22 °C for the appropriate amount of time, depending on the length of the overhang:
16 bp 25 min
20 bp 30 min
30 bp 45 min
40 bp 60 min
(5) Stop the reaction by adding 1:10 volume of 10 mM dCTP (or any other single nucleotide).
(6) Mix vector and insert in a 1:1 or 1:2 molar ratio in 1x T4 DNA ligase buffer and incubate at 37 °C for 30 min.
(7) Transform and be happy.