annotateWithControlDepth | R Documentation |
Matches the case
variants to the (typically unfiltered)
control
variants and returns case
, with the additional
metadata columns control.alt.depth
and
control.total.depth
, corresponding to altDepth(control)
and totalDepth(control)
, respectively.
annotateWithControlDepth(case, control, control.cov)
case |
The variants of interest, as a |
control |
The control variants, typically unfiltered, as a |
control.cov |
The control coverage, as an |
If a case
variant is not found in control
, a count of
0
is assigned to control.alt.depth
, under the assumption
that the control
object is not filtered, i.e., it contains the
raw tallies.
case
, plus two new metadata columns, control.alt.depth
and control.total.depth
Michael Lawrence
callSampleSpecificVariants
, which uses this function.
bams <- LungCancerLines::LungCancerBamFiles()
data(vignette)
case <- callVariants(tallies_H1993)
control <- tallies_H2073
control.cov <- coverage(bams$H2073)
annotateWithControlDepth(case, control, control.cov)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.