Closed YichaoOU closed 1 year ago
Hello,
I'm having a name inconsistency issue. Some gene names in the loom file produced by velocyto are different than gene names in seruat.
velocyto
seruat
The loom files are generated by: velocyto run10x --samtools-threads $ncore -m $repeats $COL1 $transcriptome. Then ldata = scv.read(sample_dir, cache=False)
velocyto run10x --samtools-threads $ncore -m $repeats $COL1 $transcriptome
ldata = scv.read(sample_dir, cache=False)
Example 1: the gene name is Aldoa, but velocyto add -1, which becomes Aldoa-1.
Aldoa
-1
Aldoa-1
Example 2: the gene name is Ighd1-1, but becomes Ighd1.
Ighd1-1
Ighd1
What is wrong?
Thanks, Yichao
I seem to find the reason. These genes have two Ensembl IDs with the same gene name, seurat renamed the second duplicate as .1 and velocity renamed the second one as -1
seurat
.1
velocity
Hello,
I'm having a name inconsistency issue. Some gene names in the loom file produced by
velocyto
are different than gene names inseruat
.The loom files are generated by:
velocyto run10x --samtools-threads $ncore -m $repeats $COL1 $transcriptome
. Thenldata = scv.read(sample_dir, cache=False)
Example 1: the gene name is
Aldoa
, but velocyto add-1
, which becomesAldoa-1
.Example 2: the gene name is
Ighd1-1
, but becomesIghd1
.What is wrong?
Thanks, Yichao