You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not an expert but I think Monopogen.py has an error that results in the incorrect concatenation of the --imputation_panel argument with the filename. Line 96:
Thank you for your interest in our package! The code is correct when you input the directory of the imputation reference with the "/" sign, but your way would also work.
Below is the sample code provided in the README section: python ${path}/src/Monopogen.py germline \ -a ${path}/apps -t 1 -r region.lst \ -p ../example/ \ -g ../example/chr20_2Mb.hg38.fa -s all -o out
In this code, the imputation panel is specified using the -p flag.
I'm not an expert but I think Monopogen.py has an error that results in the incorrect concatenation of the --imputation_panel argument with the filename. Line 96:
imputation_vcf = args.imputation_panel + "CCDG_14151_B01_GRM_WGS_2020-08-05_"
should be:
imputation_vcf = args.imputation_panel + "/CCDG_14151_B01_GRM_WGS_2020-08-05_"
right?
Adding the / made it run without error
The text was updated successfully, but these errors were encountered: