File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535
3636COLUMNS_TO_USE = [
3737 "patient_key" ,
38+ "_patient_key_raw" ,
3839 "study_id" ,
3940 "series_id" ,
4041 "dicom_path" ,
Original file line number Diff line number Diff line change 2626from imperandi .utils .misc import print_args
2727from imperandi .utils .manifest import load_manifest
2828from imperandi .datasets_config .defaults import DEFAULT_DICOM_TAGS
29- from imperandi .ingest .hook_manifests import (
30- apply_id_standardization ,
31- apply_derived_columns ,
32- )
29+ from imperandi .ingest .hook_manifests import apply_id_standardization
3330
3431warnings .filterwarnings ("ignore" )
3532logger = logging .getLogger (__name__ )
@@ -938,7 +935,7 @@ def main(args):
938935 series_tag = args .series_id_from ,
939936 )
940937 df = apply_id_standardization (df , manifest , logger = logger )
941- df = apply_derived_columns (df , manifest )
938+ # df = apply_derived_columns(df, manifest)
942939
943940 # 4) output final df
944941 out_final = output_dir / "dicom_index.csv"
You can’t perform that action at this time.
0 commit comments