Hello,
I have a bam file of a chromosome, I want to use cufflinks or something similar from the terminal to get the actual genes on the chromosome complete with 5000 nucleotide upstream so I can check for promoter regions TF binding sites. I already use the following but it only gives me the transcripts of the genes.
cufflinks --no-update-check -I 300000 -F 0.100000 -j 0.150000 -p 8 file1.bam
gtf2bed --do-not-sort < transcripts.gtf > transcripts.bed
bedtools getfasta -fi chr.fa -bed transcripts.bed -fo results.fasta
Regards