Skip to content
Merged

Dev #113

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions splicekit/core/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ def read_exons():
count_all = len(annotation.samples)
for sample_id in annotation.samples:
f = gzip.open(f"data/sample_exons_data/sample_{sample_id}.tab.gz", "rt")
print(f"reading data/sample_exons_data/sample_{sample_id}.tab.gz")
r = f.readline() # header
r = f.readline()
while r:
Expand Down
Loading