Checking kit integrity on import.

This commit is contained in:
Landon Wark
2023-03-03 15:06:43 -06:00
parent 1c89c31d25
commit 82d5378479
14 changed files with 376 additions and 95 deletions

View File

@@ -22,4 +22,8 @@ def check_is_power_user(ctx:dict) -> bool:
except Exception as e:
logger.debug(f"Check encounteded unknown error: {type(e).__name__} - {e}")
check = False
return check
return check
def create_reagent_list(in_dict:dict) -> list[str]:
return [item.strip("lot_") for item in in_dict.keys()]