Current definition of bioinfovalues is the following one:
class BioinfoAnalysisValue(models.Model):
value = models.CharField(max_length=400, null=True, blank=True)
Therefore, values with more than 400 characters will fail, which is happening right now for instances of vcf_filename with multiple files, reaching 1000 characters.
One easy solution would be to change this type of field to model.TextField as it does not have a limited length, but it might impact performance.
Current definition of bioinfovalues is the following one:
Therefore, values with more than 400 characters will fail, which is happening right now for instances of
vcf_filenamewith multiple files, reaching 1000 characters.One easy solution would be to change this type of field to
model.TextFieldas it does not have a limited length, but it might impact performance.