| plot_heat_map_tp_proc {HDXBoxeR} | R Documentation | 
Plots heat maps for significant peptides.
Description
Returns heat map with average values for significant uptake per residue.
Usage
plot_heat_map_tp_proc(
  input_proc,
  input_up,
  mar_x = 3.5,
  ranges = c(-Inf, -3, -2, -1, 0, 1, 2, 3, Inf),
  pv_cutoff = 0.01,
  replicates = 3
)
Arguments
input_proc | 
 Dataframe with organized procent deuteration data. Input generated using output_tp_proc() function.  | 
input_up | 
 Dataframe with organized deuteration uptake. Input generated using output_tp() function.  | 
mar_x | 
 margin x width. Default=3.5  | 
ranges | 
 ranges for coloring scheme. Default set to c(-Inf, seq(-30, 30, by=10), Inf)  | 
pv_cutoff | 
 p-value cutoff here set up to 0.01  | 
replicates | 
 number of replicates in sample. Default set to 3.  | 
Value
heat map for average uptake per residue for significant peptides.
Examples
file_nm<-system.file("extdata", "All_results_table.csv", package = "HDXBoxeR")
a_up<- output_tp(file_nm)
a_proc<- output_tp(file_nm, percent=TRUE)
plot_heat_map_tp_proc(input_proc=a_proc, input_up=a_up, replicates=3, pv_cutoff=0.01,
ranges=c(-Inf,-40, -30,-20,-10, 0,10, 20,30,40, Inf) )
plot_heat_map_tp_proc(input_proc=a_proc, input_up=a_up)
[Package HDXBoxeR version 0.0.1 Index]