parser.add_argument('--output-folder',required=True,help="Location of main ouput folder for preprocessed GWAS files (splitted by chromosome)")
parser.add_argument('--output-folder-1-file',required=False,help="optional location to store the preprocessing in one tabular file with one chromosome columns (useful to compute LDSC correlation for instance)")
parser.add_argument('--percent-sample-size',required=False,help="the proportion (between 0 and 1) of the 90th percentile of the sample size used to filter the SNPs",default=0.7)
parser.add_argument('--percent-sample-size',required=False,help="the proportion (between 0 and 1) of the 90th percentile of the sample size used to filter the SNPs",default=0.75)
parser.add_argument('--minimum-MAF',required=False,help="Filter the reference panel by minimum allele frequency",default='0.01')
parser.add_argument('--mask-MHC',required=False,help="Whether the MHC region should be masked or not. default is False",default='False')