diff --git a/cg_lims/EPPs/files/base.py b/cg_lims/EPPs/files/base.py index 3a353026..6344ac77 100644 --- a/cg_lims/EPPs/files/base.py +++ b/cg_lims/EPPs/files/base.py @@ -6,6 +6,7 @@ # commands from cg_lims.EPPs.files.file_to_udf import csv_well_to_udf from cg_lims.EPPs.files.hamilton.base import hamilton +from cg_lims.EPPs.files.ont_json_to_udf import parse_ont_report from cg_lims.EPPs.files.placement_map.make_96well_placement_map import placement_map from cg_lims.EPPs.files.pooling_map.make_pooling_map import pool_map from cg_lims.EPPs.files.sample_sheet.create_ont_sample_sheet import create_ont_sample_sheet @@ -29,3 +30,4 @@ def files(ctx): files.add_command(create_sample_sheet) files.add_command(create_ont_sample_sheet) files.add_command(parse_run_parameters) +files.add_command(parse_ont_report)