Entering edit mode
6.6 years ago
wocana
▴
20
Hi im trying to extract some sequences from my GFF3 file to fasta but when I run this:
$ bedtools getfasta -fi Muschr4.fsa -bed Muschr4.fsa.mod.pass.list.gff3 -fo ERVCom.fa
I get
WARNING. chromosome (seq0) was not found in the FASTA file. Skipping.
WARNING. chromosome (seq0) was not found in the FASTA file. Skipping.
WARNING. chromosome (seq0) was not found in the FASTA file. Skipping.
WARNING. chromosome (seq0) was not found in the FASTA file. Skipping.
Do chromosome identifiers match in fasta and GFF files? That is the first thing to check. These are warnings so they may be benign.
Paste the output of these commands here
AND
Then i tried with bed but still no working
It looks like you have things named
seq0
in your GFF file but not in fasta file. Can you confirm bygrep "seq0" your_gff | head -5
Please use
ADD COMMENT/ADD REPLY
when responding to existing posts to keep threads logically organized.