parser.add_argument('--gwas-info',required=True,help="Path to the file describing the format of the individual GWASs files")
parser.add_argument('--gwas-filename',required=True,help="Name of the raw GWAS file to standardize")
parser.add_argument('--gwas-info',required=True,help="Path to the file describing the format of the individual GWASs files with correct header")
#parser.add_argument('--gwas-filename', required=True, help= "Name of the raw GWAS file to standardize")
parser.add_argument('--ref-path',required=True,help="reference panel location (used to determine which snp to impute)")
parser.add_argument('--gwas-folder',required=True,help="Path to the folder containing the GWASs summ stat files, must end by '/'")
parser.add_argument('--input-folder',required=True,help="Path to the folder containing the Raw GWASs summary statistic files, must end by '/'")
parser.add_argument('--diagnostic-folder',required=True,help="Path to the reporting information on the PreProcessing such as the SNPs sample size distribution")
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")
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)