can not define "mart".... biomaRt
1
0
Entering edit mode
9.6 years ago

Trying to request the following info for a csv file called genes command as follows (it won't accept my command to set ensembl as m mart):

useMart(biomart="ensembl", dataset="hsapiens_gene_ensembl")
Object of class 'Mart':
 Using the ensembl BioMart database
 Using the hsapiens_gene_ensembl dataset
> results <- getBM(attributes = c("ensembl_gene_id", "hgnc_symbol"), filters = "hgnc_symbol", values = genes$Genesymbol, mart = ensembl)
Error in martCheck(mart) : 
  No dataset selected, please select a dataset first.  You can see the available datasets by using the listDatasets function see ?listDatasets for more information.  Then you should create the Mart object by using the useMart function.  See ?useMart for more information
> 
R • 6.7k views
ADD COMMENT
0
Entering edit mode

You should select a dataset first. See ?useMart for more information.

ADD REPLY
0
Entering edit mode

But I defined the data set as homo sapiens....? took a look at the ?useMart and it tells me to do exactly what I'm doing...

useMart(biomart="ensembl", dataset="hsapiens_gene_ensembl")
ADD REPLY
0
Entering edit mode

That would have never happened if instead of BioMart they would have called it BioSmart :)

ADD REPLY
2
Entering edit mode
9.6 years ago

You need to assign the output of useMart to the ensembl variable:

> ensembl = useMart(biomart="ensembl", dataset="hsapiens_gene_ensembl")
> results <- getBM(attributes = c("ensembl_gene_id", "hgnc_symbol"), filters = "hgnc_symbol", values = genes$Genesymbol, mart = ensembl)
ADD COMMENT

Login before adding your answer.

Traffic: 3070 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