Hi All,
I've been running into a problem with biomaRt and while I've seen a few other posts describe a similar problem, none of them are quite the same as mine so I'm asking for your wisdom.
I've been trying to collect upstream sequences using "coding_gene_flank" from the current human ensembl assembly and whether I provide just one ENSG name or a vector of 1000s, whether I ask for 100 or 2000 upstream or downstream bps, regardless of my request, I get a query error saying that there there is no upstream_flank filter/downstream_flank filter found. I do not encounter this problem when getting sequences from the genomes of other species. I'm not running loops or doing anything particularly fancy. I'm not sure what's going on.
Here is my code using a few ENSG ids (as an example) and the error - I'm running R version 3.2.3 , biomaRt 2.24.1
ensembl <- useMart(biomart = "ENSEMBL_MART_ENSEMBL", dataset="hsapiens_gene_ensembl", host="www.ensembl.org")
Human2 = c("ENSG00000000419", "ENSG00000000457", "ENSG00000000938")
Human1200 = getSequence(id = Human2, type="ensembl_gene_id",seqType="coding_gene_flank",upstream=1200, mart=ensembl)
Error in getBM(c(seqType, type), filters = c(type, "upstream_flank"), :
Query ERROR: caught BioMart::Exception::Usage: Filter upstream_flank NOT FOUND
And here it is for mouse, which is working fine
ensemblm <- useMart(biomart = "ENSEMBL_MART_ENSEMBL", dataset="mmusculus_gene_ensembl", host="www.ensembl.org")
Mouse2 = c("ENSMUSG00000078919", "ENSMUSG00000093752", "ENSMUSG00000026584")
MMus2 = getSequence(id= Mouse2, type="ensembl_gene_id", seqType="coding_gene_flank", upstream=1200, mart=ensemblm)
Thanks for your help.
Daub.
Unless you are answering a question you should use the ADD COMMENT link, rather than typing in the 'Add your answer' box.
Anyway, the error you get means exactly what it says - it tried to reach the BioMart server and was unable to do so. I can still get your code to work, so I would try again. Or just use one of the BSgenome packages, which don't rely on an internet connection.