ggplot(degs,aes(paste(sample_1,"vs",sample_2),fill=(s1_overex)))+geom_bar()+xlab(NULL)+ylab("# DGEs")+ggtitle("DEGs by contrast")+coord_flip()
#' DEGs can be browsed in Excel using the exported table or via the embedded table browser. To enable the IGV links, you need to set the port in the IGV preferences to 3334.
kableDegs<-degs
if(nrow(degs>2000)){
kableDegs<-degs%>%arrange(padj)%>%head(1000)
# Error: object 'q_value' not found. So: padj used instead of '-q_value'
print("just showing first 1000 most significant hits (highest p-value) in interactive hit table!!!! Use Excel to browser to browse the full set")