stringCoverage,extractedReadsList-method | R Documentation |
stringCoverage
takes an extractedReadsList-object and finds the coverage of every unique string for every marker in the provided list.
## S4 method for signature 'extractedReadsList'
stringCoverage(
extractedReadsListObject,
flankingRegions,
control = stringCoverage.control()
)
extractedReadsListObject |
an extractedReadsList-object, created using the identifySTRRegions-function. |
flankingRegions |
containing marker ID/name, the directly adjacent forward and reverse flanking regions, used for identification. |
control |
an stringCoverage.control-object. |
Returns a list, with an element for every marker in extractedReadsList-object, each element contains the string coverage of all unique strings of a given marker.
# Regions identified using 'identifySTRs()'
data("identifiedSTRs")
# Aggregate the strings
stringCoverage(
extractedReadsListObject = identifiedSTRs,
flankingRegions = flankingRegions,
control = stringCoverage.control(
numberOfThreads = 1,
trace = FALSE,
simpleReturn = TRUE
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.