Entering edit mode
Shi, Tao
▴
720
@shi-tao-199
Last seen 9.4 years ago
Hi list,
Please see the following:
> package.version('hgu133a')
[1] "1.12.0"
> get('202990_at', hgu133aGENENAME)
[1] "phosphorylase, glycogen" " liver
(Hers disease, glycogen storage disease type VI)"
> get('202100_at', hgu133aGENENAME)
[1] "v-ral simian leukemia viral oncogene homolog B (ras related"
[2] " GTP binding protein)"
> get('202990_at', hgu133aGENENAME)[1]
[1] "phosphorylase, glycogen"
> get('202990_at', hgu133aGENENAME)[2]
[1] " liver (Hers disease, glycogen storage disease type VI)"
> get('202100_at', hgu133aGENENAME)[1]
[1] "v-ral simian leukemia viral oncogene homolog B (ras related"
> get('202100_at', hgu133aGENENAME)[2]
[1] " GTP binding protein)"
I understand that b/c there were ";" in the original annotations, the
two parts were put into two separate fields. But does it make more
sense just to combine them into one? It will make coding much easier.
...Tao