Hello, I have the following GFF file:
##gff-version 3
#!gff-spec-version 1.21
#!processor NCBI annotwriter
#!genome-build Assembly 2.2 of Bactrocera tryoni genome
#!genome-build-accession NCBI_Assembly:GCA_000695345.1
##sequence-region JHQJ01000001.1 1 3181581
##species http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=59916
JHQJ01000001.1 Genbank region 1 3181581 . + . ID=id0;Dbxref=taxon:59916;country=Australia: Gosford%2C NSW;gbkey=Src;lat-lon=33.86 S 151.21 E;mol_type=genomic DNA;note=inbred lab stock%3B collected in 1990s;sex=male;strain=bent wings;tissue-type=whole body
##sequence-region JHQJ01000002.1 1 1701813
##species http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=59916
JHQJ01000002.1 Genbank region 1 1701813 . + . ID=id1;Dbxref=taxon:59916;country=Australia: Gosford%2C NSW;gbkey=Src;lat-lon=33.86 S 151.21 E;mol_type=genomic DNA;note=inbred lab stock%3B collected in 1990s;sex=male;strain=bent wings;tissue-type=whole body
##sequence-region JHQJ01000003.1 1 1550466
I would like to use RnaChipIntegrator
, but it requires as input the following columns:
Column Name Description
1 ID Name used to identify the gene in the output
2 chr Chromosome name
3 start Start position of the gene
4 end End position of the gene
5 strand Must be either '+' or '-'
6 diff_expr Optional: indicates gene is differentially expressed (1) or not (0)
How can convert the GFF file to the supported input file for RnaChipIntegrator?
Thank you in advance.
Mic