There were some 454 reads obtained from NCBI and I tried to map them to reference genome and estimate abundance by calculation of FPKM values. The website of tophat told me that version 2 of tophat
can be used to map 454 reads so I gave terminal common commands like Illumina Hiseq 2000 mapping. But the mapping results were bad with little (about 500Kb) accepted_hits.bam
and zero FPKM values. I don't know how to solve it so I ask for your help, my operation was here:
$ fastq-dump -I --split-files SRR123456.sra #converted sra file to fastq file
$ tophat -p 8 -G genes.gtf -o SRR123456 genome SRR123456_1.fastq SRR123456_2.fastq # Version of tophat is version 2
After this command, I checked accepted-hits.bam
of SRR123456
folder and found little file.
Notes: the sra file was 454 reads, No problem met by using Illumina reads (such as Hiseq 2000)
tophat won't give you FPKM. It will give give u mapped reads. To get FPKM, you need to use cufflinks. Or any other available tools including bedtools (using coverageBed).
Sounds like you're not mapping for some reason: What errors are you receiving, if any? Sounds like you don't have any "hits" in your BAM/SAM.
Can you be a little more explicit in your workflow from your SRA file?