Description Usage Arguments Value Author(s) Examples
View source: R/quantsmoothplot.R
The function converts chromosomal ids to their numeric form, and the sex chromosomes to values between 98 and 100. This simplifies sorting on chromosome ID
1 2 | numericCHR(CHR, prefix="chr")
characterCHR(CHR, prefix="")
|
CHR |
character/numeric vector for both functions the mode of the input is not forced. For numericCHR strings "X","Y" and "XY" are converted to 98,99 and 100 respectively. |
prefix |
character, string is excluded from ( |
numericCHR
returns a numeric vector of same length as CHR
characterCHR
returns a character vector of same length as CHR
Jan Oosting
1 2 3 4 | chroms<-c("3","2","8","X","7","Y","5","1","9","10","11","12","4","6")
sort(chroms)
sort(numericCHR(chroms))
characterCHR(sort(numericCHR(chroms)),prefix="chr")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.