I tried to use stringtie which is one of the most famous quantification tools!
I want to get tpm or fpkm profiles in gene abundance file.
However, in my result, there are some overlapped genes(actually overlapped 'gene ids').
Actually, I used this command:
for FILE in $(ls 02.Align/*Aligned.sortedByCoord.out.bam)
do
if [ ! -s "stringtie/$(basename ${FILE%Aligned.sortedByCoord.out.bam})/$(basename ${FILE%Aligned.sortedByCoord.out.bam}).gtf" ]
stringtie --rf -p 16 \
-A stringtie/$(basename ${FILE%Aligned.sortedByCoord.out.bam})/gene_id.tab \
-G /home/BioResource/GeneSet/mm10/gencode.vM24.annotation.gtf \
-e -B -o stringtie/$(basename ${FILE%Aligned.sortedByCoord.out.bam})/$(basename ${FILE%Aligned.sortedByCoord.out.bam}).gtf \
02.Align/$(basename ${FILE%})
else echo "StringTie output already exist"
fi
done
When I checked the total gene id in gene abundance tab file, there are a few overlapped gene here.
In my thought, it should not show any overlapped gene ids. Also, I tried to check my gtf file whether there are overlapped genes or not. However, there is no overlapped gene id.... Or is there any something missing option in my command..?
Surprisingly, in prepDE.py result, there are only unique gene ids...I could not understand why this happened.....
Hello :)
I tried to use stringtie which is one of the most famous quantification tools! I want to get tpm or fpkm profiles in gene abundance file. However, in my result, there are some overlapped genes(actually overlapped 'gene ids').
Actually, I used this command:
When I checked the total gene id in gene abundance tab file, there are a few overlapped gene here.
In my thought, it should not show any overlapped gene ids. Also, I tried to check my gtf file whether there are overlapped genes or not. However, there is no overlapped gene id.... Or is there any something missing option in my command..? Surprisingly, in prepDE.py result, there are only unique gene ids...I could not understand why this happened.....