patientFile = "metadata/patients_rtstruct.txt" with open(patientFile, 'r') as file: PATIENT_IDS = file.read().splitlines()
Lines 12-14 in Snakefile expect this metadata file that currently has RADCURE patient IDs in it, but no code exists in the repo to make this file for other datasets.
Either
- Add code to make this metadata file
- Change Snakefile to get PATIENT_IDS directly
patientFile = "metadata/patients_rtstruct.txt" with open(patientFile, 'r') as file: PATIENT_IDS = file.read().splitlines()Lines 12-14 in Snakefile expect this metadata file that currently has RADCURE patient IDs in it, but no code exists in the repo to make this file for other datasets.
Either