View source: R/locusValidator.R
validateLocus | R Documentation |
Checks a vector of HLA locus names against the HLAgazeteer to determine if the locus name is valid for a specific type of alignment.
validateLocus(loci, source)
loci |
A character vector of HLA gene names (ex. "DRB1", c("DRB1","DQB1")). |
source |
A character vector of alignment source types. "AA", "cDNA", and "gDNA" are allowed types. |
A logical value. TRUE indicates that all of the names and source types are valid. FALSE indicates that at least one locus name or alignment source type is invalid.
The results of this check should only be considered valid for the version of the HLAgazeteer included in the HLAtools package.
validateLocus(loci = "DRB1", source = "AA")
validateLocus(loci = c("V"), source = c("cDNA","gDNA"))
validateLocus(loci = c("E","F","G"), source = "gDNA")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.