Entering edit mode
3 months ago
nareshmvr
▴
10
I am new to GWAS imputation methods. I am struggling to understand the error while running prephasing step using eagle. Please help me to sort this issue.
My input file dataset is plink generated vcf files containing all chromosoems. Here is command I used from protocols.io () https://www.protocols.io/run/genotype-imputation-workflow-v3-0-xbgfijw?step=9
DATASET=DATASET_chr
# Run phasing for each chromosome
for CHR in {1..22}; do
# Run phasing for each chromosome separately
eagle \
--vcf ${DATASET}_for_phasing.vcf.gz \
--chrom ${chrname} \
--geneticMapFile eagle_map_step_1.2.2/eagle_chr${CHR}_b38.map \
--numThreads=8 \
--Kpbwt=20000 \
--outPrefix ${DATASET}_for_imputation_chr${CHR}
done
Are you sure that is the correct option set for
eagle
?Eagle manual seems to say
Like I mentioned I am following the protocol steps in the link provided. I have seen this manual stating vcfTarget and vcfRef options. Tried as following still same error repeats.
for CHR in {1..23}; do
done