Skip to content
Snippets Groups Projects
Commit 6a56e408 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Verifyed that number of enhancers is 4974.

parent 632f0f38
Branches
No related merge requests found
This diff is collapsed.
intervene_test/Histone_barplot.png

13.2 KiB | W: | H:

intervene_test/Histone_barplot.png

13.2 KiB | W: | H:

intervene_test/Histone_barplot.png
intervene_test/Histone_barplot.png
intervene_test/Histone_barplot.png
intervene_test/Histone_barplot.png
  • 2-up
  • Swipe
  • Onion skin
You can go to Intervene Shiny App https://asntech.shinyapps.io/Intervene-app/ and copy/paste the following intersection data to get more interactive figures. You can go to Intervene Shiny App https://asntech.shinyapps.io/Intervene-app/ and copy/paste the following intersection data to get more interactive figures.
H3K27ac_enhancers=12510,H3K27ac_enhancers&H3K4me1_enhancers=55566,H3K4me1_enhancers=153327,GRO-seq_enhancers&H3K27ac_enhancers&H3K4me1_enhancers=610,GRO-seq_enhancers&H3K27ac_enhancers=256,GRO-seq_enhancers=3765,GRO-seq_enhancers&H3K4me1_enhancers=358 H3K27ac_enhancers=12510,H3K27ac_enhancers&H3K4me1_enhancers=55566,H3K4me1_enhancers=153327,GRO-seq_enhancers&H3K27ac_enhancers&H3K4me1_enhancers=609,GRO-seq_enhancers&H3K27ac_enhancers=254,GRO-seq_enhancers=3754,GRO-seq_enhancers&H3K4me1_enhancers=357
\ No newline at end of file \ No newline at end of file
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
if (suppressMessages(!require("UpSetR"))) suppressMessages(install.packages("UpSetR", repos="http://cran.us.r-project.org")) if (suppressMessages(!require("UpSetR"))) suppressMessages(install.packages("UpSetR", repos="http://cran.us.r-project.org"))
library("UpSetR") library("UpSetR")
pdf("/Users/venkatmalladi/Projects/PITTED/intervene_test/Intervene_results/intervene_genomic_UpSet_plot.pdf", width=10, height=8, onefile=FALSE) pdf("/Users/venkatmalladi/Projects/PITTED/intervene_test/Intervene_results/intervene_genomic_UpSet_plot.pdf", width=10, height=8, onefile=FALSE)
expressionInput <- c('H3K27ac_enhancers'=12510,'H3K27ac_enhancers&H3K4me1_enhancers'=55566,'H3K4me1_enhancers'=153327,'GRO-seq_enhancers&H3K27ac_enhancers&H3K4me1_enhancers'=610,'GRO-seq_enhancers&H3K27ac_enhancers'=256,'GRO-seq_enhancers'=3765,'GRO-seq_enhancers&H3K4me1_enhancers'=358) expressionInput <- c('H3K27ac_enhancers'=12510,'H3K27ac_enhancers&H3K4me1_enhancers'=55566,'H3K4me1_enhancers'=153327,'GRO-seq_enhancers&H3K27ac_enhancers&H3K4me1_enhancers'=609,'GRO-seq_enhancers&H3K27ac_enhancers'=254,'GRO-seq_enhancers'=3754,'GRO-seq_enhancers&H3K4me1_enhancers'=357)
upset(fromExpression(expressionInput), nsets=3, nintersects=30, show.numbers="yes", main.bar.color="#108DCC", sets.bar.color="#E62128", empty.intersections=NULL, order.by = "degree", number.angles = 0, mainbar.y.label ="No. of Intersections", sets.x.label ="No. of Unique Enhancers") upset(fromExpression(expressionInput), nsets=3, nintersects=30, show.numbers="yes", main.bar.color="#108DCC", sets.bar.color="#E62128", empty.intersections=NULL, order.by = "degree", number.angles = 0, mainbar.y.label ="No. of Intersections", sets.x.label ="No. of Unique Enhancers")
invisible(dev.off()) invisible(dev.off())
No preview for this file type
...@@ -5,9 +5,9 @@ cp ../H3K4me1_filtered_peaks.bed H3K4me1_enhancers.bed ...@@ -5,9 +5,9 @@ cp ../H3K4me1_filtered_peaks.bed H3K4me1_enhancers.bed
cp ../H3K27ac_filtered_peaks.bed H3K27ac_enhancers.bed cp ../H3K27ac_filtered_peaks.bed H3K27ac_enhancers.bed
cp ../SUNP_filtered_peaks.bed . cp ../SUNP_filtered_peaks.bed .
cp ../SSP_filtered_peaks_merged.bed . cp ../SSP_filtered_peaks_merged.bed .
cut -f1,2,3 SUNP_filtered_peaks.bed > t cut -f1,2,3,4 ../SUNP_filtered_peaks.bed > t
cut -f1,2,3 SSP_filtered_peaks_merged.bed >> t cut -f1,2,3,4 ../SSP_filtered_peaks_merged.bed >> t
sort-bed t > GRO-seq_enhancers.bed sort-bed t | uniq > GRO-seq_enhancers.bed
intervene upset -i *enhancers.bed --filename --order degree --sxlabel "No. of Unique Enhancers" --dpi 1200 --figsize 10 8 --mbcolor "#108DCC" --sbcolor "#E62128" intervene upset -i *enhancers.bed --filename --order degree --sxlabel "No. of Unique Enhancers" --dpi 1200 --figsize 10 8 --mbcolor "#108DCC" --sbcolor "#E62128"
......
...@@ -9,7 +9,7 @@ pts = np.array([ ...@@ -9,7 +9,7 @@ pts = np.array([
179, 49, 189, 55720, 907, 12592, 153356]) 179, 49, 189, 55720, 907, 12592, 153356])
df = pd.DataFrame([ df = pd.DataFrame([
610, 256, 358, 55566, 3765, 12510, 153327]) 609, 254, 357, 55566, 3754, 12510, 153327])
ind = np.arange(N) # the x locations for the groups ind = np.arange(N) # the x locations for the groups
width = 0.35 # the width of the bars width = 0.35 # the width of the bars
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment