The following two lines are executed after Line780: vp.Sliding.Window.Stats <<- cbind(sliding.window.stats, TD_p_values)
|
colnames(vp.Sliding.Window.Stats)[4] <- ("TD p value") |
|
vp.Sliding.Window.Stats[is.na(vp.Sliding.Window.Stats)] <- ">0.1" |
So the effects of Line781 and Line782 will not be reflected in vp.Sliding.Window.Stats returned by vaxpack_output(). We can run vp.Sliding.Window.Stats <<- vp.Sliding.Window.Stats after L782.
The following two lines are executed after
Line780:vp.Sliding.Window.Stats <<- cbind(sliding.window.stats, TD_p_values)vaxpack/R/vaxpack_output.R
Line 781 in 3c36f7c
vaxpack/R/vaxpack_output.R
Line 782 in 3c36f7c
So the effects of
Line781andLine782will not be reflected invp.Sliding.Window.Statsreturned byvaxpack_output(). We can runvp.Sliding.Window.Stats <<- vp.Sliding.Window.StatsafterL782.