pgx-main from prod added

This commit is contained in:
2025-08-18 12:06:58 +02:00
parent fcb0e9aa4c
commit fe48df8676
984 changed files with 878657 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import os
import shutil
x = "pgx_results"
with open("genes.txt", "r") as f:
genes = [g.strip() for g in f.readlines() if g.strip()]
for d in os.listdir(x):
for g in genes:
shutil.copy(f"data/{d[:-10]}{g}.alleles", f"{x}/{d}/")