Skip to content

Error: Only one identification found: 'RNA_snn_res.0.6 #35

Answered by jgriss
Ankita-1211 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @Ankita-1211,

The issue is caused by the way the alignment was done.

  1. Reactome does not support version numbers in ENSEMBL ids (the number after the ".")

This can easily be fixed using the following command:

# Remove any trailing .[Number] from the identifiers
rownames(your_seurat_object) <- gsub("\\.[0-9]*$", "", rownames(your_seurat_object))
  1. Apparently, your pipeline created groups of ambiguous genes (f.e. "ENSG00000001084.12,ENSG00000249379.1"). Naturally, these cannot be interpreted by our tools since we don't know which gene to refer to. It won't harm your analysis as they will simply be ignored.

Kind regards,
Johannes

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@Ankita-1211
Comment options

Comment options

You must be logged in to vote
1 reply
@Ankita-1211
Comment options

Answer selected by jgriss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #34 on August 12, 2021 12:24.