Skip to content
Prev 167231 / 398502 Next

How to create a chromosome location map by locus ID

Sake <tlep.nav.ekas at hccnet.nl> writes:
There are many tools in the R / Bioconductor project that address
these types of issues; a typical use case might use one of the 'org'
packages, e.g., org.Hs.eg.db though there are many others, to extract
information or to map between inforamtion types.
[snip]
gene_id start_location Chromosome
1    1000      -23784933         18
2   10000     -241718157          1
3   10000     -241733106          1
gene_id symbol
1    1000   CDH2
2   10000   AKT3

There are a number of packages for displaying this information, but
usually in conjunction with additional covariates.  GenomeGraphs
provides really pretty pictures (though is more for detailed
presentation of individual genes). rtracklayer is an interface that
lets you lay and navigate tracks on web-based genome browsers.

The place to start with Bioconductor is http://bioconductor.org, e.g.,

  basic install: http://bioconductor.org/docs/install/
  package list: http://bioconductor.org/packages/release/Software.html
Look to the AnnotationDbi 'vignettes', either on-line (link to the
AnnotationDbi package page from the list above) or in the package
itself (via openVignettes()).

Any follow-up questions about Bioconductor should go to the
Bioconductor mailing list

  http://bioconductor.org/docs/mailList.html

Martin