@@ -16,6 +16,8 @@ export(enrichment_plot1)
1616export(enrichment_plot2)
1717export(export_genome_occupancy)
1818export(feature_plot)
19+ export(find_strong_peaks)
20+ export(find_weak_peaks)
1921export(frame_plot)
2022export(gene_differential_analysis)
2123export(generate_kmers)
@@ -71,6 +73,8 @@ exportMethods(enrichment_plot1)
7173exportMethods(enrichment_plot2)
7274exportMethods(export_genome_occupancy)
7375exportMethods(feature_plot)
76+ exportMethods(find_strong_peaks)
77+ exportMethods(find_weak_peaks)
7478exportMethods(frame_plot)
7579exportMethods(gene_differential_analysis)
7680exportMethods(generate_summary)
@@ -125,6 +129,7 @@ importFrom(Rsamtools,scanBam)
125129importFrom(Rsamtools,scanBamFlag)
126130importFrom(data.table,`:=`)
127131importFrom(data.table,as.data.table)
132+ importFrom(data.table,rleid)
128133importFrom(data.table,tstrsplit)
129134importFrom(dplyr,"%>%")
130135importFrom(dplyr,arrange)
@@ -142,8 +147,10 @@ importFrom(dplyr,rename)
142147importFrom(dplyr,select)
143148importFrom(dplyr,slice_max)
144149importFrom(dplyr,summarise)
150+ importFrom(dplyr,ungroup)
145151importFrom(fastplyr,f_arrange)
146152importFrom(fastplyr,f_filter)
153+ importFrom(fastplyr,f_full_join)
147154importFrom(fastplyr,f_group_by)
148155importFrom(fastplyr,f_inner_join)
149156importFrom(fastplyr,f_left_join)
@@ -178,6 +185,7 @@ importFrom(ggside,scale_xsidey_continuous)
178185importFrom(magrittr,"%>%")
179186importFrom(methods,new)
180187importFrom(parallel,detectCores)
188+ importFrom(purrr,map)
181189importFrom(purrr,map_df)
182190importFrom(scales,label_log)
183191importFrom(stats,density)
0 commit comments