convert bed file to fasta file
Hi
I have the transcript.gtf file from cufflinks. I would like to identify novel long non_coding RNA using lncRScan.
I need to convert the gtf file to bed file and bed file to fasta file.
any suggestion would be appreciated.
Thanks
• 14,463 views
•
link
3 answers
• 0 views
•
link
Here's a one-liner via gtf2bed and bed2faidx:
$ gtf2bed < annotations.gtf | bed2faidx > annotations.fa
You'll need samtools and samtools-indexed FASTA files to run bed2faidx.
• 0 views
•
link
Log in to answer this question.