| gl.drop.loc {dartR.base} | R Documentation | 
Removes specified loci from a dartR genlight object
Description
This function deletes individuals and their associated metadata. The script returns a dartR genlight object with the retained loci. The script works with both genlight objects containing SNP genotypes and Tag P/A data (SilicoDArT).
Usage
gl.drop.loc(x, loc.list = NULL, first = NULL, last = NULL, verbose = NULL)
Arguments
x | 
 Name of the genlight object [required].  | 
loc.list | 
 A list of loci to be deleted [required, if loc.range not specified].  | 
first | 
 First of a range of loci to be deleted [required, if loc.list not specified].  | 
last | 
 Last of a range of loci to be deleted [if not specified, last locus in the dataset].  | 
verbose | 
 Verbosity: 0, silent or fatal errors; 1, begin and end; 2, progress but not results; 3, progress and results summary; 5, full report [default 2 or as specified using gl.set.verbosity].  | 
Value
A reduced dartR genlight object
Author(s)
Custodian: Arthur Georges – Post to https://groups.google.com/d/forum/dartr
See Also
gl.keep.loc to keep rather than drop specified loci
Other data manipulation: 
gl.define.pop(),
gl.drop.ind(),
gl.drop.pop(),
gl.edit.recode.pop(),
gl.impute(),
gl.join(),
gl.keep.ind(),
gl.keep.loc(),
gl.keep.pop(),
gl.make.recode.ind(),
gl.merge.pop(),
gl.reassign.pop(),
gl.recode.ind(),
gl.recode.pop(),
gl.rename.pop(),
gl.sample(),
gl.sim.genotypes(),
gl.sort(),
gl.subsample.ind(),
gl.subsample.loc()
Examples
# SNP data
  gl2 <- gl.drop.loc(testset.gl, loc.list=c('100051468|42-A/T', '100049816-51-A/G'),verbose=3)
# Tag P/A data
  gs2 <- gl.drop.loc(testset.gs, loc.list=c('20134188','19249144'),verbose=3)