I have a GTF file. When i use coolbox to draw the DNA duture with GTF file on jupyter notebook, i occured an error :
CalledProcessError: Command '['tabix', '-p', 'gff', '../../reference/huangniu/GCF_002263795.1_ARS-UCD1.2_genomic.gtf.bgz']' returned non-zero exit status 1.
Then i run "tabix -p gff ../../reference/huangniu/GCF_002263795.1_ARS-UCD1.2_genomic.gtf.bgz',it also occured an error:
[E::hts_idx_push] Unsorted positions on sequence #2: 148410857 followed by 66847172
When i open the *.gtf.bgz, i found it not sort in some lines, such as
Then i run "grep -v ^"#" GCF_002263795.1_ARS-UCD1.2_genomic_filter.gtf | sort -t$'\t' -k1,1 -k4,4n", the result is true:
I have a GTF file. When i use coolbox to draw the DNA duture with GTF file on jupyter notebook, i occured an error : CalledProcessError: Command '['tabix', '-p', 'gff', '../../reference/huangniu/GCF_002263795.1_ARS-UCD1.2_genomic.gtf.bgz']' returned non-zero exit status 1.
Then i run "tabix -p gff ../../reference/huangniu/GCF_002263795.1_ARS-UCD1.2_genomic.gtf.bgz',it also occured an error: [E::hts_idx_push] Unsorted positions on sequence #2: 148410857 followed by 66847172
When i open the *.gtf.bgz, i found it not sort in some lines, such as
Then i run "grep -v ^"#" GCF_002263795.1_ARS-UCD1.2_genomic_filter.gtf | sort -t$'\t' -k1,1 -k4,4n", the result is true:
Finally, coolbox is working.