Mapping between the probe set ID and the corresponding gene symbol

8 views (last 30 days)
Hi, iam using GSE21947 dataset to identify differential expressed gene . It uses [HG-U133A] Affymetrix Human Genome U133A Array. How to create (HuGeneFL_GeneSymbol_Map).
I would like to create a mapping between the probe set ID and the corresponding gene symbol provided as Map object in the MAT file eg:HuGeneFL_GeneSymbol_Map.

Accepted Answer

Luuk van Oosten
Luuk van Oosten on 22 May 2019
Dear Swarnambiga A,
Hope this is not too late (and what you are looking for, I'm more into proteins...), but I'll give it a shot:
If I understand correctly you are using Affymetrix array data, and you want to map the probe set ID to the corresponding gene.
There exists a bit of example code on how to this task in the documentation regarding exploring microarray gene expression data. Under the subsection 'Annotating Up-Regulated Genes Using Gene Onthology', there is explained what you want to do for some human data. They provide the map between the gene symbols associated with the GO IDs in a MAT-file, but also describe how you can get the latest data for that particlar human set from the GO database with annotations as follows:
GO = geneont('live',true);
HGann = goannotread('gene_association.goa_human',...
'Aspect','F','Fields',{'DB_Object_Symbol','GOid'});
HGmap = containers.Map();
for i = 1:numel(HGann)
key = HGann(i).DB_Object_Symbol;
if isKey(HGmap,key)
HGmap(key) = [HGmap(key) HGann(i).GOid];
else
HGmap(key) = HGann(i).GOid;
end
end
If you tweak that bit of code for your specific case, I think you will end up with what you want. If not, please provide some more info on what you tried (and what you want to get).
  1 Comment
Swarnambiga  A
Swarnambiga A on 22 May 2019
Dear Luuk,
Thanks for your suggestion. I will try. Earlier i tried using GEO probe set page and downloaded the mapping file in .csv. iam still stuck with earlier errors in my code. I will get back to you after trying. I hope this will work for sure. Thanks.
Best,
Swarna

Sign in to comment.

More Answers (0)

Products


Release

R2014a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!