| 1 | = Odin input file format |
| 2 | |
| 3 | Tags: [[Odin]] [[OpenClinica]] |
| 4 | |
| 5 | == Overview |
| 6 | |
| 7 | A CSV file used by [[Odin]] to create a [[CDISC]] file that can be imported into [[OpenCLinica]] |
| 8 | |
| 9 | == Mandatory Columns |
| 10 | |
| 11 | The first six columns are mandatory and describe the study subject. |
| 12 | |
| 13 | 1. {{{SubjectId}}}: The main subject identifier. Cannot be blank. |
| 14 | 2. {{{SecondaryId}}}: Best practice is not to use. Can be blank. |
| 15 | 3. {{{EnrollmentDate}}}: (See Date Format below). If blank it will use today's date. |
| 16 | 4. {{{PersonId}}}: Another ID. Can be blank if study is not set to use it. |
| 17 | 5. {{{Gender}}}: M or F. Can be blank if study is not set to use it. |
| 18 | 6. {{{DOB}}}: (See Date Format below). Can be blank if study is not set to use it. |
| 19 | |
| 20 | == Other Columns |
| 21 | |
| 22 | The remaining columns define the specific study data. |
| 23 | |
| 24 | - The column headers must be unique |
| 25 | - Values must not contain a double hash {{{##}}}. |
| 26 | - Values must not contain a double colon {{{::}}} unless to represent repeating data. |
| 27 | |
| 28 | == Date Format |
| 29 | |
| 30 | Date in Odin input files must be in the format {{{YYYY-MM-DD}}}. |
| 31 | |
| 32 | [[BackLinks]] |