Description Usage Arguments Value See Also Examples
View source: R/hiReadsProcessor.R
Given a DNAStringSet object, the function replicates reads using counts=X marker at the end of definition line.
1 | replicateReads(dnaSet, counts = NULL)
|
dnaSet |
DNAStringSet object to replicate. |
counts |
an integer or a numeric vector of length length(dnaSet) indicating how many times to repeat each sequence. Default is NULL, in which it uses counts=X notation from the definition line to replicate reads. |
DNAStringSet object.
dereplicateReads
, removeReadsWithNs
,
findBarcodes
, splitByBarcode
1 2 3 4 5 6 7 8 9 |
dnaSet <- c("CCTGAATCCTGGCAATGTCATCATC", "ATCCTGGCAATGTCATCATCAATGG",
"ATCAGTTGTCAACGGCTAATACGCG", "ATCAATGGCGATTGCCGCGTCTGCA",
"CCGCGTCTGCAATGTGAGGGCCTAA", "GAAGGATGCCAGTTGAAGTTCACAC",
"CCTGAATCCTGGCAATGTCATCATC", "ATCCTGGCAATGTCATCATCAATGG",
"ATCAGTTGTCAACGGCTAATACGCG", "ATCAATGGCGATTGCCGCGTCTGCA",
"CCGCGTCTGCAATGTGAGGGCCTAA", "GAAGGATGCCAGTTGAAGTTCACAC")
dnaSet <- dereplicateReads(dnaSet)
replicateReads(dnaSet)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.