You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
two previous issues have been raised (#82 and #88 ) that speak to the need for LOLAweb to be able to more intelligently check whether or not the processing is working at each "step" (i.e. runLOLA(), aggregateOverGenomeBins(), etc)
right now these checks are if statements that cache a NULL value if the processing functions don't work:
two previous issues have been raised (#82 and #88 ) that speak to the need for LOLAweb to be able to more intelligently check whether or not the processing is working at each "step" (i.e.
runLOLA()
,aggregateOverGenomeBins()
, etc)right now these checks are
if
statements that cache aNULL
value if the processing functions don't work:https://github.com/databio/LOLAweb/blob/master/apps/LOLAweb/app.R#L599-L632
@nsheff has pointed out that more robust (and permissive) way to do this checking might be to use
tryCatch()
The text was updated successfully, but these errors were encountered: