Thank you for your help. It works, but how do I make the change permanent.
• 0 views
•
link
I have a gff3 file with 9 columns, I want to copy the 9th column and its content to column 2 of the same file so column 2 and 9 will look identical. Was hoping if there is a way to do that. Appreciate all the help.
awk -F "\t" -vOFS="\t" 'NR==1{print} NR>1{print $1,$9,$3,$4,$5,$6,$7,$8,$9}' my_gff3_file.gff
Log in to answer this question.