In Linux the one liner below will create a new file with only rows containing CDS and exon in the third column.
awk '$3=="CDS" || $3=="exon"' myFile.gff3 > new_myFile.gff3
awk '$3=="CDS" || $3=="exon"' myFile.gff3 > new_myFile.gff3
You are currently viewing the SEQanswers forums as a guest, which limits your access. Click here to register now, and join the discussion
Comment