Table of Contents


In [2]:
from bioservices import ensembl
e = ensembl.Ensembl()

In [3]:



Out[3]:
404

In [4]:
res = e.get_lookup_by_id('ENSG00000157764', expand=True)

In [5]:
res.keys()


Out[5]:
[u'assembly_name',
 u'display_name',
 u'description',
 u'seq_region_name',
 u'logic_name',
 u'object_type',
 u'start',
 u'id',
 u'source',
 u'version',
 u'biotype',
 u'species',
 u'end',
 u'Transcript',
 u'db_type',
 u'strand']

In [6]:
e.get_regulatory_by_id('ENSR00001348195', 'human')


Out[6]:
404

In [10]:
e.get_regulatory_by_id('ENSR00000099113', 'homo_sapiens')


Out[10]:
404

In [ ]: