Skip to content

Commit 20e9b98

Browse files
committed
update
1 parent efa0e4d commit 20e9b98

File tree

5 files changed

+624
-1
lines changed

5 files changed

+624
-1
lines changed

NAMESPACE

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

R/class.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ globalVariables(c(".", ".I", "enrich", "exonlen", "gene", "gene_name", "idnew","
1010
"occurrence", "pause_score", "pep_seq", "ratio", "rel_pause", "tripep_val","motif","nt_pos",
1111
"sample_group","sum_pi","counts.y", "periodicity.x","codons","log2FoldChange","Amplitude",
1212
"Period","mapped", "pvalue", "seq_type","ccdf","pos3sp", "pos3st", "pos5sp", "pos5st",
13-
"sm1", "sm2", "smratio","bin", "nmft", "winstart","ci_high", "ci_low","norm.x","norm.y"))
13+
"sm1", "sm2", "smratio","bin", "nmft", "winstart","ci_high", "ci_low","norm.x","norm.y",
14+
"above", "background_mean", "group", "ip", "tt"))
1415

1516

1617
#' ribotrans Class

0 commit comments

Comments
 (0)