Hi, I'm using stringtie and ballgown (in R) for the standard RNA-seq data analysis.
Both
texp(ballgown_obj1, 'all')$gene_name
and
ballgown::geneNames(ballgown_obj1)
return all the gene names as “.”
How can I get my gene names?
Thanks,
Hi, I'm using stringtie and ballgown (in R) for the standard RNA-seq data analysis.
Both
texp(ballgown_obj1, 'all')$gene_name
and
ballgown::geneNames(ballgown_obj1)
return all the gene names as “.”
How can I get my gene names?
Thanks,
I solved the problem, the annotation file did not a gene_name column.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Did you do a denovo assembly ? If so, you will have to first add the gene names by using getGenes() and a gtf file. Also check what is the output of indexes(ballgown_obj1)$t2g
Hi Aditi, It is not denovo assembly. he output of
indexes(ballgown_obj1)$t2
isCan you post your code here?
Aditi, I am sorry for the late reply. I was fixing my PC.. Below is the code for stringtie and ballgown. Here is the code for stringtie:
stringtie -e -B -p 8 -G ./stringtie_merged.gtf -o ${BALLGOWNDIR}/SRR${A}/SRR${A}.gtf ${HISAT2DIR}/SRR${A}.bam
Here is the code for ballgown
I solved the problem, the annotation file did not a gene_name column.
Hi there,
I have the same "." problem. I read your code and basically used the same, but I can't find the solution. How did you solve at the end?
Thanks