pgx-main from prod added

This commit is contained in:
2025-08-18 13:09:30 +02:00
parent 75c821b975
commit ce66f54509
918 changed files with 834526 additions and 0 deletions

12
pgx-main/run_stellar.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
export NXF_DEFAULT_DSL=1
while read g; do
echo "Run StellarPGx for all samples and gene: ${g^^}"
nextflow run main.nf -profile standard --build hg38 --gene $g
echo 'done. Parsing results...'
for f in results/$g/alleles/* ; do python3 stellar_parser.py $f; done
done < genes.txt
#rm -r results/*