-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathehrDataValidationReport.html
More file actions
37 lines (32 loc) · 1.11 KB
/
ehrDataValidationReport.html
File metadata and controls
37 lines (32 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div id="incorrect-gender"></div>
<div id="incorrect-species"></div>
<div id="incorrect-ids"></div>
<div id="incorrect-age"></div>
<script type="text/javascript">
Ext4.onReady(function (){
new LABKEY.QueryWebPart({
renderTo: 'incorrect-gender',
title: 'Parents having incorect gender',
schemaName: 'study',
queryName: 'parentsIncorrectGender',
})
new LABKEY.QueryWebPart({
renderTo: 'incorrect-species',
title: 'Parents having different species than offspring',
schemaName: 'study',
queryName: 'parentsDifferentSpecies',
})
new LABKEY.QueryWebPart({
renderTo: 'incorrect-ids',
title: 'Parents that are listed as both dam and sire',
schemaName: 'study',
queryName: 'animalIdsAsDamAndSire',
})
new LABKEY.QueryWebPart({
renderTo: 'incorrect-age',
title: 'Dam/Sire younger than offspring',
schemaName: 'study',
queryName: 'parentsYoungerThanOffspring',
})
});
</script>