[2015-04-11 21:58:47] Checking for reference FASTA file
Warning: Could not find FASTA file /home/anoronh4/HW3/hg19f/hg19.fa
[2015-04-11 21:58:47] Reconstituting reference FASTA file from Bowtie index
Error locating program: bowtie-inspect
I think you want to align RNAseq reads to your reference genomes. If so, and If you have paired-end reads of RNAseq (R1 and R2), you should follow these steps:
Build index files using bowtie2 (bowtie2 is for tophat2) using bowtie2-build your_fasta_file. After generating bowtie index files, do not compromise them, just leave in your directory. In your case "The files in hg19f are:" you put all bowtie index files in a file and used the file in your tophat command. you should not do this. first, you will need to use your fast file to make bowtie index file, you will use your the same genome file in tophat command, not index files.
Run tophat command. in tophat command, you need to use your fasta (genome file) and RNAseq files (R1 and R2). The fast file is in .fa format. Ransom files are generally in .gz (gunzip) format.
Hi , Sorry for the delay. Before running Tophat, you have to make an index file that will be used by Tophat.
For this;
bowtie2-build your fasta file indexname
just give any index name (for example: myindexname).
Then, in Tophat analysis, for the argument index in Tophat command, just type myindexname and run.
ADD REPLY
• link
updated 2.4 years ago by
Ram
44k
•
written 7.7 years ago by
Mehmet
▴
820
0
Entering edit mode
Hello I run the Tophat command as you mention in the last post. The program run but throw me a message at the end:
[2017-04-05 09:53:57] Checking for reference FASTA file
Warning: Could not find FASTA file TAIR10_chr_all.fa
[2017-04-05 09:53:57] Reconstituting reference FASTA file from Bowtie index
Executing: /data/software/bowtie2-2.2.9/bowtie2-inspect TAIR10_chr_all > tophat_mapping/tmp/TAIR10_chr_all.fa
one correction:
./tophat2 -r 210 -p 8 -G ~/Data/*.gtf ~/Data/hg19f/
hg19
~/Data/thyroid1,~/Data/testes1 ~/Data/thyroid2,~/Data/testes2Give full names of fasta/q files. Why its *.gtf ?
Is bowtie2 installed? Is bowtie-inspect in the path?