/
How to fix 'Genotype is invalid' issue?
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com
How to fix 'Genotype is invalid' issue?
In older versions of OpenSpecimen, there was a field 'Genotype' under Participant. This was removed in recent versions as it was not used by anyone. But in some instances where OpenSpecimen has been upgraded from older version, users get error 'Genotype is invalid' when updating older participants.
To fix this, you can upgrade to v4.3 (OPSMN-4093).
Another option is to blank out values in this column in DB by running below SQL statements:
alter table catissue_participant add genotype_bk varchar2(50);
update catissue_participant set genotype_bk = genotype;
update catissue_participant set genotype = null;
, multiple selections available,
Related content
How to resolve permissible-values.xml changeset failed.
How to resolve permissible-values.xml changeset failed.
More like this
Bulk edit/delete participants via UI
Bulk edit/delete participants via UI
More like this
How to temporarily turn off auto-generated labels?
How to temporarily turn off auto-generated labels?
More like this
Anonymize Participant
Anonymize Participant
More like this
De-identification of OpenSpecimen data
De-identification of OpenSpecimen data
More like this
How to solve "Error creating bean with name 'importSpeForms' defined in ServletContext resource"?
How to solve "Error creating bean with name 'importSpeForms' defined in ServletContext resource"?
More like this
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com