validateLocus {HLAtools} | R Documentation |
Checks a vector of HLA locus names against the HLA gazeteer 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 IPD-IMGT/HLA Database release version of the current gazeteer.
validateLocus(loci = "DRB1", source = "AA")
validateLocus(loci = c("V"), source = c("cDNA","gDNA"))
validateLocus(loci = c("E","F","G"), source = "gDNA")