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;



Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com