I want to convert a .csv file to a GFF3 file. The csv file contains annotation data. I know that I should parse the .csv file and then write the .gff file, but I dont know the complete code
Asked
Active
Viewed 1,143 times
1 Answers
0
In Libreoffice, merge all columns that need to be in column 9 of GFF3. They will end up being space separated. Then, export your file as tab-separated values. Resulting file will have 9 tab-delimited columns. Using sed replace spaces with semi colons. Also, if I remember correctly, ID should be the first attribute in GFF3 column 9, not Name.

vkkodali
- 630
- 7
- 18
-
Thankyou very much. Yes it works. I wrote an script and it was converted. – eli bio67 May 22 '19 at 09:21