Hi,
I would like to download the gene expression data with GEO accession number "GSE104075" from GEO repository.
here is my code:
gset <- getGEO("GSE104075",GSEMatrix =TRUE, getGPL=TRUE, AnnotGPL=TRUE)
if (length(gset) > 1) idx <- grep("GPL21298", attr(gset, "names")) else idx <- 1
gset <- gset[[idx]]
ex <- exprs(gset)
str(ex)
logi[0 , 1:26]
- attr(*, "dimnames")=List of 2
..$ : NULL
..$ : chr [1:26] "GSM2789021" "GSM2789022" "GSM2789023" "GSM2789024" ..
Apparently, the submitters have not submitted the gene expression data on GEO. So I do not know how can I download this data.
Do you have any idea how can I get gene expression matrix?
Thanks for your response. On the GEO page I can see that there is a file "GSE104075_RAW.tar" that contains the bed files. I have unzipped them and I see the files with ".bed" and ".bedGraph". Do you think I can use this files to get the gene expression data?
Do you think I can convert bed files to bam files and use feature counts to get the counts of gene expression?
Thanks
You should clarify what is contained within the BED and bedGraph files. Gene expression data is not typically stored in these formats. The BED and bedGraph files most likely contain the ATAC-seq data, which is typically stored in these formats.
You may also want to contact the authors directly to see if they can share the expression matrix with you. I looked briefly and could not find it.