complete != combined

This commit is contained in:
Tanushree Tunstall 2022-09-12 14:49:03 +01:00
parent 7b1862a23e
commit 77e4e9b61b

View file

@ -141,7 +141,8 @@ makeplot = function(x, # the DataFrame to plot
combined_training_genes = '999' # used only for the info box combined_training_genes = '999' # used only for the info box
){ ){
plot_data = x[x$resampling==resampler,] plot_data = x[x$resampling==resampler,]
y_coord_min = min(plot_data[selection], na.rm=TRUE) # y_coord_min = min(plot_data[selection], na.rm=TRUE)
y_coord_min = min(plot_data[selection])
if (y_coord_min > 0) { if (y_coord_min > 0) {
y_coord_min = 0 y_coord_min = 0