Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
jkvis committed Apr 15, 2016
1 parent 7eae276 commit d9b8102
Showing 1 changed file with 1 addition and 37 deletions.
38 changes: 1 addition & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,96 +24,60 @@ var individuals = [
IndividualId: 'm100',
Familyid: 'test',
Gender: 'f',
Mother: '.',
Father: '.',
DZTwin: '.',
MZTwin: '.',
DOB: '.',
Affected: 'a'
}, {
IndividualId: 'm101',
Familyid: 'test',
Gender: 'm',
Mother: '.',
Father: '.',
DZTwin: '.',
MZTwin: '.',
DOB: '.',
Affected: 'b'
}, {
IndividualId: 'm102',
Familyid: 'test',
Gender: 'f',
Mother: '.',
Father: '.',
DZTwin: '.',
MZTwin: '.',
DOB: '.',
Affected: 'c'
}, {
IndividualId: 'm103',
Familyid: 'test',
Gender: '',
Mother: 'm100',
Father: 'm101',
DZTwin: '.',
MZTwin: 'test',
DOB: '.',
Affected: 'a'
}, {
IndividualId: 'm104',
Familyid: 'test',
Gender: 'f',
Mother: 'm102',
Father: 'm101',
DZTwin: '.',
MZTwin: '.',
DOB: '.',
Affected: 'b'
}, {
IndividualId: 'm105',
Familyid: 'test',
Gender: '',
Mother: 'm100',
Father: 'm101',
DZTwin: '.',
MZTwin: 'test',
DOB: '.',
Affected: 'c'
}, {
IndividualId: 'm106',
Familyid: 'test',
Gender: 'm',
Mother: '.',
Father: '.',
DZTwin: '.',
MZTwin: '.',
DOB: '.',
Affected: ''
}, {
IndividualId: 'm107',
Familyid: 'test',
Gender: '',
Mother: 'm104',
Father: 'm106',
DZTwin: 'rest',
MZTwin: '',
DOB: '',
Affected: 'a'
}, {
IndividualId: 'm108',
Familyid: 'test',
Gender: '',
Mother: 'm104',
Father: 'm106',
DZTwin: 'rest',
MZTwin: '',
DOB: '.',
Affected: 'a'
}
];

var svg = Madeline.draw(individuals);
var svg = Madeline.draw(individuals, ['IndividualId', 'DOB']);
```


Expand Down

0 comments on commit d9b8102

Please sign in to comment.