Hello - I am attempting to load a data where the pval is a log10 format and getting error an error message.
"pheweb.utils.PheWebError: failed on field 'pval' attempting to convert value '1.00752' to type <class 'float'> with constraints {'aliases': ['PVALUE', 'P', 'P.VALUE'], 'required': True, 'type': <class 'float'>, 'nullable': True, 'range': [0, 1], 'sigfigs': 2, 'tooltip_lztemplate': {'condition': False, 'template': '{{#if pvalue|is_numeric}}P-value: <strong>{{pvalue|scinotation}}</strong><br>{{/if}}\n{{#if pval|is_numeric}}P-value: <strong>{{pval|scinotation}}</strong><br>{{/if}}'}, 'display': 'P-value', 'from_assoc_files': True} in '/app001/data/008.tsv.gz' on line with values ['1', '783125', 'A', 'G', '0.035415', '85589', '0.128243', '0.0775708', '1.00752'] given colnames ['chrom', 'pos', 'ref', 'alt', 'maf', 'n', 'beta', 'se', 'logp'] and field mapping {'chrom': 0, 'pos': 1, 'ref': 2, 'alt': 3, 'maf': 4, 'beta': 6, 'sebeta': 7, 'pval': 8}"
My config.py I have set the options t indicate the value are in log10 notation.
"pval_is_neglog10 = True
field_aliases = {'LOGP': 'pval'} field_aliases = {'LOGP': 'pval'}"