Project

idclight

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby gem for accessing the freely available IDClight (IDConverter Light) web service, which convert between different types of gene IDs such as Hugo and Entrez. Queries are screen scraped from http://idclight.bioinfo.cnio.es.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0.8
 Project Readme

idclight¶ ↑

A Ruby gem for accessing the freely available IDClight (IDConverter Light) web service at the Spanish National Cancer Centre at idclight.bioinfo.cnio.es, which convert between different types of gene ID systems such as Hugo and Entrez. Queries are screen scraped (yucky, I know) due to lack of an actually web services API.

Command-Line Usage¶ ↑

Examples

hugo_to_entrez.rb kras hugo_to_ensembl.rb kras ensembl_to_hugo.rb ENSG00000133703 ensembl_to_entrez.rb ENSG00000133703

Application Usage¶ ↑

Converting a Hugo ID to an Entrez ID¶ ↑

require ‘idclight’ include IDConverter::Light hugo_id_to_entrez_id(‘BRCA2’)

Getting Raw Data With Advanced Queries¶ ↑

require ‘idclight’ include IDConverter::Light data = search(@@HUGO, id, @@MOUSE) # See IDConverter::Light for a full list of supported constants.

Copyright © 2010 Preston Lee. See LICENSE for details.