I am using biomaRt_2.48.2 I wanted paralogs genes for mouse genome within species I have tried below script its giving me an error I need gene ID with paralog percent identity attribute for filtering genes which are putative paralog please help me Mike Smith Thank you
**Error in curl::curl_fetch_memory(url, handle = handle) :
Timeout was reached: [www.ensembl.org:443] Operation timed out after 300000 milliseconds with 58240952 bytes received**
library(biomaRt)
mouse = useMart("ensembl", dataset = "mmusculus_gene_ensembl")
searchAttributes(mart = mouse, pattern = "ggallus")
attributes=searchAttributes(mart = mouse, pattern = "paralog")
hgid <- getBM(attributes = "ensembl_gene_id",
filters = "with_mmusculus_paralog",
values = TRUE,
mart = mouse)$ensembl_gene_id
para <- getBM(attributes = attributes$name,
filters = "ensembl_gene_id",
values = hgid,
mart = mouse)
@James W. MacDonald Thanks for the reply above one will give orthologus gene info I want "Paralog genes" within species
This user recently posted here: Using R BioMart getting orthologus genes between two species