
genotypeToCharacter(geno, alleleA=NULL, alleleB=NULL, sort=TRUE)
geno
.
geno
is a vector, alleleA
and alleleB
should
have the same length as geno
or length 1 (in the latter case the values are recycled). If geno
is a matrix, length of
alleleA
and alleleB
should be equal to the number of
rows of geno
.
If alelleA
or alleleB
is NULL
, returned genotypes
will have values "A/A", "A/B", or "B/B".
GenotypeData
geno <- matrix(c(0,1,2,0,1,2,1,NA), nrow=4)
alleleA <- c("A","T","C","T")
alleleB <- c("C","G","G","A")
genotypeToCharacter(geno, alleleA, alleleB)
Run the code above in your browser using DataLab