Thanks ATpoint, generally I check the manual... but you right
stringtie <aligned_reads.bam> [options]*
Hi there I am trying to use stringtie to count reads using the merged gtf from bam files but the command that I find it to do the job give me back an error.
$ stringtie –e –B -p 8 -G genome/TAIR10/annotation/stringtie_merged.gtf -o ballgown/Athaliana_root_1/Athaliana_root_1.gtf sam_bam/Athaliana_root_1.bam
Error: input file –e cannot be found!
I try to copy the merged file to different directories but not seems to work! I got this command from a tutorial. Do you have any clue or suggestion why this isn't working?
Thanks
The syntax is wrong. From the manual: stringtie <aligned_reads.bam> [options]*
It means the input file is the first argument after stringtie which currently is -e, which is why the tool interpretes it as input.
Must be:
stringtie sam_bam/Athaliana_root_1.bam –e –B -p 8 -G genome/TAIR10/annotation/stringtie_merged.gtf -o ballgown/Athaliana_root_1/Athaliana_root_1.gtf
Thanks ATpoint, generally I check the manual... but you right
stringtie <aligned_reads.bam> [options]*
I got it done...
$ stringtie -e -B -p 4 sam_bam/Athaliana_root_1.bam -G genome/TAIR10/annotation/stringtie_merged.gtf -o ballgown/Athaliana_root_2/athaliana_root_1.count -A ballgown/Athaliana_root_1/Athaliana_root_1.out
Thanks
Log in to answer this question.
Stupid suggestion but have you looked in the manual/help section of the stringtie software? ;)
it seems like the first argument it expects is a file and not a parameter or other option. (== try to restructure you cmdline)
I am trying that...maybe my question is dumb, but when you put out a tutorial, well maybe you get it right. 8)
https://bioinformatics.uconn.edu/rnaseq-arabidopsis/
indeed it is mentioned like this in this tutorial.
So either it's just wrong or it might be a version difference?