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
This is an issue if we are trying to update the information without adding any new samples or metadata columns. The hack solution is to remove a column and then update the sample info file.
The issue is _common_extend_steps
if not new_cols and not new_samples:
return
it should be:
if not new_cols and not new_samples:
return None, None
antgonza
changed the title
sample update with no new samples or calls will fail silently
sample update with no new samples or colums will fail silently
Jan 31, 2019
This is an issue if we are trying to update the information without adding any new samples or metadata columns. The hack solution is to remove a column and then update the sample info file.
The issue is _common_extend_steps
it should be:
cc: @ackermag
The text was updated successfully, but these errors were encountered: