Description Usage Arguments Details Value Author(s) Examples
This tool checks the assumptions about the primers.
1 | checkPrimer(fwdPrimer, revPrimer, exp, ITR = "PiggyBac")
|
fwdPrimer |
A character-string of the forward-primer used. |
revPrimer |
A character-string of the reverse-primer used. |
exp |
The tagMeppr-object of a sample: first run |
ITR |
Can take PiggyBac (default), SleepingBeauty, or a path to a 1000xN-padded ITR.fasta. |
The expected general layout for the ITR-sequence looks like this:
|---ITR---NNN...NNN---ITR---|
The primers are expected to be 5'-end for the reverse and 3' for the forward:
<rev
|---ITR---NNN...NNN---ITR---|
fwd>
This tool checks these assumptions and sets the rev5_fwd3 flag to TRUE.
The experiment-object will be updated with the rev5_fwd3-flag, which will tell all downstream analyses if our assumptions are correct.
Robin H. van der Weide, r.vd.weide@nki.nl
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
C9 = newTagMeppr(F1 = 'clone9_FWD_R1.fq.gz',
F2 = 'clone9_FWD_R2.fq.gz',
R1 = 'clone9_REV_R1.fq.gz',
R2 = 'clone9_REV_R2.fq.gz',
name = "clone9",
protocol = 'PiggyBac')
checkPrimer(fwdPrimer = "CGTCAATTTTACGCAGACTATC",
revPrimer = "GTACGTCACAATATGATTATCTTTCTAG",
exp = C9,
ITR = 'PiggyBac')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.