You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the sample detail, the field for entering the concentration should be just an input box expressing the unit copies/µl. The user may enter absolute numbers such as 600 or scientific notation such as 75e+6.
When creating a sample, the user may enter any of those 2 formats.
When editing a sample, the system will show the absolute number if it's less than 5 figures. Else the scientific notation will be used.
Concentrations that were saved before these changes: we need to delete the concentration value and exponent, and make sure we store the corresponding absolute number that can be used for correctly displaying as mentioned in item 1.2.
Creating boxes should honor the new way of storing concentrations. Even when we're planning to implement V2 of boxes, let's please implement the concentration changes and adapt other features if necessary. The effort will be harvested in V2.
The concentration is included when downloading the inventory of a box. Make sure we're populating this column with the absolute value of the concentration.
The concentration is one of the blinded fields. Make sure the blinding feature is still working as expected in regards to the blinding and unblinding of the concentration.
Acceptance criteria
I can enter a concentration in the sample detail as 500 and 75e+6 (scientific notation).
I open a sample with a concentration greater than 99,999 and the absolute number is shown.
I open a sample with a concentration lower than 100,000 and it's shown in the scientific notation.
I create an LOD box and the concentrations are shown (within the sample detail) as described in 3 and 4.
Same as 5 for Variants.
Same as 5 for Challenge.
I can download the inventory of a box and the Concentration column is populated with the absolute number.
If I blind a box, and transfer it the recipient can't see the concentration the sample detail and in the inventory.
If I don't blind a box and transfer it, the recipient sees the concentration in the sample detail and in the inventory.
The text was updated successfully, but these errors were encountered:
Given that the units are copies/ml (not ul cc @diegoliberman) the units will be integer numbers, the only thing is that they could be entered in scientific notation. We're measuring here copies of the virus per milliliter of the sample, you will have only integers (maybe long integers) since you don't put fractions of copies of the viruses.
If the entered number is a decimal, IMO we should just take the integer part.
copies/µl
. The user may enter absolute numbers such as600
or scientific notation such as75e+6
.Acceptance criteria
500
and75e+6
(scientific notation).The text was updated successfully, but these errors were encountered: