Help me plot exons of genes #1088
Unanswered
andreaswallberg
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone!
I am playing around with the GFF parsing and gene plotting capabilities of Gosling and I struggle to visualize exons after reading in a GFF file. Essentially, I would like to plot the exon blocks at the same height as the start and end marks of the genes ("15"), but the
dataTransform
does not seem to catch the type "exon" in the relevant code.Here are my tracks:
If I flip
"oneOf": ["exon"]}
to"oneOf": ["gene"]}
thendataTransform
catches it but of course plots the whole gene at that width, instead of each individual exon.Is
"exon"
not a"type"
?Or does the GFF parser (in HiGlass?) throw away all types that are not
"gene"
somewhere upstream?Beta Was this translation helpful? Give feedback.
All reactions