Skip to content

Commit 5390d6b

Browse files
committed
UPD
1 parent 72d0cce commit 5390d6b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

scripts/parse_asdb.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ def _process_file(
7070
if acc:
7171
accessions.add(acc)
7272

73-
readouts_for_target.append(readout_dict)
73+
# Keep the full record alongside the readout (matches repo helpers)
74+
readouts_for_target.append({
75+
"rec": rec,
76+
"readout": readout_dict.get("readout", []),
77+
})
7478

7579
if readouts_for_target:
7680
all_targets.append(readouts_for_target)

0 commit comments

Comments
 (0)