Cellular location of list of genes
6
2
Entering edit mode
9.2 years ago

Hi Folks,

I wanted to know if there is a way to get the cellular location for the genes lists and get their general functions.

gene • 5.6k views
ADD COMMENT
3
Entering edit mode
9.2 years ago
zlskidmore ▴ 290

If I am understanding what you want correctly you could use bioMart to query this information. You would probably want to apply some filters on evidence type etc. but you should be able to get what you want from the GO database. Something like this would work in R:

library("biomaRt")

# Select appropriate database
ensembl <- useMart("ensembl")
ensembl <- useDataset("hsapiens_gene_ensembl", mart=ensembl)

# set up any filters and their appropriate values
filters <- c("hgnc_symbol")
gene <- c("PTEN", "PRLR")
values <- as.list(gene)

# select attributes to return
attributes <- c("hgnc_id", "namespace_1003", "name_1006", "go_id", "go_linkage_type", "definition_1006")

# perform biomart query
getBM(attributes=attributes, filters=filters, values=values, mart=ensembl)

or you could use biomarts web resource.

ADD COMMENT
1
Entering edit mode
9.2 years ago

Dunno about a list, but on a gene by gene basis, you might search Compartments (found via GeneCards).

ADD COMMENT
0
Entering edit mode

This is a really useful tool. Glad I came across this thread, as I had the same question. Thanks Alex!

ADD REPLY
1
Entering edit mode
6.8 years ago
Abhik ▴ 30

Human Protein Atlas has downloadable files for subcellular location . You can find more at

http://www.proteinatlas.org/about/download

ADD COMMENT
1
Entering edit mode
6.8 years ago

GO CC should give you the location. Any GO tool should give you this. In R, biomart is good enough.

ADD COMMENT
1
Entering edit mode
6.8 years ago
EagleEye 7.5k

Use geneontology GO_CC in GeneSCF enrichment analysis.

ADD COMMENT
0
Entering edit mode
6.8 years ago
microfuge ★ 1.9k

For prokaryotes, psortb is very widely used http://www.psort.org/psortb/

ADD COMMENT

Login before adding your answer.

Traffic: 2330 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6