Skip to content

Commit

Permalink
relax the string length constraint on the trait_desc argument
Browse files Browse the repository at this point in the history
  • Loading branch information
gmauro committed Dec 11, 2024
1 parent 843f498 commit fe6d7de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gwasstudio/mongo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class DataProfile(Metadata):

project = StringField(max_length=500, required=True)
data_id = StringField(max_length=200, unique_with="project", required=True)
trait_desc = StringField(max_length=500)
trait_desc = StringField()
total_samples = IntField()
total_cases = IntField()
population = EnumField(Ancestry)
Expand Down

0 comments on commit fe6d7de

Please sign in to comment.