Description Usage Arguments Value See Also Examples
View source: R/hiReadsProcessor.R
Given a DNAStringSet object, the function removes any reads that has either repeating or total Ns which is greater than to maxNs threshold
1 | removeReadsWithNs(dnaSet, maxNs = 5, consecutive = TRUE)
|
dnaSet |
DNAStringSet object to evaluate. |
maxNs |
integer value denoting the threshold of maximum allowed Ns. Default is 5. |
consecutive |
boolean flag denoting whether Ns to filter is consecutive or total . Default is TRUE. |
DNAStringSet object.
dereplicateReads
, replicateReads
,
findBarcodes
, splitByBarcode
1 2 3 4 5 6 |
dnaSet <- c("CCTGAATCCTNNCAATGTCATCATC", "ATCCTGGCNATGTCATCATCAATGG",
"ATCAGTTGTCAACGGCTAATACGCG", "ATCAATGGCGATTGCCGCGTCTGCA",
"CCGNNTCTGCAATGTGNGGNCCTAN", "GAAGNNNNNNGTTGAAGTTCACAC")
removeReadsWithNs(dnaSet)
removeReadsWithNs(dnaSet, maxNs = 4, consecutive = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.