Hello,
I'm trying to get getBMFeatureAnnos() to run on a list of gene names which often contain a ".". However, it appears that anything after the "." gets stripped as the function runs, creating a number of duplicate row names in my case.
## Remove transcript ID artifacts from runKallisto (eg. ENSMUST00000201087.11 -> ENSMUST00000201087)
feature_ids <- gsub(pattern = "\\.[0-9]+", replacement = "", x = feature_ids)
Is there a way to make that an optional step? Is there another way around it?
Hello, I'm trying to get
getBMFeatureAnnos()
to run on a list of gene names which often contain a ".". However, it appears that anything after the "." gets stripped as the function runs, creating a number of duplicate row names in my case.Is there a way to make that an optional step? Is there another way around it?
Thank you for your help.
Linda
Example code copied from BioConductor support forum post (https://support.bioconductor.org/p/97849/)