/
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 reset label sequences?
How to reset label sequences?
More like this
How to fix the global search results?
How to fix the global search results?
More like this
Error "Data truncation: Data too long for column"
Error "Data truncation: Data too long for column"
More like this
How to handle Participants with Withdrawn Consent
How to handle Participants with Withdrawn Consent
More like this
De-identification of OpenSpecimen data
De-identification of OpenSpecimen data
More like this
Anonymize Participant
Anonymize Participant
More like this
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com