airr-community / ogrdb

Website and associated database for managing submissions of inferred alleles
Other
8 stars 1 forks source link

In genotype details, fractions are converted to integers #1

Closed williamdlees closed 5 years ago

williamdlees commented 5 years ago

From Mats Ohlin:

  1. Would it be possible to add two decimals to the "Unmutated Freq" And "allelic ratio" columns of the Genotype tab in "View detail"-mode. Currently these values are displayed only as "0" or "1".
williamdlees commented 5 years ago

Numeric type in schema is converted to decimal(10,0) in MySQL. Check also that there isn't any implicit conversion to integer when reading from the CSV file.

williamdlees commented 5 years ago

Fixed