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
New to using the LOINC package but currently have an issue checking the validity of the codes with the following static methods. Trying to run a Query, received an LoincHpoValidationError relating to a code used. So I utilized the Utility module static method for data checking. Using first the is_loinc_id it was valid:
# check if any of these values are valid
from loinchpo import Utility
val_chck = Utility.is_loinc_id('5778-6')
# is this even a valid code
print(val_chck)
then I checked to validated both and got the following output of None, if both codes are valid could further explanation or documentation be provided as well as the static method for parse_outcome utilization is not provided but it does format the outcomes correctly, its unclear if that's its only usage
# okay, lets check together
check_all = Utility.check_all('5778-6','neg')
print(check_all)
The text was updated successfully, but these errors were encountered:
New to using the LOINC package but currently have an issue checking the validity of the codes with the following static methods. Trying to run a Query, received an LoincHpoValidationError relating to a code used. So I utilized the Utility module static method for data checking. Using first the is_loinc_id it was valid:
then checked the outcome with is_outcome:
then I checked to validated both and got the following output of None, if both codes are valid could further explanation or documentation be provided as well as the static method for parse_outcome utilization is not provided but it does format the outcomes correctly, its unclear if that's its only usage
The text was updated successfully, but these errors were encountered: