Description Usage Arguments Details Value Author(s) Examples
function to remove primer combinations from the theoretical combinations.
1 | slim(x, y)
|
x |
Character, the file of all theoretical combination of primer sets. |
y |
Character, the file of the primer combinations with theoretical dimers. |
In this function, the primer combinations with cross primer dimer with be removed from the theretical combinations of primer set.
This function will return a two-column data frame, giving the valid primer combinations.
Sizhong Yang <yanglzu@163.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(report)
data(PrimerLabels)
## generate all possible combinations for the primers
tcomb = primerCombi(PrimerLabels)
## find out all cross dimer combinations
wcomb = reparser(repfile = report)
## get primer combanation by removing the cross dimers
vcomb = slim(x = tcomb, y = wcomb)
dim(vcomb)
head(vcomb)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.