BergelsonLab / blabr

Other
1 stars 3 forks source link

fix assertthat assertions #23

Open kalenkovich opened 2 years ago

kalenkovich commented 2 years ago

assertthat::not_empty(tbl) is incorrect! It only returns a boolean result, no assertion is made. The correct version is

asserthat::assert_that(assertthat::not_empty(tbl))