-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
136 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,131 @@ | ||
{ | ||
"participant_id":{ | ||
"Description":"A participant ID" | ||
"Description":"A participant ID", | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:ParticipantID", | ||
"Label":"Subject Unique Identifier" | ||
}, | ||
"Identifies":"participant" | ||
} | ||
}, | ||
"session_id":{ | ||
"Description":"A session ID" | ||
}, | ||
"pheno_age":{ | ||
"Description":"Age of the participant" | ||
"Description":"Age of the participant", | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:Age", | ||
"Label":"Age" | ||
}, | ||
"Transformation":{ | ||
"TermURL":"nb:FromEuro", | ||
"Label":"european decimal value" | ||
}, | ||
"MissingValues":[ | ||
"NA" | ||
] | ||
} | ||
}, | ||
"pheno_sex":{ | ||
"Description":"Sex variable", | ||
"Levels":{ | ||
"M":"Male", | ||
"F":"Female" | ||
}, | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:Sex", | ||
"Label":"Sex" | ||
}, | ||
"Levels":{ | ||
"M":{ | ||
"TermURL":"snomed:248153007", | ||
"Label":"Male" | ||
}, | ||
"F":{ | ||
"TermURL":"snomed:248152002", | ||
"Label":"Female" | ||
} | ||
}, | ||
"MissingValues":[ | ||
"missing" | ||
] | ||
} | ||
}, | ||
"pheno_group":{ | ||
"Description":"Group variable", | ||
"Levels":{ | ||
"PAT":"Patient", | ||
"CTRL":"Control subject" | ||
}, | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:Diagnosis", | ||
"Label":"Diagnosis" | ||
}, | ||
"Levels":{ | ||
"PAT":{ | ||
"TermURL":"snomed:406506008", | ||
"Label":"Attention deficit hyperactivity disorder" | ||
}, | ||
"CTRL":{ | ||
"TermURL":"ncit:C94342", | ||
"Label":"Healthy Control" | ||
} | ||
}, | ||
"MissingValues":[ | ||
"NA" | ||
] | ||
} | ||
}, | ||
"tool1_item1":{ | ||
"Description":"item 1 scores for tool1" | ||
"Description":"item 1 scores for tool1", | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:Assessment", | ||
"Label":"Assessment tool" | ||
}, | ||
"IsPartOf":{ | ||
"TermURL":"cogatlas:trm_57964b8a66aed", | ||
"Label":"Montreal Cognitive Assessment" | ||
}, | ||
"MissingValues":[ | ||
"missing" | ||
] | ||
} | ||
}, | ||
"tool1_item2":{ | ||
"Description":"item 2 scores for tool1" | ||
"Description":"item 2 scores for tool1", | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:Assessment", | ||
"Label":"Assessment tool" | ||
}, | ||
"IsPartOf":{ | ||
"TermURL":"cogatlas:trm_57964b8a66aed", | ||
"Label":"Montreal Cognitive Assessment" | ||
}, | ||
"MissingValues":[ | ||
"missing" | ||
] | ||
} | ||
}, | ||
"tool2_item1":{ | ||
"Description":"item 1 scores for tool2" | ||
"Description":"item 1 scores for tool2", | ||
"Annotations":{ | ||
"IsAbout":{ | ||
"TermURL":"nb:Assessment", | ||
"Label":"Assessment tool" | ||
}, | ||
"IsPartOf":{ | ||
"TermURL":"cogatlas:tsk_4a57abb949ece", | ||
"Label":"Unified Parkinson's Disease Rating Scale" | ||
}, | ||
"MissingValues":[ | ||
"not completed" | ||
] | ||
} | ||
} | ||
} |
131 changes: 0 additions & 131 deletions
131
cypress/fixtures/examples/good/example_synthetic_expected_output.json
This file was deleted.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
cypress/fixtures/examples/good/example_synthetic_participants.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"participant_id":{ | ||
"Description":"A participant ID" | ||
}, | ||
"session_id":{ | ||
"Description":"A session ID" | ||
}, | ||
"pheno_age":{ | ||
"Description":"Age of the participant" | ||
}, | ||
"pheno_sex":{ | ||
"Description":"Sex variable", | ||
"Levels":{ | ||
"M":"Male", | ||
"F":"Female" | ||
} | ||
}, | ||
"pheno_group":{ | ||
"Description":"Group variable", | ||
"Levels":{ | ||
"PAT":"Patient", | ||
"CTRL":"Control subject" | ||
} | ||
}, | ||
"tool1_item1":{ | ||
"Description":"item 1 scores for tool1" | ||
}, | ||
"tool1_item2":{ | ||
"Description":"item 2 scores for tool1" | ||
}, | ||
"tool2_item1":{ | ||
"Description":"item 1 scores for tool2" | ||
} | ||
} |