Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GEO Annotations #3

Open
Rachelly opened this issue Oct 30, 2013 · 1 comment
Open

GEO Annotations #3

Rachelly opened this issue Oct 30, 2013 · 1 comment

Comments

@Rachelly
Copy link

Hi,
I downloaded a geo annotation for a GSE, and it seems there are more probes in the GSE than in the annotation. How is this possible?
Thanks,
Rachelly.

mm_gse <- getGEO("gse7187", destdir="C:\Program Files\R\GSEs")[[1]]
library("moe430a.db")
MM_p2genes <-unlist(as.list(moe430aENTREZID[mappedkeys(moe430aENTREZID)]))
length(featureNames(mm_gse))
[1] 22690
dim(moe430aENTREZID)
[1] 21085 2

@renozao
Copy link
Owner

renozao commented Oct 30, 2013

This is possibly due to control probes not being in the annotation file or,
in your particular example, to probes that are not mapped to an ENTREZ ID.
Check:

head(setdiff(featureNames(mm_gse), keys(moe430a.db)))
tail(setdiff(featureNames(mm_gse), keys(moe430a.db)))

head(setdiff(featureNames(mm_gse), mappedkeys(moe430aENTREZID)))
tail(setdiff(featureNames(mm_gse), mappedkeys(moe430aENTREZID)))

On 30 October 2013 12:05, Rachelly notifications@github.com wrote:

Hi,
I downloaded a geo annotation for a GSE, and it seems there are more
probes in the GSE than in the annotation. How is this possible?
Thanks,
Rachelly.

mm_gse <- getGEO("gse7187", destdir="C:\Program Files\R\GSEs")[[1]]
library("moe430a.db")
MM_p2genes <-unlist(as.list(moe430aENTREZID[mappedkeys(moe430aENTREZID)]))
length(featureNames(mm_gse))
[1] 22690
dim(moe430aENTREZID)
[1] 21085 2


Reply to this email directly or view it on GitHubhttps://github.com//issues/3
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants