Loading ivas_processing_scripts/processing/chains.py +27 −7 Original line number Diff line number Diff line Loading @@ -575,12 +575,32 @@ def validate_input_files(cfg: TestConfig): # always throw an error for ISM (and MASA) input if input_format.startswith("ISM") or input_format.startswith("MASA"): isosb = False isosba = (input_format in ['ISM1SBA1', 'ISM1SBA2', 'ISM1SBA3', 'ISM2SBA1', 'ISM2SBA2', 'ISM2SBA3', 'ISM3SBA1', 'ISM3SBA2', 'ISM3SBA3', 'ISM4SBA1', 'ISM4SBA2', 'ISM4SBA3', 'ISM1PLANARSBA1', 'ISM1PLANARSBA2', 'ISM1PLANARSBA3', 'ISM2PLANARSBA1', 'ISM2PLANARSBA2', 'ISM2PLANARSBA3', 'ISM3PLANARSBA1', 'ISM3PLANARSBA2', 'ISM3PLANARSBA3', 'ISM4PLANARSBA1', 'ISM4PLANARSBA2', 'ISM4PLANARSBA3' ] ) isosba = input_format in [ "ISM1SBA1", "ISM1SBA2", "ISM1SBA3", "ISM2SBA1", "ISM2SBA2", "ISM2SBA3", "ISM3SBA1", "ISM3SBA2", "ISM3SBA3", "ISM4SBA1", "ISM4SBA2", "ISM4SBA3", "ISM1PLANARSBA1", "ISM1PLANARSBA2", "ISM1PLANARSBA3", "ISM2PLANARSBA1", "ISM2PLANARSBA2", "ISM2PLANARSBA3", "ISM3PLANARSBA1", "ISM3PLANARSBA2", "ISM3PLANARSBA3", "ISM4PLANARSBA1", "ISM4PLANARSBA2", "ISM4PLANARSBA3", ] if not isosba: frame_alignment = "error" Loading Loading
ivas_processing_scripts/processing/chains.py +27 −7 Original line number Diff line number Diff line Loading @@ -575,12 +575,32 @@ def validate_input_files(cfg: TestConfig): # always throw an error for ISM (and MASA) input if input_format.startswith("ISM") or input_format.startswith("MASA"): isosb = False isosba = (input_format in ['ISM1SBA1', 'ISM1SBA2', 'ISM1SBA3', 'ISM2SBA1', 'ISM2SBA2', 'ISM2SBA3', 'ISM3SBA1', 'ISM3SBA2', 'ISM3SBA3', 'ISM4SBA1', 'ISM4SBA2', 'ISM4SBA3', 'ISM1PLANARSBA1', 'ISM1PLANARSBA2', 'ISM1PLANARSBA3', 'ISM2PLANARSBA1', 'ISM2PLANARSBA2', 'ISM2PLANARSBA3', 'ISM3PLANARSBA1', 'ISM3PLANARSBA2', 'ISM3PLANARSBA3', 'ISM4PLANARSBA1', 'ISM4PLANARSBA2', 'ISM4PLANARSBA3' ] ) isosba = input_format in [ "ISM1SBA1", "ISM1SBA2", "ISM1SBA3", "ISM2SBA1", "ISM2SBA2", "ISM2SBA3", "ISM3SBA1", "ISM3SBA2", "ISM3SBA3", "ISM4SBA1", "ISM4SBA2", "ISM4SBA3", "ISM1PLANARSBA1", "ISM1PLANARSBA2", "ISM1PLANARSBA3", "ISM2PLANARSBA1", "ISM2PLANARSBA2", "ISM2PLANARSBA3", "ISM3PLANARSBA1", "ISM3PLANARSBA2", "ISM3PLANARSBA3", "ISM4PLANARSBA1", "ISM4PLANARSBA2", "ISM4PLANARSBA3", ] if not isosba: frame_alignment = "error" Loading