Thanks, it works
• 0 views
•
link
I got two files from glimmer .detail and .predict...then how to extract all predicted genes sequence from these files?
You can use http://dawgpaws.sourceforge.net/man/cnv_genemark2gff.html (this is for GeneMark)
For glimmer:
grep ^orf output.glimmer | awk '{OFS="\t"}{strang = "+"}{if($4 < 0) strang="-"}{gsub(/[+-]/," ")}{print "FASTA_HEADER", "GLIMMER", "gene" , $2 , $3, $5, strang , $4, "ID="$1"; NOTE:GLIMMER ORF prediction;"}'
Log in to answer this question.