Hello, I am using iGenomes GATK.GRCh38 with sarek. Now I need to use the R package biomaRt to fetch the sequence and other information. What ensembl version does it correspond to? For example, for ncbi37 I would do:
genome = useMart(biomart="ENSEMBL_MART_ENSEMBL",
host="grch37.ensembl.org",
path="/biomart/martservice",
dataset="hsapiens_gene_ensembl")
and for TCGA I do:
grch38 = useMart(biomart="ENSEMBL_MART_ENSEMBL",
host="https://nov2020.archive.ensembl.org",
dataset="hsapiens_gene_ensembl")
In my case now it would then be for the GATK bundle genome version for GRCh38. Would it be as simple as:
grch38 = useMart(biomart="ENSEMBL_MART_ENSEMBL",
dataset="hsapiens_gene_ensembl")
Thank you in advance.