Displaying 1 result from an estimated 1 matches for "genes_36".
Did you mean:
genes_37
2014 Jul 21
1
Multiple versions of data in a package
...to that map, to annotate the position of local genes etc. My
problem is that there is no single map of the genome, so I can prepare
external data with the positions of SNPs and genes in version 36 or 37.
To allow this, my data/ directory contains
snps_37.Rdata, snps_36.RData, genes_37.RData, genes_36.RData
the objects in these files are called, respectively,
snps, snps, genes, genes
Therefore, a user types
> data(snps_37)
> data(genes_37)
or
> data(snps_36)
> data(genes_36)
to set up build 36 or build 37 and then my functions need only use the
object names snps or genes,...