pg-main from prod server added

This commit is contained in:
2025-08-18 12:03:55 +02:00
parent add456f0e7
commit f66cd01b21
956 changed files with 934400 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}/")