GangLiLab / genekitr

🧬 Gene analysis toolkit based on R
https://www.genekitr.fun
GNU General Public License v3.0
53 stars 7 forks source link

transId() updating symbols weird behaviour #8

Closed MEladawi closed 1 year ago

MEladawi commented 1 year ago

Hello--

I am updating old gene symbols with keepNA = FALSE, unique = FALSE.

I am getting some strange data (please see below). row 138 (Gm553): is official symbol and it is returned as NA. row 149-151: the original symbols are Ankrd44 & 4930444A19Rik. row 156 & 157 (Mob4): it comes one time as Mob4 and one time as NA.

image
reedliu commented 1 year ago

The gene name is a little tidious thing. For example,

If you want to get one-to-one match, please set "unique=TRUE" and it will return you the best-matching one. (I have given the function some rules to get the best-matching one, while it is a long story...)

MEladawi commented 1 year ago

Thanks! This makes sense..