BioProfling.jl currently returns an AssertionError when doing transformations such as normtransform on columns whose type could include missing values but don't. This is too stringent and should be relaxed to work on datasets on which we already selected non-missing values, e.g.:
using BioProfiling, DataFrames
data = DataFrame([[missing,missing,4,2,1,1],1:6])
xp = Experiment(data)
filter!(xp, MissingFilter())
normtransform!(xp, MissingFilter())
BioProfling.jl currently returns an AssertionError when doing transformations such as
normtransformon columns whose type could include missing values but don't. This is too stringent and should be relaxed to work on datasets on which we already selected non-missing values, e.g.: