getFIX | R Documentation |
Both chromR objects and vcfR objects contain a region with fixed variables. These accessors allow you to isolate these variables from these objects.
getFIX(x, getINFO = FALSE)
getCHROM(x)
getPOS(x)
getQUAL(x)
getALT(x)
getREF(x)
getID(x)
getFILTER(x)
getINFO(x)
x |
a vcfR or chromR object |
getINFO |
logical specifying whether getFIX should return the INFO column |
a vector or data frame
library("vcfR")
data("vcfR_example")
data("chromR_example")
getFIX(vcf) %>% head
getFIX(chrom) %>% head
getCHROM(vcf) %>% head
getCHROM(chrom) %>% head
getPOS(vcf) %>% head
getPOS(chrom) %>% head
getID(vcf) %>% head
getID(chrom) %>% head
getREF(vcf) %>% head
getREF(chrom) %>% head
getALT(vcf) %>% head
getALT(chrom) %>% head
getQUAL(vcf) %>% head
getQUAL(chrom) %>% head
getFILTER(vcf) %>% head
getFILTER(chrom) %>% head
getINFO(vcf) %>% head
getINFO(chrom) %>% head
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.