Description Usage Arguments Details Value Author(s) See Also Examples
Based on boundary conditions specified and (or) chromosome selects SNP names in the region
1 | snp.names(data, begin, end, chromosome)
|
data |
object of class |
begin |
Start position (or name of the first SNP) |
end |
End-position or name of last SNP |
chromosome |
Chromosome code |
Any of the arguments, except the data
can be missing
A vector of names of SNPs located in the region
Yurii Aulchenko
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | require(GenABEL.data)
data(srdta)
snp.names(srdta, begin = 50000, end = 100000)
snp.names(srdta, begin = 50000, end = 100000, chromosome = "1")
# does not make sense with these data:
snp.names(srdta, begin = 50000, end = 100000, chromosome = "X")
# again makes sense:
snp.names(srdta, end = 100000)
snp.names(srdta, begin = 2200000)
# show summary for SNPs in region between 50,000 and 100,000
a <- snp.names(srdta, begin = 50000, end = 100000)
summary(srdta@gtdata[,a])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.