-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
6,217 additions
and
400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
^binder/*$ | ||
^notebooks/*$ | ||
^LICENSE$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Package: GoldenMutagenesis | ||
Type: Package | ||
Encoding: UTF-8 | ||
Title: A tool to generate primers for Golden Gate Cloning | ||
Version: 1.0.1 | ||
Date: 2018-10-12 | ||
Title: A tool to calculate and validate primers for Golden Gate Cloning | ||
Version: 1.1.0 | ||
Date: 2019-01-21 | ||
Author: Chris Ulpinnis & Pascal Püllmann | ||
Maintainer: Chris Ulpinnis <[email protected]> | ||
Description: The Golden Gate cloning technique has been proven to be a highly efficient toolbox for a variety of cloning setups. Based on its modular concept it is particularly suitable for the use in multiple-site mutagenesis approaches. In this technical note we developed a protocol termed Golden Mutagenesis for the rapid, easy, reliable and cheap formation of mutagenesis libraries. One to five positions could be altered in parallel or simultaneously within two days. To facilitate the implementation of this technique, this R-library has been developed for the automated primer design and the graphical evaluation of sequencing results to determine the quality of the library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ps<-setClass("Primerset", slots=c(oldsequence="character", primers="list", newsequence="character")) | ||
pc<-setClass("Primer", slots=c(prefix="character" ,restriction_enzyme="character", suffix="character", vector="character", overhang="character" ,binding_sequence="character", temperature="numeric", difference="numeric")) | ||
pc_msd<-setClass("Primer_MSD", contains="Primer", slots=c(NDT="character")) | ||
pc<-setClass("Primer", slots=c(prefix="character" ,restriction_enzyme="character", suffix="character", vector="character", overhang="character", extra="character" ,binding_sequence="character", temperature="numeric", difference="numeric")) | ||
pc_msd<-setClass("Primer_MSD", contains="Primer") | ||
pc_spm<-setClass("Primer_SPM", contains="Primer") | ||
fragment<-setClass("Fragment", slots=c(start="numeric", stop="numeric", start_mutation="vector", stop_mutation="vector")) | ||
eps<-setClass("Extended_Primerset", contains="Primerset", slots=c(fragments="list")) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
## ----setup, include=FALSE------------------------------------------------ | ||
knitr::opts_chunk$set(echo = TRUE) | ||
knitr::opts_chunk$set(tidy.opts=list(width.cutoff=60),tidy=TRUE) | ||
|
||
## ------------------------------------------------------------------------ | ||
library("GoldenMutagenesis") | ||
|
||
## ------------------------------------------------------------------------ | ||
input_sequence<-"ATGTCTCAGGTTCAGAGTGGCATTTTGCCAGAACATTGCCGCGCGGCGATTTGGATCGAAGCCAACGTGAAAGGGGAAGTTGACGCCCTGCGTGCGGCCAGTAAAACATTTGCCGACAAACTGGCAACTTTTGAAGCGAAATTCCCGGACGCGCATCTTGGTGCGGTGGTTGCCTTTGGTAACAACACCTGGCGCGCTCTGAGCGGCGGCGTTGGGGCAGAAGAGCTGAAAGATTTTCCGGGCTACGGTAAAGGCCTTGCGCCGACGACCCAGTTCGATGTGTTGATCCACATTCTTTCTCTGCGTCACGACGTAAACTTCTCTGTCGCCCAGGCGGCGATGGAAGCCTTTGGTGACTGCATTGAAGTGAAAGAAGAGATCCACGGCTTCCGTTGGGTTGAAGAGCGTGACCTGAGCGGCTTTGTTGACGGTACGGAAAACCCGGCGGGTGAAGAGACGCGTCGCGAAGTGGCGGTTATCAAAGACGGCGTGGATGCGGGCGGCAGCTATGTGTTTGTCCAGCGTTGGGAACACAACCTGAAGCAGCTCAACCGGATGAGCGTTCACGATCAGGAGATGGTGATCGGGCGCACCAAAGAGGCCAACGAAGAGATCGACGGCGACGAACGTCCGGAAACCTCTCACCTCACCCGCGTTGATCTGAAAGAAGATGGCAAAGGGCTGAAGATTGTTCGCCAGAGCCTGCCGTACGGCACTGCCAGTGGCACTCACGGTCTGTACTTCTGCGCCTACTGCGCGCGTCTGCATAACATTGAGCAGCAACTGCTGAGCATGTTTGGCGATACCGATGGTAAGCGTGATGCGATGTTGCGTTTCACCAAACCGGTAACCGGCGGCTATTATTTCGCACCGTCGCTGGACAAGTTGATGGCGCTGTAA" | ||
recognition_site_bbsi<-"GAAGAC" | ||
recognition_site_bsai<-"GGTCTC" | ||
cuf<-"e_coli_316407.csv" | ||
|
||
|
||
|
||
## ------------------------------------------------------------------------ | ||
mutations_bbsi<-domesticate(input_sequence, recognition_site_bbsi, cuf=cuf) | ||
mutations_bbsi | ||
mutations_bsai<-domesticate(input_sequence, recognition_site_bsai, cuf=cuf) | ||
mutations_bsai | ||
|
||
|
||
## ------------------------------------------------------------------------ | ||
#If domestication is necessary follow the workflow of the Point Mutagenesis vignette | ||
mutations<-c(137,143,147,232,234) | ||
primers<-msd_mutate(input_sequence, prefix="TT" ,restriction_enzyme=recognition_site_bsai, suffix="A", vector=c("AATG", "AAGC"), replacements=mutations, replacement_range=5, binding_min_length=4 ,primer_length=9, target_temp=60, fragment_min_size=60 ) | ||
primers | ||
|
||
## ------------------------------------------------------------------------ | ||
primers_lvl0<-primer_add_level(primers, prefix="TT", restriction_enzyme=recognition_site_bbsi, suffix="AA", vector=c("CTCA", "CTCG")) | ||
primers_lvl0 | ||
|
||
## ------------------------------------------------------------------------ | ||
print_primer(primers_lvl0) | ||
|
||
## ----eval=FALSE---------------------------------------------------------- | ||
# sink("primers.txt", append=FALSE, split=FALSE) | ||
# print_primer(primers_lvl0) | ||
# sink() | ||
|
Oops, something went wrong.