Learn R Programming

dartR (version 1.9.9.1)

gl.filter.rdepth: Filter loci based on counts of sequence tags scored at a locus (read depth)

Description

SNP datasets generated by DArT report AvgCountRef and AvgCountSnp as counts of sequence tags for the reference and alternate alleles respectively. These can be used to backcalculate Read Depth. Fragment presence/absence datasets as provided by DArT (SilicoDArT) provide Average Read Depth and Standard Deviation of Read Depth as stanard columns in their report.

Usage

gl.filter.rdepth(x, lower = 5, upper = 50, verbose = NULL)

Arguments

x

-- name of the genlight object containing the SNP or tag presence/absence data [required]

lower

-- lower threshold value below which loci will be removed [default 5]

upper

-- upper threshold value above which loci will be removed [default 50]

verbose

-- verbosity: 0, silent or fatal errors; 1, begin and end; 2, progress log ; 3, progress and results summary; 5, full report [default 2, unless specified using gl.set.verbosity]

Value

Returns a genlight object retaining loci with a Read Depth in the range specified by the lower and upper threshold.

Details

Filtering on Read Depth using the companion script gl.filter.rdepth can be on the basis of loci with exceptionally low counts, or loci with exceptionally high counts.

Examples

Run this code
# NOT RUN {
# SNP data
  gl.report.rdepth(testset.gl)
  result <- gl.filter.rdepth(testset.gl, lower=8, upper=50, verbose=3)
# Tag P/A data
  result <- gl.filter.rdepth(testset.gs, lower=8, upper=50)
# }

Run the code above in your browser using DataLab