Skip to content

Commit

Permalink
Fix for input type
Browse files Browse the repository at this point in the history
  • Loading branch information
francois-a committed Jul 17, 2023
1 parent 888cd70 commit 69972fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorqtl/tensorqtl.py
Expand Up @@ -40,7 +40,7 @@ def main():
parser.add_argument('--chunk_size', default=None, help="For cis-QTL mapping, load genotypes into CPU memory in chunks of chunk_size variants, or by chromosome if chunk_size is 'chr'.")
parser.add_argument('--disable_beta_approx', action='store_true', help='Disable Beta-distribution approximation of empirical p-values (not recommended).')
parser.add_argument('--warn_monomorphic', action='store_true', help='Warn if monomorphic variants are found.')
parser.add_argument('--max_effects', default=10, help='Maximum number of non-zero effects in the SuSiE regression model.')
parser.add_argument('--max_effects', type=int, default=10, help='Maximum number of non-zero effects in the SuSiE regression model.')
parser.add_argument('--fdr', default=0.05, type=np.float64, help='FDR for cis-QTLs')
parser.add_argument('--qvalue_lambda', default=None, type=np.float64, help='lambda parameter for pi0est in qvalue.')
parser.add_argument('--seed', default=None, type=int, help='Seed for permutations.')
Expand Down

0 comments on commit 69972fa

Please sign in to comment.