Hi,
I have a few questions about using goseq on a non-model organism:
I have a set of DE-genes identified by DESeq2 called genes,
a vector of gene lengths called lengthData created like this:
txdb = makeTxDbFromGFF("../merged_fixed.gtf", format = ("gtf"))
txsByGene=transcriptsBy(txdb,"gene")
lengthData=median(width(txsByGene))
And I have a reference set of genes called backM which is a list of gene names
I am at this point of the goseq manual:
pwf=nullp(genes,"hg19","ensGene")
And my question is how do I refer to my non-model genome and what should I provide as id?
Thanks, Jon

Is your organism supported by Annotation Hub? Try:
library(AnnotationHub) hub = AnnotationHub() query(hub, c("OrgDb"))No it's not, but thanks for the Annotation Hub tip! I haven't used if before.