Intro-to-ChIPseq icon indicating copy to clipboard operation
Intro-to-ChIPseq copied to clipboard

adding details pulldown to selected lessons

Open mistrm82 opened this issue 8 years ago • 3 comments

This is an HTML tag taht would be useful for "try it on your own" sections, where the code is hidden initially but clicking on it will make it available

```bash $ idr --samples Pou5f1-rep1_sorted_peaks.narrowPeak Pou5f1-rep2_sorted_peaks.narrowPeak \ --input-file-type narrowPeak \ --rank p.value \ --output-file Pou5f1-idr \ --plot \ --log-output-file pou5f1.idr.log ```

mistrm82 avatar Dec 05 '17 20:12 mistrm82

<details> <pre> <code> ## plot using ggplot2

ggplot(melted_top20_sigOE) + geom_point(aes(x = gene, y = normalized_counts, color = sampletype)) + scale_y_log10() + xlab("Genes") + ylab("Normalized Counts") + ggtitle("Top 20 Significant DE Genes") + theme_bw() + theme(axis.text.x = element_text(angle = 45, hjust = 1)) + theme(plot.title=element_text(hjust=0.5)) </code> </pre> </details>

rkhetani avatar Dec 05 '17 21:12 rkhetani

The method listed above works nicely for html rendered markdown, looks a little funky without rendering.

rkhetani avatar Dec 05 '17 21:12 rkhetani

Does anyone want to take a stab at this? It would be nice feature to have

mistrm82 avatar Jul 03 '18 19:07 mistrm82