Creating a genetics dataset

Hi, I’m a beginner at this. Is there documentation on how to create a text-based dataset for use in DCL? Basically, I need to input pedigree data that can be formatted as a csv file with text entries representing relationships and disease status. There are no images. Any help would be appreciated…

You have to create numbered classes for your relastionship and disease status, assuming that relationship is your input and disease status your output:
Example for input:
Mother --> 0
Father --> 1
Uncle --> 2
Sister -->3

Example for output:
disease 1
no disease 0

or:
fatal disease --> 4
heavy disease --> 3
moderate disease --> 2
light disease --> 1
no disease --> 0

put that datalist in a csv-file and use array as input.

Thank you. Just what I needed