From 9b22e280e06b79b0437d88a46a2afcd4f71f3713 Mon Sep 17 00:00:00 2001 From: BrendaHijmans <42644481+BrendaHijmans@users.noreply.github.com> Date: Sun, 20 Oct 2024 13:18:13 +0200 Subject: [PATCH] feat(catalogue): model update to 5.2 (#4345) * add internal identifiers table * add Internal identifiers ontology file and adapt ext identifiers * add Resources.exclusion criteria and .other exclusion criteria * add Subpopulations.exclusion criteria .other exclusion criteria * rename Inclusion Exclusion Criteria table * edit NetworksStaging profile --- apps/nuxt3-ssr/README.md | 6 +- .../components/SubpopulationDisplay.vue | 33 +- apps/nuxt3-ssr/gql/subpopulation.js | 11 +- apps/nuxt3-ssr/interfaces/catalogue.ts | 31 +- .../[resourceType]/[resource]/index.vue | 11 + .../subpopulations/[subpopulation].vue | 33 +- .../molgenis/emx2/io/ImportProfileTask.java | 5 + .../molgenis/emx2/datamodels/TestLoaders.java | 4 +- backend/molgenis-emx2-typescript/build.gradle | 1 + backend/molgenis-emx2-typescript/catalogue.ts | 1076 +++++++++++++++++ .../datacatalogue/Internal identifiers.csv | 3 + .../applications/datacatalogue/Resources.csv | 212 ++-- .../datacatalogue/Subpopulations.csv | 150 +-- .../Subpopulations.csv | 10 +- data/_models/shared/Collection events.csv | 18 +- data/_models/shared/Internal identifiers.csv | 6 + data/_models/shared/Resources.csv | 13 +- data/_models/shared/Subpopulations.csv | 23 +- data/_models/shared/Variables.csv | 2 +- data/_models/shared/Version.csv | 2 +- .../_ontologies/External identifier types.csv | 2 - ...a.csv => Inclusion Exclusion Criteria.csv} | 0 .../_ontologies/Internal identifier types.csv | 3 + docs/molgenis/dev_basics.md | 2 +- 24 files changed, 1432 insertions(+), 225 deletions(-) create mode 100644 backend/molgenis-emx2-typescript/catalogue.ts create mode 100644 data/_demodata/applications/datacatalogue/Internal identifiers.csv create mode 100644 data/_models/shared/Internal identifiers.csv rename data/_ontologies/{Inclusion criteria.csv => Inclusion Exclusion Criteria.csv} (100%) create mode 100644 data/_ontologies/Internal identifier types.csv diff --git a/apps/nuxt3-ssr/README.md b/apps/nuxt3-ssr/README.md index 2f9e235eb5..ed7336583d 100644 --- a/apps/nuxt3-ssr/README.md +++ b/apps/nuxt3-ssr/README.md @@ -78,4 +78,8 @@ Runtime config options can be set via query param to test/debug options: - logo: ```logo=[logo-file-name-without-extension]``` - feature flag cohorts only: ```cohort-only=true``` // defaults to false -for example ```.../catalogue-demo/ssr-catalogue?cohort-only=true&theme=umcg&logo=UMCGkort.woordbeeld``` \ No newline at end of file +for example ```.../catalogue-demo/ssr-catalogue?cohort-only=true&theme=umcg&logo=UMCGkort.woordbeeld``` + +### generate types + +gradle generateTypes --args='catalogue apps/nuxt3-ssr/interfaces/catalogue.ts' \ No newline at end of file diff --git a/apps/nuxt3-ssr/components/SubpopulationDisplay.vue b/apps/nuxt3-ssr/components/SubpopulationDisplay.vue index eb8b5ddecb..abe4f8d10f 100644 --- a/apps/nuxt3-ssr/components/SubpopulationDisplay.vue +++ b/apps/nuxt3-ssr/components/SubpopulationDisplay.vue @@ -106,9 +106,40 @@ if (subpopulation?.countries) { } if (subpopulation?.inclusionCriteria) { + items.push({ + label: "Inclusion criteria", + content: renderList( + subpopulation.inclusionCriteria.sort( + (a, b) => (b.order ?? 0) - (a.order ?? 0) + ), + toName + ), + }); +} + +if (subpopulation?.otherInclusionCriteria) { items.push({ label: "Other inclusion criteria", - content: subpopulation.inclusionCriteria, + content: subpopulation.otherInclusionCriteria, + }); +} + +if (subpopulation?.exclusionCriteria) { + items.push({ + label: "Exclusion criteria", + content: renderList( + subpopulation.exclusionCriteria.sort( + (a, b) => (b.order ?? 0) - (a.order ?? 0) + ), + toName + ), + }); +} + +if (subpopulation?.otherExclusionCriteria) { + items.push({ + label: "Other exclusion criteria", + content: subpopulation.otherExclusionCriteria, }); } diff --git a/apps/nuxt3-ssr/gql/subpopulation.js b/apps/nuxt3-ssr/gql/subpopulation.js index 55b6ddfbc8..d3ea92c25f 100644 --- a/apps/nuxt3-ssr/gql/subpopulation.js +++ b/apps/nuxt3-ssr/gql/subpopulation.js @@ -41,7 +41,16 @@ export default gql` name order } - inclusionCriteria + inclusionCriteria { + name + order + } + otherInclusionCriteria + exclusionCriteria { + name + order + } + otherExclusionCriteria comorbidity { name code diff --git a/apps/nuxt3-ssr/interfaces/catalogue.ts b/apps/nuxt3-ssr/interfaces/catalogue.ts index 9be601b21d..c58361fe45 100644 --- a/apps/nuxt3-ssr/interfaces/catalogue.ts +++ b/apps/nuxt3-ssr/interfaces/catalogue.ts @@ -382,16 +382,16 @@ export interface IICDOTopologies { children?: IICDOTopologies[]; } -export interface IInclusionCriteria { +export interface IInclusionExclusionCriteria { order?: number; name: string; label?: string; - parent?: IInclusionCriteria; + parent?: IInclusionExclusionCriteria; codesystem?: string; code?: string; ontologyTermURI?: string; definition?: string; - children?: IInclusionCriteria[]; + children?: IInclusionExclusionCriteria[]; } export interface IInformedConsentRequired { @@ -418,6 +418,25 @@ export interface IInformedConsentTypes { children?: IInformedConsentTypes[]; } +export interface IInternalIdentifierTypes { + order?: number; + name: string; + label?: string; + parent?: IInternalIdentifierTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IInternalIdentifierTypes[]; +} + +export interface IInternalIdentifiers { + resource: IResources; + identifier: string; + internalIdentifierType?: IOntologyNode; + internalIdentifierTypeOther?: string; +} + export interface IKeywords { order?: number; name: string; @@ -667,7 +686,8 @@ export interface IResources { networkType?: IOntologyNode[]; website?: string; description?: string; - keywords?: string; + keywords?: string[]; + internalIdentifiers?: IInternalIdentifiers[]; externalIdentifiers?: IExternalIdentifiers[]; startYear?: number; endYear?: number; @@ -698,6 +718,8 @@ export interface IResources { populationAgeGroups?: IOntologyNode[]; inclusionCriteria?: IOntologyNode[]; otherInclusionCriteria?: string; + exclusionCriteria?: IOntologyNode[]; + otherExclusionCriteria?: string; populationEntry?: IOntologyNode[]; populationEntryOther?: string; populationExit?: IOntologyNode[]; @@ -948,6 +970,7 @@ export interface ISubpopulations { countries?: IOntologyNode[]; regions?: IOntologyNode[]; inclusionCriteria?: string; + exclusionCriteria?: string; } export interface ITitles { diff --git a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/index.vue b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/index.vue index 157cfee2cd..cba99b2cde 100644 --- a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/index.vue +++ b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/index.vue @@ -87,6 +87,8 @@ const query = gql` populationOncologyMorphology ${moduleToString(ontologyFragment)} inclusionCriteria ${moduleToString(ontologyFragment)} otherInclusionCriteria + exclusionCriteria ${moduleToString(ontologyFragment)} + otherExclusionCriteria publications(orderby: {title:ASC}) { doi title @@ -403,6 +405,15 @@ const population: IDefinitionListItem[] = [ label: "Other inclusion criteria", content: resource.value.otherInclusionCriteria, }, + { + label: "Exclusion criteria", + type: "ONTOLOGY", + content: resource.value.exclusionCriteria, + }, + { + label: "Other exclusion criteria", + content: resource.value.otherExclusionCriteria, + }, ]; if (mainMedicalConditions.value && mainMedicalConditions.value.length > 0) { diff --git a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/subpopulations/[subpopulation].vue b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/subpopulations/[subpopulation].vue index bc7452ed9b..d84bc958fe 100644 --- a/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/subpopulations/[subpopulation].vue +++ b/apps/nuxt3-ssr/pages/[schema]/ssr-catalogue/[catalogue]/[resourceType]/[resource]/subpopulations/[subpopulation].vue @@ -101,9 +101,40 @@ if (subpopulation?.countries) { } if (subpopulation?.inclusionCriteria) { + items.push({ + label: "Inclusion criteria", + content: renderList( + subpopulation.inclusionCriteria.sort( + (a, b) => (b.order ?? 0) - (a.order ?? 0) + ), + toName + ), + }); +} + +if (subpopulation?.otherInclusionCriteria) { items.push({ label: "Other inclusion criteria", - content: subpopulation.inclusionCriteria, + content: subpopulation.otherInclusionCriteria, + }); +} + +if (subpopulation?.exclusionCriteria) { + items.push({ + label: "Exclusion criteria", + content: renderList( + subpopulation.exclusionCriteria.sort( + (a, b) => (b.order ?? 0) - (a.order ?? 0) + ), + toName + ), + }); +} + +if (subpopulation?.otherExclusionCriteria) { + items.push({ + label: "Other exclusion criteria", + content: subpopulation.otherExclusionCriteria, }); } diff --git a/backend/molgenis-emx2-datamodels/src/main/java/org/molgenis/emx2/io/ImportProfileTask.java b/backend/molgenis-emx2-datamodels/src/main/java/org/molgenis/emx2/io/ImportProfileTask.java index 4667136c27..09e709dbbc 100644 --- a/backend/molgenis-emx2-datamodels/src/main/java/org/molgenis/emx2/io/ImportProfileTask.java +++ b/backend/molgenis-emx2-datamodels/src/main/java/org/molgenis/emx2/io/ImportProfileTask.java @@ -32,16 +32,21 @@ public ImportProfileTask(Schema schema, String configLocation, boolean includeDe @Override public void run() { this.start(); + Task commitTask = new Task(); try { schema.tx( db -> { Schema s = db.getSchema(schema.getName()); load(s); + this.addSubTask(commitTask); + commitTask.setDescription("Committing"); }); } catch (Exception e) { + commitTask.completeWithError("Commit failed: " + e.getMessage()); this.completeWithError(e.getMessage()); throw (e); } + commitTask.complete(); this.complete(); } diff --git a/backend/molgenis-emx2-datamodels/src/test/java/org/molgenis/emx2/datamodels/TestLoaders.java b/backend/molgenis-emx2-datamodels/src/test/java/org/molgenis/emx2/datamodels/TestLoaders.java index b26488e55b..02c7837667 100644 --- a/backend/molgenis-emx2-datamodels/src/test/java/org/molgenis/emx2/datamodels/TestLoaders.java +++ b/backend/molgenis-emx2-datamodels/src/test/java/org/molgenis/emx2/datamodels/TestLoaders.java @@ -71,14 +71,14 @@ public void test01FAIRDataHubLoader() { void test06DataCatalogueLoader() { Schema dataCatalogue = database.createSchema(DATA_CATALOGUE); DataModels.Profile.DATA_CATALOGUE.getImportTask(dataCatalogue, true).run(); - assertEquals(22, dataCatalogue.getTableNames().size()); + assertEquals(23, dataCatalogue.getTableNames().size()); } @Test public void test07DataCatalogueCohortStagingLoader() { Schema cohortStaging = database.createSchema(COHORT_STAGING); DataModels.Profile.DATA_CATALOGUE_COHORT_STAGING.getImportTask(cohortStaging, true).run(); - assertEquals(17, cohortStaging.getTableNames().size()); + assertEquals(18, cohortStaging.getTableNames().size()); } @Disabled diff --git a/backend/molgenis-emx2-typescript/build.gradle b/backend/molgenis-emx2-typescript/build.gradle index 1b9aa714e4..75eb753af3 100644 --- a/backend/molgenis-emx2-typescript/build.gradle +++ b/backend/molgenis-emx2-typescript/build.gradle @@ -8,5 +8,6 @@ dependencies { task generateTypes(type: JavaExec) { group = 'application' classpath = sourceSets.main.runtimeClasspath + workingDir = rootProject.projectDir main = 'org.molgenis.emx2.typescript.AToolToGenerateTypeScriptTypes' } \ No newline at end of file diff --git a/backend/molgenis-emx2-typescript/catalogue.ts b/backend/molgenis-emx2-typescript/catalogue.ts new file mode 100644 index 0000000000..b3755ae559 --- /dev/null +++ b/backend/molgenis-emx2-typescript/catalogue.ts @@ -0,0 +1,1076 @@ +// Generated (on: 2024-10-14T16:57:23.273338) from Generator.java for schema: catalogue + +export interface IFile { + id?: string; + size?: number; + extension?: string; + url?: string; +} + +export interface ITreeNode { + name: string; + children?: ITreeNode[]; + parent?: { + name: string; + }; +} + +export interface IOntologyNode extends ITreeNode { + code?: string; + definition?: string; + ontologyTermURI?: string; + order?: number; +} + +export interface IAgeGroups { + order?: number; + name: string; + label?: string; + parent?: IAgeGroups; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IAgeGroups[]; +} + +export interface IAreasOfInformationCohorts { + order?: number; + name: string; + label?: string; + parent?: IAreasOfInformationCohorts; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IAreasOfInformationCohorts[]; +} + +export interface IAreasOfInformationDs { + order?: number; + name: string; + label?: string; + parent?: IAreasOfInformationDs; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IAreasOfInformationDs[]; +} + +export interface IBiospecimens { + order?: number; + name: string; + label?: string; + parent?: IBiospecimens; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IBiospecimens[]; +} + +export interface ICatalogueTypes { + order?: number; + name: string; + label?: string; + parent?: ICatalogueTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ICatalogueTypes[]; +} + +export interface ICatalogues { + name: string; + network: IResources; + type: IOntologyNode; + description: string; + publisher?: string; +} + +export interface IClinicalStudyTypes { + order?: number; + name: string; + label?: string; + parent?: IClinicalStudyTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IClinicalStudyTypes[]; +} + +export interface ICohortCollectionTypes { + order?: number; + name: string; + label?: string; + parent?: ICohortCollectionTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ICohortCollectionTypes[]; +} + +export interface ICohortDesigns { + order?: number; + name: string; + label?: string; + parent?: ICohortDesigns; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ICohortDesigns[]; +} + +export interface ICohortStudyTypes { + order?: number; + name: string; + label?: string; + parent?: ICohortStudyTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ICohortStudyTypes[]; +} + +export interface ICollectionEvents { + resource: IResources; + name: string; + description?: string; + subpopulations?: ISubpopulations[]; + startDate?: string; + endDate?: string; + ageGroups?: IOntologyNode[]; + numberOfParticipants?: number; + areasOfInformation?: IOntologyNode[]; + dataCategories?: IOntologyNode[]; + sampleCategories?: IOntologyNode[]; + standardizedTools?: IOntologyNode[]; + standardizedToolsOther?: string; + coreVariables?: string[]; +} + +export interface IContacts { + resource: IResources; + role?: IOntologyNode[]; + roleDescription?: string; + firstName: string; + lastName: string; + displayName: string; + prefix?: string; + initials?: string; + title?: IOntologyNode; + organisation?: IOrganisations; + email?: string; + orcid?: string; + homepage?: string; + photo?: IFile; + expertise?: string; +} + +export interface IContributionTypes { + order?: number; + name: string; + label?: string; + parent?: IContributionTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IContributionTypes[]; +} + +export interface ICountries { + order?: number; + name: string; + label?: string; + parent?: ICountries; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ICountries[]; +} + +export interface IDataAccessConditions { + order?: number; + name: string; + label?: string; + parent?: IDataAccessConditions; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDataAccessConditions[]; +} + +export interface IDataCategories { + order?: number; + name: string; + label?: string; + parent?: IDataCategories; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDataCategories[]; +} + +export interface IDataUseConditions { + order?: number; + name: string; + label?: string; + parent?: IDataUseConditions; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDataUseConditions[]; +} + +export interface IDatasetMappings { + source: IResources; + sourceDataset: IDatasets; + target: IResources; + targetDataset: IDatasets; + order?: number; + description?: string; + syntax?: string; +} + +export interface IDatasetTypes { + order?: number; + name: string; + label?: string; + parent?: IDatasetTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDatasetTypes[]; +} + +export interface IDatasets { + resource: IResources; + name: string; + label?: string; + datasetType?: IOntologyNode[]; + unitOfObservation?: IOntologyNode; + keywords?: IOntologyNode[]; + description?: string; + numberOfRows?: number; + mappedTo?: IDatasetMappings[]; + mappedFrom?: IDatasetMappings[]; + sinceVersion?: string; + untilVersion?: string; +} + +export interface IDatasourceTypes { + order?: number; + name: string; + label?: string; + parent?: IDatasourceTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDatasourceTypes[]; +} + +export interface IDiseases { + order?: number; + name: string; + label?: string; + parent?: IDiseases; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDiseases[]; +} + +export interface IDocumentTypes { + order?: number; + name: string; + label?: string; + parent?: IDocumentTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IDocumentTypes[]; +} + +export interface IDocumentation { + resource: IResources; + name: string; + type?: IOntologyNode; + description?: string; + url?: string; + file?: IFile; +} + +export interface IExternalIdentifierTypes { + order?: number; + name: string; + label?: string; + parent?: IExternalIdentifierTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IExternalIdentifierTypes[]; +} + +export interface IExternalIdentifiers { + resource: IResources; + identifier: string; + externalIdentifierType?: IOntologyNode; + externalIdentifierTypeOther?: string; +} + +export interface IFormats { + order?: number; + name: string; + label?: string; + parent?: IFormats; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IFormats[]; +} + +export interface IFundingTypes { + order?: number; + name: string; + label?: string; + parent?: IFundingTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IFundingTypes[]; +} + +export interface IICDOMorphologies { + order?: number; + name: string; + label?: string; + parent?: IICDOMorphologies; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IICDOMorphologies[]; +} + +export interface IICDOTopologies { + order?: number; + name: string; + label?: string; + parent?: IICDOTopologies; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IICDOTopologies[]; +} + +export interface IInclusionCriteria { + order?: number; + name: string; + label?: string; + parent?: IInclusionCriteria; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IInclusionCriteria[]; +} + +export interface IInformedConsentRequired { + order?: number; + name: string; + label?: string; + parent?: IInformedConsentRequired; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IInformedConsentRequired[]; +} + +export interface IInformedConsentTypes { + order?: number; + name: string; + label?: string; + parent?: IInformedConsentTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IInformedConsentTypes[]; +} + +export interface IInternalIdentifierTypes { + order?: number; + name: string; + label?: string; + parent?: IInternalIdentifierTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IInternalIdentifierTypes[]; +} + +export interface IInternalIdentifiers { + resource: IResources; + identifier: string; + internalIdentifierType?: IOntologyNode; + internalIdentifierTypeOther?: string; +} + +export interface IKeywords { + order?: number; + name: string; + label?: string; + parent?: IKeywords; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IKeywords[]; +} + +export interface ILanguages { + order?: number; + name: string; + label?: string; + parent?: ILanguages; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ILanguages[]; +} + +export interface ILinkageStrategies { + order?: number; + name: string; + label?: string; + parent?: ILinkageStrategies; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ILinkageStrategies[]; +} + +export interface ILinkages { + resource: IResources; + linkedResource: IResources; + linkageStrategy?: IOntologyNode; + linkageVariable?: string; + linkageVariableUnique?: boolean; + linkageCompleteness?: string; + preLinked?: boolean; +} + +export interface IMappingStatus { + order?: number; + name: string; + label?: string; + parent?: IMappingStatus; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IMappingStatus[]; +} + +export interface IMedDRA { + order?: number; + name: string; + label?: string; + parent?: IMedDRA; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IMedDRA[]; +} + +export interface INetworkTypes { + order?: number; + name: string; + label?: string; + parent?: INetworkTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: INetworkTypes[]; +} + +export interface IObservationTargets { + order?: number; + name: string; + label?: string; + parent?: IObservationTargets; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IObservationTargets[]; +} + +export interface IOrganisationRoles { + order?: number; + name: string; + label?: string; + parent?: IOrganisationRoles; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IOrganisationRoles[]; +} + +export interface IOrganisations { + resource: IResources; + id: string; + pid?: string; + name: string; + acronym?: string; + logo?: IFile; + country?: IOntologyNode[]; + website?: string; + role?: IOntologyNode[]; + isLeadOrganisation?: boolean; +} + +export interface IPopulationEntry { + order?: number; + name: string; + label?: string; + parent?: IPopulationEntry; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IPopulationEntry[]; +} + +export interface IPopulationExit { + order?: number; + name: string; + label?: string; + parent?: IPopulationExit; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IPopulationExit[]; +} + +export interface IPopulationOfInterest { + order?: number; + name: string; + label?: string; + parent?: IPopulationOfInterest; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IPopulationOfInterest[]; +} + +export interface IPublications { + resource: IResources; + doi: string; + title: string; + isDesignPublication?: boolean; + reference?: string; +} + +export interface IRefreshPeriods { + order?: number; + name: string; + label?: string; + parent?: IRefreshPeriods; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IRefreshPeriods[]; +} + +export interface IRegions { + order?: number; + name: string; + label?: string; + parent?: IRegions; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IRegions[]; +} + +export interface IReleaseTypes { + order?: number; + name: string; + label?: string; + parent?: IReleaseTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IReleaseTypes[]; +} + +export interface IResourceCounts { + resource: IResources; + ageGroup: IOntologyNode; + populationSize?: number; + activeSize?: number; + noIndividualsWithSamples?: number; + meanObservationYears?: number; + meanYearsActive?: number; + medianAge?: number; + proportionFemale?: number; +} + +export interface IResourceMappings { + source: IResources; + sourceVersion?: string; + target: IResources; + targetVersion?: string; + cdmsOther?: string; + mappingStatus?: IOntologyNode; + eTLFrequency?: number; + eTLSpecificationUrl?: string; + eTLSpecificationDocument?: IFile; +} + +export interface IResourceTypes { + order?: number; + name: string; + label?: string; + parent?: IResourceTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IResourceTypes[]; +} + +export interface IResources { + id: string; + pid?: string; + name: string; + localName?: string; + acronym?: string; + type?: IOntologyNode[]; + typeOther?: string; + cohortType?: IOntologyNode[]; + clinicalStudyType?: IOntologyNode[]; + rWDType?: IOntologyNode[]; + networkType?: IOntologyNode[]; + website?: string; + description?: string; + keywords?: string[]; + internalIdentifiers?: IInternalIdentifiers[]; + externalIdentifiers?: IExternalIdentifiers[]; + startYear?: number; + endYear?: number; + timeSpanDescription?: string; + contactEmail?: string; + logo?: IFile; + status?: IOntologyNode; + license?: string; + design?: IOntologyNode; + designDescription?: string; + designSchematic?: IFile; + dataCollectionType?: IOntologyNode[]; + dataCollectionDescription?: string; + reasonSustained?: string; + recordTrigger?: string; + unitOfObservation?: string; + subpopulations?: ISubpopulations[]; + collectionEvents?: ICollectionEvents[]; + resources?: IResources[]; + partOfResources?: IResources[]; + numberOfParticipants?: number; + numberOfParticipantsWithSamples?: number; + underlyingPopulation?: string; + populationOfInterest?: IOntologyNode[]; + populationOfInterestOther?: string; + countries?: IOntologyNode[]; + regions?: IOntologyNode[]; + populationAgeGroups?: IOntologyNode[]; + inclusionCriteria?: IOntologyNode[]; + otherInclusionCriteria?: string; + populationEntry?: IOntologyNode[]; + populationEntryOther?: string; + populationExit?: IOntologyNode[]; + populationExitOther?: string; + populationDisease?: IOntologyNode[]; + populationOncologyTopology?: IOntologyNode[]; + populationOncologyMorphology?: IOntologyNode[]; + populationCoverage?: string; + populationNotCovered?: string; + counts?: IResourceCounts[]; + peopleInvolved?: IContacts[]; + organisationsInvolved?: IOrganisations[]; + networksInvolved?: IResources[]; + datasets?: IDatasets[]; + samplesets?: ISamplesets[]; + areasOfInformation?: IOntologyNode[]; + areasOfInformationRwd?: IOntologyNode[]; + qualityOfLifeOther?: string; + causeOfDeathCodeOther?: string; + indicationVocabularyOther?: string; + geneticDataVocabularyOther?: string; + careSettingOther?: string; + medicinalProductVocabularyOther?: string; + prescriptionsVocabularyOther?: string; + dispensingsVocabularyOther?: string; + proceduresVocabularyOther?: string; + biomarkerDataVocabularyOther?: string; + diagnosisMedicalEventVocabularyOther?: string; + dataDictionaryAvailable?: boolean; + diseaseDetails?: IOntologyNode[]; + biospecimenCollected?: IOntologyNode[]; + languages?: IOntologyNode[]; + multipleEntries?: boolean; + hasIdentifier?: boolean; + identifierDescription?: string; + prelinked?: boolean; + linkageOptions?: string; + linkagePossibility?: boolean; + linkedResources?: ILinkages[]; + informedConsentType?: IOntologyNode; + informedConsentRequired?: IOntologyNode; + informedConsentOther?: string; + dataAccessConditions?: IOntologyNode[]; + dataUseConditions?: IOntologyNode[]; + dataAccessConditionsDescription?: string; + dataAccessFee?: boolean; + accessIdentifiableData?: string; + accessIdentifiableDataRoute?: string; + accessSubjectDetails?: boolean; + accessSubjectDetailsRoute?: string; + accessThirdParty?: boolean; + accessThirdPartyConditions?: string; + accessNonEU?: boolean; + accessNonEUConditions?: string; + biospecimenAccess?: boolean; + biospecimenAccessConditions?: string; + governanceDetails?: string; + approvalForPublication?: boolean; + releaseType?: IOntologyNode; + releaseDescription?: string; + numberOfRecords?: number; + releaseFrequency?: number; + refreshTime?: number; + lagTime?: number; + refreshPeriod?: IOntologyNode[]; + dateLastRefresh?: string; + preservation?: boolean; + preservationDuration?: number; + standardOperatingProcedures?: boolean; + qualification?: boolean; + qualificationsDescription?: string; + auditPossible?: boolean; + completeness?: string; + completenessOverTime?: string; + completenessResults?: string; + qualityDescription?: string; + qualityOverTime?: string; + accessForValidation?: boolean; + qualityValidationFrequency?: string; + qualityValidationMethods?: string; + correctionMethods?: string; + qualityValidationResults?: string; + mappingsToCommonDataModels?: IDatasetMappings[]; + commonDataModelsOther?: string; + eTLStandardVocabularies?: IOntologyNode[]; + eTLStandardVocabulariesOther?: string; + publications?: IPublications[]; + fundingSources?: IOntologyNode[]; + fundingScheme?: IOntologyNode[]; + fundingStatement?: string; + citationRequirements?: string; + acknowledgements?: string; + documentation?: IDocumentation[]; + supplementaryInformation?: string; + collectionStartPlanned?: string; + collectionStartActual?: string; + analysisStartPlanned?: string; + analysisStartActual?: string; + dataSources?: IResources[]; + medicalConditionsStudied?: IOntologyNode[]; + dataExtractionDate?: string; + analysisPlan?: string; + objectives?: string; + results?: string; +} + +export interface IReusedVariables { + resource: IResources; + variable: IVariables; +} + +export interface ISampleCategories { + order?: number; + name: string; + label?: string; + parent?: ISampleCategories; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ISampleCategories[]; +} + +export interface ISampleTypes { + order?: number; + name: string; + label?: string; + parent?: ISampleTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ISampleTypes[]; +} + +export interface ISamplesets { + resource: IResources; + name: string; + sampleTypes?: IOntologyNode[]; +} + +export interface IStandardizedTools { + order?: number; + name: string; + label?: string; + parent?: IStandardizedTools; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IStandardizedTools[]; +} + +export interface IStatusDetails { + order?: number; + name: string; + label?: string; + parent?: IStatusDetails; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IStatusDetails[]; +} + +export interface IStudyFunding { + order?: number; + name: string; + label?: string; + parent?: IStudyFunding; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IStudyFunding[]; +} + +export interface IStudyStatus { + order?: number; + name: string; + label?: string; + parent?: IStudyStatus; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IStudyStatus[]; +} + +export interface ISubmissionTypes { + order?: number; + name: string; + label?: string; + parent?: ISubmissionTypes; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ISubmissionTypes[]; +} + +export interface ISubmissions { + submissionDate: string; + submitterName: string; + resources: IResources[]; + submitterEmail: string; + submitterOrganisation?: string; + submitterRole?: IOntologyNode; + submitterRoleOther?: string; + submissionType?: IOntologyNode; + submissionDescription?: string; + responsiblePersons?: string; + acceptanceDate?: string; +} + +export interface ISubmitterRoles { + order?: number; + name: string; + label?: string; + parent?: ISubmitterRoles; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ISubmitterRoles[]; +} + +export interface ISubpopulationCounts { + resource: IResources; + subpopulation: ISubpopulations; + ageGroup: IOntologyNode; + nTotal?: number; + nFemale?: number; + nMale?: number; +} + +export interface ISubpopulations { + resource: IResources; + name: string; + description?: string; + numberOfParticipants?: number; + counts?: ISubpopulationCounts[]; + inclusionStart?: number; + inclusionEnd?: number; + ageGroups?: IOntologyNode[]; + mainMedicalCondition?: IOntologyNode[]; + comorbidity?: IOntologyNode[]; + countries?: IOntologyNode[]; + regions?: IOntologyNode[]; + inclusionCriteria?: string; +} + +export interface ITitles { + order?: number; + name: string; + label?: string; + parent?: ITitles; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: ITitles[]; +} + +export interface IUnits { + order?: number; + name: string; + label?: string; + parent?: IUnits; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IUnits[]; +} + +export interface IVariableMappings { + source: IResources; + sourceDataset: IDatasets; + sourceVariables?: IVariables[]; + sourceVariablesOtherDatasets?: IVariables[]; + target: IResources; + targetDataset: IDatasets; + targetVariable: IVariables; + repeats: string; + match: IOntologyNode; + description?: string; + syntax?: string; + comments?: string; +} + +export interface IVariableRepeatUnits { + order?: number; + name: string; + label?: string; + parent?: IVariableRepeatUnits; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IVariableRepeatUnits[]; +} + +export interface IVariableValues { + resource: IResources; + dataset: IDatasets; + variable: IVariables; + value: string; + label: string; + order?: number; + isMissing?: boolean; + ontologyTermURI?: string; + sinceVersion?: string; + untilVersion?: string; +} + +export interface IVariables { + resource: IResources; + dataset: IDatasets; + name: string; + useExternalDefinition?: IVariables; + label?: string; + description?: string; + collectionEvent?: ICollectionEvents[]; + format?: IOntologyNode; + unit?: IOntologyNode; + sinceVersion?: string; + untilVersion?: string; + reusedInResources?: IReusedVariables[]; + repeatUnit?: IOntologyNode; + repeatMin?: number; + repeatMax?: number; + exampleValues?: string[]; + permittedValues?: IVariableValues[]; + keywords?: IOntologyNode[]; + vocabularies?: IOntologyNode[]; + notes?: string; + mappings?: IVariableMappings[]; +} + +export interface IVersion { +} + +export interface IVocabularies { + order?: number; + name: string; + label?: string; + parent?: IVocabularies; + codesystem?: string; + code?: string; + ontologyTermURI?: string; + definition?: string; + children?: IVocabularies[]; +} + + diff --git a/data/_demodata/applications/datacatalogue/Internal identifiers.csv b/data/_demodata/applications/datacatalogue/Internal identifiers.csv new file mode 100644 index 0000000000..a2b17d9617 --- /dev/null +++ b/data/_demodata/applications/datacatalogue/Internal identifiers.csv @@ -0,0 +1,3 @@ +resource,identifier,internal identifier type,internal identifier type other +testCohort1,test external identifier for cohort 1,UMCG PaNaMaID, +testCohort2,test external identifier for cohort 2,UMCG register Utopia,test internal identifier other type \ No newline at end of file diff --git a/data/_demodata/applications/datacatalogue/Resources.csv b/data/_demodata/applications/datacatalogue/Resources.csv index 26c322e0ac..595c0a29f8 100644 --- a/data/_demodata/applications/datacatalogue/Resources.csv +++ b/data/_demodata/applications/datacatalogue/Resources.csv @@ -1,23 +1,30 @@ -id,pid,acronym,name,local name,keywords,website,lead organisation,additional organisations,description,contact email,cohort type,cohort type other,design,design description,design schematic,design schematic_filename,data collection type,logo,logo_filename,number of participants,number of participants with samples,countries,regions,population age groups,inclusion criteria,other inclusion criteria,start year,end year,population disease,population oncology topology,population oncology morphology,prelinked,linkage possibility description,release type,release description,linkage options,data holder,data access conditions,data use conditions,data access conditions description,data access fee,design paper,publications,informed consent type,funding statement,acknowledgements,supplementary information,type,network type,features,data sources,databanks,cohorts,models,networks,resources,study type other,status,funding scheme,networks other,study requirements,regulatory procedure number,date of signing funding contract planned,date of signing funding contract actual,collection start planned,collection start actual,analysis start planned,analysis start actual,interim report planned,interim report actual,final report planned,final report actual,data sources other,databanks other,study features,data characterisation details,data source types,data source types other,quality marks,number of data sources,medicines studied INN codes,medicines studied ATC codes,medicines studies brands,medicines studied other,medical conditions studied,medical conditions studied other,data extraction date,study setting,analysis plan,population description,objectives,interventions,comparators,outcomes,study design,results,topic,topic other,trial regulatory scope,clinical study type,study design classification other,study scope,study scope other,population of interest,population of interest other,RWD type,RWD type other,data collection description,date established,start data collection,end data collection,time span description,underlying population,population entry,population entry other,population exit,population exit other,population coverage,population not covered,areas of information rwd,quality of life other,cause of death code other,indication vocabulary other,genetic data vocabulary other,care setting other,medicinal product vocabulary other,prescriptions vocabulary other,dispensings vocabulary other,procedures vocabulary other,biomarker data vocabulary other,diagnosis medical event vocabulary other,data dictionary available,disease details,disease details other,biospecimen collected,languages,record trigger,unit of observation,multiple entries,has identifier,identifier description,linkage description,linkage possibility,reason sustained,informed consent,informed consent other,access identifiable data,access identifiable data route,access subject details,access subject details route,audit possible,access third party,access third party conditions,access non EU,access non EU conditions,standard operating procedures,biospecimen access,biospecimen access conditions,governance details,approval for publication,refresh,lag time,preservation,preservation duration,refresh period,date last refresh,qualification,qualifications description,number of records,completeness,completeness over time,completeness results,quality description,quality over time,access for validation,quality validation frequency,quality validation methods,correction methods,quality validation results,cdms other,ETL standard vocabularies,ETL standard vocabularies other,funding sources,release frequency -CONSTANCES,,CONSTANCES,Cohorte des Consultants des Centres d’Examens,,,https://www.constances.fr/,INSERM,,,,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,220000,,France,,Adult (18+ years),,,2012,2019,,,,,,,,,,,,,,https://doi.org/10.1007/s10654-015-0096-4,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -G21,,,Generation 21,Geraç,,http://www.geracao21.com/pt/,ISPUP,,,,Birth cohort,,Longitudinal,,,,,,,8647,,Portugal,,"Newborn (0-1 months),Child (2-12 years),Adolescent (13-17 years)",,,2005,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -mCRC-VHIO,,mCRC-VHIO,metastatic Colorrectar Cancer - VHIO,,,,VHIO,,,xvillalobos@vhio.net,Clinical cohort,,Cross-sectional,,,,Retrospective,,,116,,,,,,,,,,,,,,,,,,disease specific research,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -FORCE-NEN,,FORCE-NEN,InFrastructure fOr Rare Cancers in the nEtherlands – Neuroendocrine Neo,,,https://www.ikdoemeemetforce.nl/,"UMCU,UMCG","MUMC,NKI,AmsterdamUMC (VUmc),EMC,Maxima MC",Multicenter Clinical Biobank with primary object to determine the value of ctDNA in the diagnosis and treatment of Neuroendocrine Neoplasms.,force-nen@umcutrecht.nl,"Clinical cohort",,Longitudinal,,,,"Retrospective,Prospective",,,,,Netherlands (the),,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)",,,2022,,,,,,,Closed dataset,,,UMCU,disease specific research,"collaboration required,ethics approval required,project specific restriction",,,,,,FORCE is made possible by a grant from the KWF Dutch Cancer Society (13363),,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -FORCE-NEN collections,,,FORCE-NEN collections,,,https://www.ikdoemeemetforce.nl/,"UMCU,UMCG","MUMC,NKI,AmsterdamUMC (VUmc),EMC,Maxima MC",,,,,Longitudinal,,,,Retrospective,,,,,Netherlands (the),,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)",,,2022,,,,,,,Closed dataset,,,UMCU,disease specific research,"collaboration required,ethics approval required,project specific restriction",,,,,,FORCE is made possible by a grant from the KWF Dutch Cancer Society (13363),,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -CON,CON,CON,Consumer cohort,CON,"consumer, supermarket, data epidemiology, cohort",https://mineindkob.dk/,SSI,,"This project aims to investigate how what we buy, and thus our diet, affects health, by analyzing purchase patterns and health information over time.","frtm@ssi.dk, mineindkob@ssi.dk","Population cohort",,Longitudinal,,,,"Retrospective,Prospective",,,407,407,Denmark,,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (80+ years)",,,2021,,,,,,,Other release type,on request,"GS1 data, FRIDA data",,,,,,,,,Through the project HEAP: https://heap-exposome.eu/ grant agreement No. 874662,,Full consent can be found at https://www.mineindkob.dk/da-DK/registration#1,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -CSC,CSC,CSC,Cervical screening cohort,,"cancer, CIN, LSIL, HSIL, cytology, pathology, invitations, HPV, cervical cancer",https://nkcx.se,KI,,Cervical screening cohort comprising all women resident in Sweden aged 23-64 that are screened for human papillomavirus or cervical abnormalities.,joakim.dillner@ki.se; info@nkcx.se,"Population cohort",,Longitudinal,,,,"Retrospective,Prospective",,,500000,500000,Sweden,,"Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65-79 years)",,,1968,,,,,,,Annually,new data from past year is imported annualy in April online,"NKCx, biobank, laboratory experiments (sequencing)",,,,"For research purposes data can be provided pseudonomized, providing there is i) an approved ethical application, ii) an approved application for data (which is to be submitted to the registry)",,,,,SKR (Swedish Municipalities and Regions) funds partly for NKCx.,"It is required to name the data source for instance in the materials and methods section as ""Swedish National Cervical Screening Registry (NKCx)""",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HPV,,HPV,HPV vaccination cohort,,"Community randomized, HPV vaccination, gender-neutral",https://projects.tuni.fi/hpv-rokotiitus/,TUNI,,"Community-randomized HPV vaccination trial cohort: gender-neutral HPV16/18 vaccination arm, girls-only HPV16/18 vaccination and hepatitis B-virus (HBV) vaccination of boys arm, and arm gender-neutral HBV vaccination arm. Total of boys (31,117) and girls (30,139), 9482 (60,7 %) were HPV vaccinated and 6131 (39,3 %) were HBV vaccinated at the age of 14 and followed up at he age of 18, 22, 25 and 28.","tiina.eriksson@tuni.fi, ville.pimenoff@ki.se, karolina.louvanto@tuni.fi, matti.lehtinen@tuni.fi",,,Longitudinal,,,,Prospective,,,61256,15613,Finland,,"Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years)",,,2007,,,,,,,Other release type,not determined; new data still created,,,,,,,,,,"A total of more than 40 million euros of grants by Prof. Matti Lehtinen from Finnish and Nordic Cancer Cociety, Finnish Academy, EU FP5 prgram, FP6 program, FP7 program, Merck&Co, GlaxoSmithKline Biologicals, IMI, Swedish Cancerfonden, Jane and aatos Erkko Foundation, EU Horizon and Finnish Cancer Society.",Original articles and data owners need to be cited.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -LSC,LSC,LSC,Lifestyle cohort,TirolGESUND,intermittent fasting; smoking cessation; DNA methylation; prevention;,https://www.uibk.ac.at/,UIBK,,"Data from 6-month intervention trial looking at the effects of intermittent fasting or smoking cessation in healthy women aged 30-60 with risk factors for cancer or other diseases (elevanted BMI, heavy smoking).",martin.widschwendter@uibk.ac.at,"Population cohort",,Longitudinal,,,,Prospective,,,156,156,Austria,,"Adult (25-44 years),Middle-aged (45-64 years)",,,2021,,,,,,,Other release type,"Data will be embargoed until initial publication of the study results. Personally identifiable data will be under restricted access, controlled by a data access committee. A data access form will need to be filled in providing data use. Use of data is for scientific purposes only and a cooperation agreement has to be signed for use.",,,,,"Data will be embargoed until initial publication of the study results. Personally identifiable data will be under restricted access, controlled by a data access committee. A data access form will need to be filled in providing data use. Use of data is for scientific purposes only and a cooperation agreement has to be signed for use.",,,,,"This study received funding by the European Union’s Horizon 2020 Research and Innovation Program, HEAP under grant agreement No. 874662 and the Land","Any users must acknowledge Prof. Martin Widschwendter, Dr Chiara Herzog, and the EUTOPS Institute and cite the relevant key publications out of the project.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -BAMSE,,,BAMSE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HBCS,,HBCS,Helsinki Birth Cohort Study,,,https://thl.fi/en/web/thlfi-en/research-and-expertwork/projects-and-programmes/helsinki-birth-cohort-study-hbcs-idefix,,,,,Birth cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MAT,MAT,MAT,Maternity cohort,MAT,"Biobank, maternity cohort, serum",https://www.ppshp.fi/Tutkimus-ja-opetus/Biopankki/Pages/default.aspx,,,"The Finnish Maternity Cohort (FMC) in Northern Finland Biobank Borealis is a collection of serum samples comprising virtually the entire population of Finnish females, who have been pregnant since 1983. FMC is linkable with population-based health registers including the Finnish Cancer Registry and the Medical Birth Register. Linkage of FMC data and samples with pathological archives of Finnish Biobanks provides an opportunity to expand the scope of research into interaction of biological and genomic factors in association with various diseases. Serial prediagnostic serum samples and comprehensive data accessible over three generations provide possibilities for unique study settings.","hanna.ohman@ppshp.fi, ville.pimenoff@oulu.fi, helja-marja.surcel@oulu.fi",,,Longitudinal,,,,Retrospective,,,950000,950000,Finland,,"Adolescent (13-17 years),Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (80+ years)",,,1983,2017,,,,,,Closed dataset,,FMC is linkable with population-based health registers including the Finnish Cancer Registry and the Medical Birth Register. Linkage of FMC data and samples with pathological archives of Finnish Biobanks provides an opportunity to expand the scope of research into interaction of biological and genomic factors in association with various diseases.,,,,,,https://doi.org/10.1002/cam4.1222,https://doi.org/10.1002/cam4.1222,,European Science Infrastructure Services (https://esis.fi/),European Science Infrastructure Services (https://esis.fi/),European Science Infrastructure Services (https://esis.fi/),Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -WDC,WDC,WDC,Wearable data collection study,WDC,"wearables, exposome, pregnancy, environmental exposure",,,"UOULU,KI,TUNI","Longitudinal cohort of pregnant and non-pregnant women for exposome estimation from blood, saliva, sweat and personal aerosols.","ville.pimenoff@oulu.fi, ville.pimenoff@ki.se, matti.lehtinen@tuni.fi",Population cohort,,Longitudinal,Longitudinal,,,Prospective,,,100,100,Finland,,Adult (25-44 years),,,2022,2022,,,,,,Closed dataset,,,,,,,,https://doi.org/10.1097/EE9.0000000000000182,https://doi.org/10.1097/EE9.0000000000000182,,Horizon 2020 (HEAP),Contributors need to be cited.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -EDEN,,EDEN,Study on the pre and early postnatal determinants of child health and development,,,http://eden.vjf.inserm.fr/en/,INSERM,,"The EDEN study is a French bicentric generalist cohort study (Heude et al. IJE 2016). Pregnant women were invited to participate during their prenatal visit, before the 24th week of amenorrhea, in the obstetrics and gynecology departments of the Poitiers and Nancy university hospitals. Recruitment took place from February 2003 to January 2006. The exclusion criteria were: twin pregnancy, diagnosis of insulin-dependent diabetes, inability to speak and read French, intention to move from the region within three years of inclusion . Among the women invited, 53% agreed to participate (n = 2,002). Detailed information on phenotypes and exposures were collected through questionnaires from pregnancy until 8 years and through clinical examinations of the mother (at 24 weeks of amenorrhoea, at delivery and 5–6 years after delivery) and the child (at birth and 1, 3 and 5–6 years, including cognitive assessments at 3 and 5–6 years). At 5–6 years, 1255 children",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,2002,,,,,,,2003,2006,,,,,,Continuous,,,,health or medical or biomedical research,,"- Submission of the project proposal to the cohort PI (Barbara Heude) +id,pid,acronym,name,local name,keywords,website,lead organisation,additional organisations,description,contact email,cohort type,cohort type other,design,design description,design schematic,design schematic_filename,data collection type,logo,logo_filename,number of participants,number of participants with samples,countries,regions,population age groups,inclusion criteria,other inclusion criteria,exclusion criteria,other exclusion criteria,start year,end year,population disease,population oncology topology,population oncology morphology,prelinked,linkage possibility description,release type,release description,linkage options,data holder,data access conditions,data use conditions,data access conditions description,data access fee,design paper,publications,informed consent type,funding statement,acknowledgements,supplementary information,type,network type,features,data sources,databanks,cohorts,models,networks,resources,study type other,status,funding scheme,networks other,study requirements,regulatory procedure number,date of signing funding contract planned,date of signing funding contract actual,collection start planned,collection start actual,analysis start planned,analysis start actual,interim report planned,interim report actual,final report planned,final report actual,data sources other,databanks other,study features,data characterisation details,data source types,data source types other,quality marks,number of data sources,medicines studied INN codes,medicines studied ATC codes,medicines studies brands,medicines studied other,medical conditions studied,medical conditions studied other,data extraction date,study setting,analysis plan,population description,objectives,interventions,comparators,outcomes,study design,results,topic,topic other,trial regulatory scope,clinical study type,study design classification other,study scope,study scope other,population of interest,population of interest other,RWD type,RWD type other,data collection description,date established,start data collection,end data collection,time span description,underlying population,population entry,population entry other,population exit,population exit other,population coverage,population not covered,areas of information rwd,quality of life other,cause of death code other,indication vocabulary other,genetic data vocabulary other,care setting other,medicinal product vocabulary other,prescriptions vocabulary other,dispensings vocabulary other,procedures vocabulary other,biomarker data vocabulary other,diagnosis medical event vocabulary other,data dictionary available,disease details,disease details other,biospecimen collected,languages,record trigger,unit of observation,multiple entries,has identifier,identifier description,linkage description,linkage possibility,reason sustained,informed consent,informed consent other,access identifiable data,access identifiable data route,access subject details,access subject details route,audit possible,access third party,access third party conditions,access non EU,access non EU conditions,standard operating procedures,biospecimen access,biospecimen access conditions,governance details,approval for publication,refresh,lag time,preservation,preservation duration,refresh period,date last refresh,qualification,qualifications description,number of records,completeness,completeness over time,completeness results,quality description,quality over time,access for validation,quality validation frequency,quality validation methods,correction methods,quality validation results,cdms other,ETL standard vocabularies,ETL standard vocabularies other,funding sources,release frequency +testCohort3,,,testCohort3,,,,,,"testcohort 3 is used for mappings, not to check rich or descriptive metadata",,,,,,,,,,,,,,,,,,,,1960,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +testCohort4,,,testCohort4,,,,,,"testcohort 4 is used for mappings, not to check rich or descriptive metadata",,,,,,,,,,,,,,,,,,,,1960,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +testCohort1,https://pid-for-testcohort1.org,acronym for test cohort 1,Name for test cohort 1,Local name for test cohort 1,"test, cohort1, Molgenis, testing",https://www.molgenis.org,"Test lead organisation 1,test lead organisation 2","Test additional organisation 1,id for test additional organisation 2","This is the Test cohort 1. It has multiple entries where possible. Design paper and publications are random DOIs from the EUCAN project. Yes to data access fee. The population age group is all adult options, so the population age group should be shown as ""Adult 18+ years"". Cohort type has both 'normal' and 'other' fields filled in --> see which is displayed",molgenis-support@umcg.nl,Clinical cohort,Cohort 1 other type,Longitudinal,Description of the design used for cohort 1,,,"Retrospective,Prospective",,,600,200,"Armenia,Bermuda,Réunion","Bradford,Lapland,Gipuzkoa","Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","Clinically relevant exposure inclusion criterion,Clinically relevant lifestyle inclusion criterion,Country of residence inclusion criteria",Other inclusion criteria cohort 1,"Clinically relevant exposure inclusion criterion,Clinically relevant lifestyle inclusion criterion,Country of residence inclusion criteria",other exclusion criteria cohort 1,1950,1967,"E00 Congenital iodine-deficiency syndrome,E00-E07 Disorders of thyroid gland,""E00.0 Congenital iodine-deficiency syndrome, neurological type"",""E00.1 Congenital iodine-deficiency syndrome, myxoedematous type"",""E00.2 Congenital iodine-deficiency syndrome, mixed type"",""E00.9 Congenital iodine-deficiency syndrome, unspecified"",E01 Iodine-deficiency-related thyroid disorders and allied conditions,E01.0 Iodine-deficiency-related thyroid disorders and allied conditions - Iodine-deficiency-related diffuse (endemic) goitre,E01.1 Iodine-deficiency-related thyroid disorders and allied conditions - Iodine-deficiency-related multinodular (endemic) goitre,""E01.2 Iodine-deficiency-related thyroid disorders and allied conditions - Iodine-deficiency-related (endemic) goitre, unspecified"",E01.8 Other iodine-deficiency-related thyroid disorders and allied conditions,E02 Subclinical iodine-deficiency hypothyroidism,E03 Other hypothyroidism,E03.0 Congenital hypothyroidism with diffuse goitre,E03.1 Congenital hypothyroidism without goitre,E03.2 Hypothyroidism due to medicaments and other exogenous substances,E03.3 Postinfectious hypothyroidism,E03.4 Other hypothyroidism - Atrophy of thyroid (acquired),E03.5 Other hypothyroidism - Myxoedema coma,E03.8 Other specified hypothyroidism,""E03.9 Hypothyroidism, unspecified"",E04 Other nontoxic goitre,E04.0 Nontoxic diffuse goitre,E04.1 Nontoxic single thyroid nodule,E04.2 Nontoxic multinodular goitre,E04.8 Other specified nontoxic goitre,""E04.9 Nontoxic goitre, unspecified"",E05 Thyrotoxicosis [hyperthyroidism],E05.0 Thyrotoxicosis with diffuse goitre,E05.1 Thyrotoxicosis with toxic single thyroid nodule,E05.2 Thyrotoxicosis with toxic multinodular goitre,E05.3 Thyrotoxicosis from ectopic thyroid tissue,E05.4 Thyrotoxicosis factitia,E05.5 Thyrotoxicosis [hyperthyroidism] - Thyroid crisis or storm,E05.8 Other thyrotoxicosis,""E05.9 Thyrotoxicosis, unspecified"",E06 Thyroiditis,E06.0 Acute thyroiditis,E06.1 Subacute thyroiditis,E06.2 Chronic thyroiditis with transient thyrotoxicosis,E06.3 Autoimmune thyroiditis,E06.4 Drug-induced thyroiditis,E06.5 Other chronic thyroiditis,""E06.9 Thyroiditis, unspecified"",E07 Other disorders of thyroid,E07.0 Hypersecretion of calcitonin,E07.1 Other disorders of thyroid - Dyshormogenetic goitre,E07.8 Other specified disorders of thyroid,""E07.9 Disorder of thyroid, unspecified"",E10 Type 1 diabetes mellitus,E10-E14 Diabetes mellitus,E10.0 Type 1 diabetes mellitus with coma,E10.1 Type 1 diabetes mellitus with ketoacidosis,E10.2 Type 1 diabetes mellitus with renal complications,E10.3 Type 1 diabetes mellitus with ophthalmic complications,E10.4 Type 1 diabetes mellitus with neurological complications,E10.5 Type 1 diabetes mellitus with peripheral circulatory complications,E10.6 Type 1 diabetes mellitus with other specified complications,E10.7 Type 1 diabetes mellitus with multiple complications,E10.8 Type 1 diabetes mellitus with unspecified complications,E10.9 Type 1 diabetes mellitus without complications,E11 Type 2 diabetes mellitus,E11.0 Type 2 diabetes mellitus with coma,E11.1 Type 2 diabetes mellitus with ketoacidosis,E11.2 Type 2 diabetes mellitus with renal complications,E11.3 Type 2 diabetes mellitus with ophthalmic complications,E11.4 Type 2 diabetes mellitus with neurological complications,E11.5 Type 2 diabetes mellitus with peripheral circulatory complications,E11.6 Type 2 diabetes mellitus with other specified complications,E11.7 Type 2 diabetes mellitus with multiple complications,E11.8 Type 2 diabetes mellitus with unspecified complications,E11.9 Type 2 diabetes mellitus without complications,E12 Malnutrition-related diabetes mellitus,E12.0 Malnutrition-related diabetes mellitus with coma,E12.1 Malnutrition-related diabetes mellitus with ketoacidosis,E12.2 Malnutrition-related diabetes mellitus with renal complications,E12.3 Malnutrition-related diabetes mellitus with ophthalmic complications,E12.4 Malnutrition-related diabetes mellitus with neurological complications,E12.5 Malnutrition-related diabetes mellitus with peripheral circulatory complications,E12.6 Malnutrition-related diabetes mellitus with other specified complications,E12.7 Malnutrition-related diabetes mellitus with multiple complications,E12.8 Malnutrition-related diabetes mellitus with with unspecified complications,E12.9 Malnutrition-related diabetes mellitus without complications,E13 Other specified diabetes mellitus,E13.0 Other specified diabetes mellitus with coma,E13.1 Other specified diabetes mellitus with ketoacidosis,E13.2 Other specified diabetes mellitus with renal complications,E13.3 Other specified diabetes mellitus with ophthalmic complications,E13.4 Other specified diabetes mellitus with neurological complications,E13.5 Other specified diabetes mellitus with peripheral circulatory complications,E13.6 Other specified diabetes mellitus with other specified complications,E13.7 Other specified diabetes mellitus with multiple complications,E13.8 Other specified diabetes mellitus with unspecified complications,E13.9 Other specified diabetes mellitus without complications,E14 Unspecified diabetes mellitus,E14.0 Unspecified diabetes mellitus with coma,E14.1 Unspecified diabetes mellitus with ketoacidosis,E14.2 Unspecified diabetes mellitus with renal complications,E14.3 Unspecified diabetes mellitus with ophthalmic complications,E14.4 Unspecified diabetes mellitus with neurological complications,E14.5 Unspecified diabetes mellitus with peripheral circulatory complications,E14.6 Unspecified diabetes mellitus with other specified complications,E14.7 Unspecified diabetes mellitus with multiple complications,E14.8 Unspecified diabetes mellitus with unspecified complications,E14.9 Unspecified diabetes mellitus without complications,E15 Nondiabetic hypoglycaemic coma,E15-E16 Other disorders of glucose regulation and pancreatic internal secretion,E16 Other disorders of pancreatic internal secretion,E16.0 Other disorders of pancreatic internal secretion - Drug-induced hypoglycaemia without coma,E16.1 Other hypoglycaemia,""E16.2 Other disorders of pancreatic internal secretion - Hypoglycaemia, unspecified"",E16.3 Increased secretion of glucagon,E16.4 Abnormal secretion of gastrin,E16.8 Other specified disorders of pancreatic internal secretion,""E16.9 Disorder of pancreatic internal secretion, unspecified"",E20 Hypoparathyroidism,E20-E35 Disorders of other endocrine glands,E20.0 Idiopathic hypoparathyroidism,E20.1 Pseudohypoparathyroidism,E20.8 Other hypoparathyroidism,""E20.9 Hypoparathyroidism, unspecified"",E21 Hyperparathyroidism and other disorders of parathyroid gland,E21.0 Primary hyperparathyroidism,""E21.1 Secondary hyperparathyroidism, not elsewhere classified"",E21.2 Other hyperparathyroidism,""E21.3 Hyperparathyroidism, unspecified"",E21.4 Other specified disorders of parathyroid gland,""E21.5 Disorder of parathyroid gland, unspecified"",E22 Hyperfunction of pituitary gland,E22.0 Acromegaly and pituitary gigantism,E22.1 Hyperfunction of pituitary gland - Hyperprolactinaemia,E22.2 Syndrome of inappropriate secretion of antidiuretic hormone,E22.8 Other hyperfunction of pituitary gland,""E22.9 Hyperfunction of pituitary gland, unspecified"",E23 Hypofunction and other disorders of pituitary gland,E23.0 Hypofunction and other disorders of pituitary gland - Hypopituitarism,E23.1 Hypofunction and other disorders of pituitary gland - Drug-induced hypopituitarism,E23.2 Hypofunction and other disorders of pituitary gland - Diabetes insipidus,""E23.3 Hypofunction and other disorders of pituitary gland - Hypothalamic dysfunction, not elsewhere classified"",E23.6 Other disorders of pituitary gland,""E23.7 Disorder of pituitary gland, unspecified"",E24 Cushing syndrome,E24.0 Pituitary-dependent Cushing disease,E24.1 Nelson syndrome,E24.2 Drug-induced Cushing syndrome,E24.3 Ectopic ACTH syndrome,E24.4 Alcohol-induced pseudo-Cushing syndrome,E24.8 Other Cushing syndrome,""E24.9 Cushing syndrome, unspecified"",E25 Adrenogenital disorders,E25.0 Congenital adrenogenital disorders associated with enzyme deficiency,E25.8 Other adrenogenital disorders,""E25.9 Adrenogenital disorder, unspecified"",E26 Hyperaldosteronism,E26.0 Primary hyperaldosteronism,E26.1 Secondary hyperaldosteronism,E26.8 Other hyperaldosteronism,""E26.9 Hyperaldosteronism, unspecified"",E27 Other disorders of adrenal gland,E27.0 Other adrenocortical overactivity,E27.1 Other disorders of adrenal gland - Primary adrenocortical insufficiency,E27.2 Other disorders of adrenal gland - Addisonian crisis,E27.3 Other disorders of adrenal gland - Drug-induced adrenocortical insufficiency,E27.4 Other and unspecified adrenocortical insufficiency,E27.5 Other disorders of adrenal gland - Adrenomedullary hyperfunction,E27.8 Other specified disorders of adrenal gland,""E27.9 Disorder of adrenal gland, unspecified"",E28 Ovarian dysfunction,E28.0 Ovarian dysfunction - Estrogen excess,E28.1 Ovarian dysfunction - Androgen excess,E28.2 Polycystic ovarian syndrome,E28.3 Primary ovarian failure,E28.8 Other ovarian dysfunction,""E28.9 Ovarian dysfunction, unspecified"",E29 Testicular dysfunction,E29.0 Testicular hyperfunction,E29.1 Testicular hypofunction,E29.8 Other testicular dysfunction,""E29.9 Testicular dysfunction, unspecified"",""E30 Disorders of puberty, not elsewhere classified"",E30.0 Delayed puberty,E30.1 Precocious puberty,E30.8 Other disorders of puberty,""E30.9 Disorder of puberty, unspecified"",E31 Polyglandular dysfunction,E31.0 Autoimmune polyglandular failure,E31.1 Polyglandular hyperfunction,E31.8 Other polyglandular dysfunction,""E31.9 Polyglandular dysfunction, unspecified"",E32 Diseases of thymus,E32.0 Persistent hyperplasia of thymus,E32.1 Abscess of thymus,E32.8 Other diseases of thymus,""E32.9 Disease of thymus, unspecified"",E34 Other endocrine disorders,E34.0 Other endocrine disorders - Carcinoid syndrome,E34.1 Other hypersecretion of intestinal hormones,""E34.2 Other endocrine disorders - Ectopic hormone secretion, not elsewhere classified"",""E34.3 Other endocrine disorders - Short stature, not elsewhere classified"",E34.4 Other endocrine disorders - Constitutional tall stature,E34.5 Other endocrine disorders - Androgen resistance syndrome,E34.8 Other specified endocrine disorders,""E34.9 Endocrine disorder, unspecified"",E35 Disorders of endocrine glands in diseases classified elsewhere,E35.0 Disorders of thyroid gland in diseases classified elsewhere,E35.1 Disorders of adrenal glands in diseases classified elsewhere,E35.8 Disorders of other endocrine glands in diseases classified elsewhere,E40 Kwashiorkor,E40-E46 Malnutrition,E41 Nutritional marasmus,E42 Marasmic kwashiorkor,E43 Unspecified severe protein-energy malnutrition,E44 Protein-energy malnutrition of moderate and mild degree,E44.0 Moderate protein-energy malnutrition,E44.1 Mild protein-energy malnutrition,E45 Retarded development following protein-energy malnutrition,E46 Unspecified protein-energy malnutrition,E50 Vitamin A deficiency,E50-E64 Other nutritional deficiencies,E50.0 Vitamin A deficiency with conjunctival xerosis,E50.1 Vitamin A deficiency with Bitot spot and conjunctival xerosis,E50.2 Vitamin A deficiency with corneal xerosis,E50.3 Vitamin A deficiency with corneal ulceration and xerosis,E50.4 Vitamin A deficiency with keratomalacia,E50.5 Vitamin A deficiency with night blindness,E50.6 Vitamin A deficiency with xerophthalmic scars of cornea,E50.7 Other ocular manifestations of vitamin A deficiency,E50.8 Other manifestations of vitamin A deficiency,""E50.9 Vitamin A deficiency, unspecified"",E51 Thiamine deficiency,E51.1 Thiamine deficiency - Beriberi,E51.2 Thiamine deficiency - Wernicke encephalopathy,E51.8 Other manifestations of thiamine deficiency,""E51.9 Thiamine deficiency, unspecified"",E52 Niacin deficiency [pellagra],E53 Deficiency of other B group vitamins,E53.0 Riboflavin deficiency,E53.1 Pyridoxine deficiency,E53.8 Deficiency of other specified B group vitamins,""E53.9 Vitamin B deficiency, unspecified"",E54 Ascorbic acid deficiency,E55 Vitamin D deficiency,""E55.0 Vitamin D deficiency - Rickets, active"",""E55.9 Vitamin D deficiency, unspecified"",E56 Other vitamin deficiencies,E56.0 Deficiency of vitamin E,E56.1 Deficiency of vitamin K,E56.8 Deficiency of other vitamins,""E56.9 Vitamin deficiency, unspecified"",E58 Dietary calcium deficiency,E59 Dietary selenium deficiency,E60 Dietary zinc deficiency,E61 Deficiency of other nutrient elements,E61.0 Copper deficiency,E61.1 Iron deficiency,E61.2 Magnesium deficiency,E61.3 Manganese deficiency,E61.4 Chromium deficiency,E61.5 Molybdenum deficiency,E61.6 Vanadium deficiency,E61.7 Deficiency of multiple nutrient elements,E61.8 Deficiency of other specified nutrient elements,""E61.9 Deficiency of nutrient element, unspecified"",E63 Other nutritional deficiencies,E63.0 Other nutritional deficiencies - Essential fatty acid [EFA] deficiency,E63.1 Other nutritional deficiencies - Imbalance of constituents of food intake,E63.8 Other specified nutritional deficiencies,""E63.9 Nutritional deficiency, unspecified"",E64 Sequelae of malnutrition and other nutritional deficiencies,E64.0 Sequelae of protein-energy malnutrition,E64.1 Sequelae of vitamin A deficiency,E64.2 Sequelae of vitamin C deficiency,E64.3 Sequelae of rickets,E64.8 Sequelae of other nutritional deficiencies,E64.9 Sequelae of unspecified nutritional deficiency,E65 Localized adiposity,E65-E68 Obesity and other hyperalimentation,E66 Obesity,E66.0 Obesity due to excess calories,E66.1 Drug-induced obesity,E66.2 Extreme obesity with alveolar hypoventilation,E66.8 Other obesity,""E66.9 Obesity, unspecified"",E67 Other hyperalimentation,E67.0 Other hyperalimentation - Hypervitaminosis A,E67.1 Other hyperalimentation - Hypercarotenaemia,E67.2 Other hyperalimentation - syndrome,E67.3 Other hyperalimentation - Hypervitaminosis D,E67.8 Other specified hyperalimentation,E68 Sequelae of hyperalimentation,E70 Disorders of aromatic amino-acid metabolism,E70-E90 Metabolic disorders,E70.0 Disorders of aromatic amino-acid metabolism - Classical phenylketonuria,E70.1 Disorders of aromatic amino-acid metabolism - Other hyperphenylalaninaemias,E70.2 Disorders of tyrosine metabolism,E70.3 Disorders of aromatic amino-acid metabolism - Albinism,E70.8 Other disorders of aromatic amino-acid metabolism,""E70.9 Disorder of aromatic amino-acid metabolism, unspecified"",E71 Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism,E71.0 Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism - Maple-syrup-urine disease,E71.1 Other disorders of branched-chain amino-acid metabolism,""E71.2 Disorder of branched-chain amino-acid metabolism, unspecified"",E71.3 Disorders of fatty-acid metabolism,E72 Other disorders of amino-acid metabolism,E72.0 Disorders of amino-acid transport,E72.1 Disorders of sulfur-bearing amino-acid metabolism,E72.2 Disorders of urea cycle metabolism,E72.3 Disorders of lysine and hydroxylysine metabolism,E72.4 Disorders of ornithine metabolism,E72.5 Disorders of glycine metabolism,E72.8 Other specified disorders of amino-acid metabolism,""E72.9 Disorder of amino-acid metabolism, unspecified"",E73 Lactose intolerance,E73.0 Lactose intolerance - Congenital lactase deficiency,E73.1 Lactose intolerance - Secondary lactase deficiency,E73.8 Other lactose intolerance,""E73.9 Lactose intolerance, unspecified"",E74 Other disorders of carbohydrate metabolism,E74.0 Other disorders of carbohydrate metabolism - Glycogen storage disease,E74.1 Disorders of fructose metabolism,E74.2 Disorders of galactose metabolism,E74.3 Other disorders of intestinal carbohydrate absorption,E74.4 Disorders of pyruvate metabolism and gluconeogenesis,E74.8 Other specified disorders of carbohydrate metabolism,""E74.9 Disorder of carbohydrate metabolism, unspecified"",E75 Disorders of sphingolipid metabolism and other lipid storage disorders,E75.0 Disorders of sphingolipid metabolism and other lipid storage disorders - gangliosidosis,E75.1 Other gangliosidosis,E75.2 Other sphingolipidosis,""E75.3 Sphingolipidosis, unspecified"",E75.4 Neuronal ceroid lipofuscinosis,E75.5 Other lipid storage disorders,""E75.6 Lipid storage disorder, unspecified"",E76 Disorders of glycosaminoglycan metabolism,""E76.0 Disorders of glycosaminoglycan metabolism - Mucopolysaccharidosis, type I"",""E76.1 Disorders of glycosaminoglycan metabolism - Mucopolysaccharidosis, type II"",E76.2 Disorders of glycosaminoglycan metabolism - Other mucopolysaccharidoses,""E76.3 Disorders of glycosaminoglycan metabolism - Mucopolysaccharidosis, unspecified"",E76.8 Other disorders of glucosaminoglycan metabolism,""E76.9 Disorder of glucosaminoglycan metabolism, unspecified"",E77 Disorders of glycoprotein metabolism,E77.0 Defects in post-translational modification of lysosomal enzymes,E77.1 Defects in glycoprotein degradation,E77.8 Other disorders of glycoprotein metabolism,""E77.9 Disorder of glycoprotein metabolism, unspecified"",E78 Disorders of lipoprotein metabolism and other lipidaemias,E78.0 Disorders of lipoprotein metabolism and other lipidaemias - Pure hypercholesterolaemia,E78.1 Disorders of lipoprotein metabolism and other lipidaemias - Pure hyperglyceridaemia,E78.2 Disorders of lipoprotein metabolism and other lipidaemias - Mixed hyperlipidaemia,E78.3 Disorders of lipoprotein metabolism and other lipidaemias - Hyperchylomicronaemia,E78.4 Other hyperlipidaemia,""E78.5 Disorders of lipoprotein metabolism and other lipidaemias - Hyperlipidaemia, unspecified"",E78.6 Lipoprotein deficiency,E78.8 Other disorders of lipoprotein metabolism,""E78.9 Disorder of lipoprotein metabolism, unspecified"",E79 Disorders of purine and pyrimidine metabolism,E79.0 Hyperuricaemia without signs of inflammatory arthritis and tophaceous disease,E79.1 Disorders of purine and pyrimidine metabolism - Lesch-Nyhan syndrome,E79.8 Other disorders of purine and pyrimidine metabolism,""E79.9 Disorder of purine and pyrimidine metabolism, unspecified"",E80 Disorders of porphyrin and bilirubin metabolism,E80.0 Disorders of porphyrin and bilirubin metabolism - Hereditary erythropoietic porphyria,E80.1 Disorders of porphyrin and bilirubin metabolism - Porphyria cutanea tarda,E80.2 Disorders of porphyrin and bilirubin metabolism - Other porphyria,E80.3 Defects of catalase and peroxidase,E80.4 Disorders of porphyrin and bilirubin metabolism - Gilbert syndrome,E80.5 Disorders of porphyrin and bilirubin metabolism - Crigler-Najjar syndrome,E80.6 Other disorders of bilirubin metabolism,""E80.7 Disorder of bilirubin metabolism, unspecified"",E83 Disorders of mineral metabolism,E83.0 Disorders of copper metabolism,E83.1 Disorders of iron metabolism,E83.2 Disorders of zinc metabolism,E83.3 Disorders of phosphorus metabolism and phosphatases,E83.4 Disorders of magnesium metabolism,E83.5 Disorders of calcium metabolism,E83.8 Other disorders of mineral metabolism,""E83.9 Disorder of mineral metabolism, unspecified"",E84 Cystic fibrosis,E84.0 Cystic fibrosis with pulmonary manifestations,E84.1 Cystic fibrosis with intestinal manifestations,E84.8 Cystic fibrosis with other manifestations,""E84.9 Cystic fibrosis, unspecified"",E85 Amyloidosis,E85.0 Non-neuropathic heredofamilial amyloidosis,E85.1 Neuropathic heredofamilial amyloidosis,""E85.2 Heredofamilial amyloidosis, unspecified"",E85.3 Secondary systemic amyloidosis,E85.4 Organ-limited amyloidosis,E85.8 Other amyloidosis,""E85.9 Amyloidosis, unspecified"",E86 Volume depletion,""E87 Other disorders of fluid, electrolyte and acid-base balance"",E87.0 Hyperosmolality and hypernatraemia,E87.1 Hypo-osmolality and hyponatraemia,""E87.2 Other disorders of fluid, electrolyte and acid-base balance - Acidosis"",""E87.3 Other disorders of fluid, electrolyte and acid-base balance - Alkalosis"",E87.4 Mixed disorder of acid-base balance,""E87.5 Other disorders of fluid, electrolyte and acid-base balance - Hyperkalaemia"",""E87.6 Other disorders of fluid, electrolyte and acid-base balance - Hypokalaemia"",E87.7 Fluid overload,""E87.8 Other disorders of electrolyte and fluid balance, not elsewhere classified"",E88 Other metabolic disorders,""E88.0 Disorders of plasma-protein metabolism, not elsewhere classified"",""E88.1 Other metabolic disorders - Lipodystrophy, not elsewhere classified"",""E88.2 Other metabolic disorders - Lipomatosis, not elsewhere classified"",E88.3 Other metabolic disorders - Tumour lysis syndrome,E88.8 Other specified metabolic disorders,""E88.9 Metabolic disorder, unspecified"",""E89 Postprocedural endocrine and metabolic disorders, not elsewhere classified"",E89.0 Postprocedural hypothyroidism,E89.1 Postprocedural hypoinsulinaemia,E89.2 Postprocedural hypoparathyroidism,E89.3 Postprocedural hypopituitarism,E89.4 Postprocedural ovarian failure,E89.5 Postprocedural testicular hypofunction,E89.6 Postprocedural adrenocortical(-medullary) hypofunction,E89.8 Other postprocedural endocrine and metabolic disorders,""E89.9 Postprocedural endocrine and metabolic disorder, unspecified"",E90 Nutritional and metabolic disorders in diseases classified elsewhere,F00 Dementia in Alzheimer disease,""F00-F09 Organic, including symptomatic, mental disorders"",F00.0 Dementia in Alzheimer disease with early onset,F00.1 Dementia in Alzheimer disease with late onset,""F00.2 Dementia in Alzheimer disease, atypical or mixed type"",""F00.9 Dementia in Alzheimer disease, unspecified"",F01 Vascular dementia,F01.0 Vascular dementia of acute onset,F01.1 Multi-infarct dementia,F01.2 Subcortical vascular dementia,F01.3 Mixed cortical and subcortical vascular dementia,F01.8 Other vascular dementia,""F01.9 Vascular dementia, unspecified"",F02 Dementia in other diseases classified elsewhere,F02.0 Dementia in Pick disease,F02.1 Dementia in Creutzfeldt-Jakob disease,F02.2 Dementia in Huntington disease,F02.3 Dementia in Parkinson disease,F02.4 Dementia in human immunodeficiency virus [HIV] disease,F02.8 Dementia in other specified diseases classified elsewhere,F03 Unspecified dementia,""F04 Organic amnesic syndrome, not induced by alcohol and other psychoactive substances"",""F05 Delirium, not induced by alcohol and other psychoactive substances"",""F05.0 Delirium not superimposed on dementia, so described"",F05.1 Delirium superimposed on dementia,F05.8 Other delirium,""F05.9 Delirium, unspecified"",F06 Other mental disorders due to brain damage and dysfunction and to physical disease,F06.0 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic hallucinosis,F06.1 Organic catatonic disorder,F06.2 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic delusional [schizophrenia-like] disorder,F06.3 Organic mood [affective] disorders,F06.4 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic anxiety disorder,F06.5 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic dissociative disorder,F06.6 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic emotionally labile [asthenic] disorder,F06.7 Other mental disorders due to brain damage and dysfunction and to physical disease - Mild cognitive disorder,F06.8 Other specified mental disorders due to brain damage and dysfunction and to physical disease,F06.9 Unspecified mental disorder due to brain damage and dysfunction and to physical disease,""F07 Personality and behavioural disorders due to brain disease, damage and dysfunction"",F07.0 Organic personality disorder,""F07.1 Personality and behavioural disorders due to brain disease, damage and dysfunction - Postencephalitic syndrome"",""F07.2 Personality and behavioural disorders due to brain disease, damage and dysfunction - Postconcussional syndrome"",""F07.8 Other organic personality and behavioural disorders due to brain disease, damage and dysfunction"",""F07.9 Unspecified organic personality and behavioural disorder due to brain disease, damage and dysfunction"",F09 Unspecified organic or symptomatic mental disorder,F10 Mental and behavioural disorders due to use of alcohol,F10-F19 Mental and behavioural disorders due to psychoactive substance use,F11 Mental and behavioural disorders due to use of opioids,F12 Mental and behavioural disorders due to use of cannabinoids,F13 Mental and behavioural disorders due to use of sedatives or hypnotics,F14 Mental and behavioural disorders due to use of cocaine,""F15 Mental and behavioural disorders due to use of other stimulants, including caffeine"",F16 Mental and behavioural disorders due to use of hallucinogens,F17 Mental and behavioural disorders due to use of tobacco,F18 Mental and behavioural disorders due to use of volatile solvents,F19 Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances,F20 Schizophrenia,""F20-F29 Schizophrenia, schizotypal and delusional disorders"",F20.0 Paranoid schizophrenia,F20.1 Hebephrenic schizophrenia,F20.2 Catatonic schizophrenia,F20.3 Undifferentiated schizophrenia,F20.4 Schizophrenia - Post-schizophrenic depression,F20.5 Residual schizophrenia,F20.6 Simple schizophrenia,F20.8 Other schizophrenia,""F20.9 Schizophrenia, unspecified"",F21 Schizotypal disorder,F22 Persistent delusional disorders,F22.0 Delusional disorder,F22.8 Other persistent delusional disorders,""F22.9 Persistent delusional disorder, unspecified"",F23 Acute and transient psychotic disorders,F23.0 Acute polymorphic psychotic disorder without symptoms of schizophrenia,F23.1 Acute polymorphic psychotic disorder with symptoms of schizophrenia,F23.2 Acute schizophrenia-like psychotic disorder,F23.3 Other acute predominantly delusional psychotic disorders,F23.8 Other acute and transient psychotic disorders,""F23.9 Acute and transient psychotic disorder, unspecified"",F24 Induced delusional disorder,F25 Schizoaffective disorders,""F25.0 Schizoaffective disorder, manic type"",""F25.1 Schizoaffective disorder, depressive type"",""F25.2 Schizoaffective disorder, mixed type"",F25.8 Other schizoaffective disorders,""F25.9 Schizoaffective disorder, unspecified"",F28 Other nonorganic psychotic disorders,F29 Unspecified nonorganic psychosis,F30 Manic episode,F30-F39 Mood [affective] disorders,F30.0 Manic episode - Hypomania,F30.1 Manic episode - Mania without psychotic symptoms,F30.2 Manic episode - Mania with psychotic symptoms,F30.8 Other manic episodes,""F30.9 Manic episode, unspecified"",F31 Bipolar affective disorder,""F31.0 Bipolar affective disorder, current episode hypomanic"",""F31.1 Bipolar affective disorder, current episode manic without psychotic symptoms"",""F31.2 Bipolar affective disorder, current episode manic with psychotic symptoms"",""F31.3 Bipolar affective disorder, current episode mild or moderate depression"",""F31.4 Bipolar affective disorder, current episode severe depression without psychotic symptoms"",""F31.5 Bipolar affective disorder, current episode severe depression with psychotic symptoms"",""F31.6 Bipolar affective disorder, current episode mixed"",""F31.7 Bipolar affective disorder, currently in remission"",F31.8 Other bipolar affective disorders,""F31.9 Bipolar affective disorder, unspecified"",F32 Depressive episode,F32.0 Mild depressive episode,F32.1 Moderate depressive episode,F32.2 Severe depressive episode without psychotic symptoms,F32.3 Severe depressive episode with psychotic symptoms,F32.8 Other depressive episodes,""F32.9 Depressive episode, unspecified"",F33 Recurrent depressive disorder,""F33.0 Recurrent depressive disorder, current episode mild"",""F33.1 Recurrent depressive disorder, current episode moderate"",""F33.2 Recurrent depressive disorder, current episode severe without psychotic symptoms"",""F33.3 Recurrent depressive disorder, current episode severe with psychotic symptoms"",""F33.4 Recurrent depressive disorder, currently in remission"",F33.8 Other recurrent depressive disorders,""F33.9 Recurrent depressive disorder, unspecified"",F34 Persistent mood [affective] disorders,F34.0 Persistent mood [affective] disorders - Cyclothymia,F34.1 Persistent mood [affective] disorders - Dysthymia,F34.8 Other persistent mood [affective] disorders,""F34.9 Persistent mood [affective] disorder, unspecified"",F38 Other mood [affective] disorders,F38.0 Other single mood [affective] disorders,F38.1 Other recurrent mood [affective] disorders,F38.8 Other specified mood [affective] disorders,F39 Unspecified mood [affective] disorder,F40 Phobic anxiety disorders,""F40-F48 Neurotic, stress-related and somatoform disorders"",F40.0 Phobic anxiety disorders - Agoraphobia,F40.1 Phobic anxiety disorders - Social phobias,F40.2 Phobic anxiety disorders - Specific (isolated) phobias,F40.8 Other phobic anxiety disorders,""F40.9 Phobic anxiety disorder, unspecified"",F41 Other anxiety disorders,F41.0 Panic disorder [episodic paroxysmal anxiety],F41.1 Generalized anxiety disorder,F41.2 Mixed anxiety and depressive disorder,F41.3 Other mixed anxiety disorders,F41.8 Other specified anxiety disorders,""F41.9 Anxiety disorder, unspecified"",F42 Obsessive-compulsive disorder,F42.0 Obsessive-compulsive disorder - Predominantly obsessional thoughts or ruminations,F42.1 Obsessive-compulsive disorder - Predominantly compulsive acts [obsessional rituals],F42.2 Obsessive-compulsive disorder - Mixed obsessional thoughts and acts,F42.8 Other obsessive-compulsive disorders,""F42.9 Obsessive-compulsive disorder, unspecified"",""F43 Reaction to severe stress, and adjustment disorders"",F43.0 Acute stress reaction,F43.1 Post-traumatic stress disorder,F43.2 Adjustment disorders,F43.8 Other reactions to severe stress,""F43.9 Reaction to severe stress, unspecified"",F44 Dissociative [conversion] disorders,F44.0 Dissociative amnesia,F44.1 Dissociative fugue,F44.2 Dissociative stupor,F44.3 Trance and possession disorders,F44.4 Dissociative motor disorders,F44.5 Dissociative convulsions,F44.6 Dissociative anaesthesia and sensory loss,F44.7 Mixed dissociative [conversion] disorders,F44.8 Other dissociative [conversion] disorders,""F44.9 Dissociative [conversion] disorder, unspecified"",F45 Somatoform disorders,F45.0 Somatoform disorders - Somatization disorder,F45.1 Undifferentiated somatoform disorder,F45.2 Somatoform disorders - Hypochondriacal disorder,F45.3 Somatoform autonomic dysfunction,F45.4 Persistent somatoform pain disorder,F45.8 Other somatoform disorders,""F45.9 Somatoform disorder, unspecified"",F48 Other neurotic disorders,F48.0 Other neurotic disorders - Neurasthenia,F48.1 Other neurotic disorders - Depersonalization-derealization syndrome,F48.8 Other specified neurotic disorders,""F48.9 Neurotic disorder, unspecified"",F50 Eating disorders,F50-F59 Behavioural syndromes associated with physiological disturbances and physical factors,F50.0 Eating disorders - Anorexia nervosa,F50.1 Eating disorders - Atypical anorexia nervosa,F50.2 Eating disorders - Bulimia nervosa,F50.3 Eating disorders - Atypical bulimia nervosa,F50.4 Overeating associated with other psychological disturbances,F50.5 Eating disorders - Vomiting associated with other psychological disturbances,F50.8 Other eating disorders,""F50.9 Eating disorder, unspecified"",F51 Nonorganic sleep disorders,F51.0 Nonorganic insomnia,F51.1 Nonorganic hypersomnia,F51.2 Nonorganic disorder of the sleep-wake schedule,F51.3 Sleepwalking [somnambulism],F51.4 Sleep terrors [night terrors],F51.5 Nonorganic sleep disorders - Nightmares,F51.8 Other nonorganic sleep disorders,""F51.9 Nonorganic sleep disorder, unspecified"",""F52 Sexual dysfunction, not caused by organic disorder or disease"",F52.0 Lack or loss of sexual desire,F52.1 Sexual aversion and lack of sexual enjoyment,""F52.2 Sexual dysfunction, not caused by organic disorder or disease - Failure of genital response"",F52.3 Orgasmic dysfunction,""F52.4 Sexual dysfunction, not caused by organic disorder or disease - Premature ejaculation"",F52.5 Nonorganic vaginismus,F52.6 Nonorganic dyspareunia,F52.7 Excessive sexual drive,""F52.8 Other sexual dysfunction, not caused by organic disorder or disease"",""F52.9 Unspecified sexual dysfunction, not caused by organic disorder or disease"",""F53 Mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.0 Mild mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.1 Severe mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.8 Other mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.9 Puerperal mental disorder, unspecified"",F54 Psychological and behavioural factors associated with disorders or diseases classified elsewhere,F55 Abuse of non-dependence-producing substances,F59 Unspecified behavioural syndromes associated with physiological disturbances and physical factors,F60 Specific personality disorders,F60-F69 Disorders of adult personality and behaviour,F60.0 Paranoid personality disorder,F60.1 Schizoid personality disorder,F60.2 Dissocial personality disorder,F60.3 Emotionally unstable personality disorder,F60.4 Histrionic personality disorder,F60.5 Anankastic personality disorder,F60.6 Anxious [avoidant] personality disorder,F60.7 Dependent personality disorder,F60.8 Other specific personality disorders,""F60.9 Personality disorder, unspecified"",F61 Mixed and other personality disorders,""F62 Enduring personality changes, not attributable to brain damage and disease"",F62.0 Enduring personality change after catastrophic experience,F62.1 Enduring personality change after psychiatric illness,F62.8 Other enduring personality changes,""F62.9 Enduring personality change, unspecified"",F63 Habit and impulse disorders,F63.0 Habit and impulse disorders - Pathological gambling,F63.1 Habit and impulse disorders - Pathological fire-setting [pyromania],F63.2 Habit and impulse disorders - Pathological stealing [kleptomania],F63.3 Habit and impulse disorders - Trichotillomania,F63.8 Other habit and impulse disorders,""F63.9 Habit and impulse disorder, unspecified"",F64 Gender identity disorders,F64.0 Gender identity disorders - Transsexualism,F64.1 Gender identity disorders - Dual-role transvestism,F64.2 Gender identity disorder of childhood,F64.8 Other gender identity disorders,""F64.9 Gender identity disorder, unspecified"",F65 Disorders of sexual preference,F65.0 Disorders of sexual preference - Fetishism,F65.1 Disorders of sexual preference - Fetishistic transvestism,F65.2 Disorders of sexual preference - Exhibitionism,F65.3 Disorders of sexual preference - Voyeurism,F65.4 Disorders of sexual preference - Paedophilia,F65.5 Disorders of sexual preference - Sadomasochism,F65.6 Multiple disorders of sexual preference,F65.8 Other disorders of sexual preference,""F65.9 Disorder of sexual preference, unspecified"",F66 Psychological and behavioural disorders associated with sexual development and orientation,F66.0 Sexual maturation disorder,F66.1 Egodystonic sexual orientation,F66.2 Sexual relationship disorder,F66.8 Other psychosexual development disorders,""F66.9 Psychosexual development disorder, unspecified"",F68 Other disorders of adult personality and behaviour,F68.0 Elaboration of physical symptoms for psychological reasons,""F68.1 Intentional production or feigning of symptoms or disabilities, either physical or psychological [factitious disorder]"",F68.8 Other specified disorders of adult personality and behaviour,F69 Unspecified disorder of adult personality and behaviour,F70 Mild mental retardation,F70-F79 Mental retardation,F71 Moderate mental retardation,F72 Severe mental retardation,F73 Profound mental retardation,F78 Other mental retardation,F79 Unspecified mental retardation,F80 Specific developmental disorders of speech and language,F80-F89 Disorders of psychological development,F80.0 Specific speech articulation disorder,F80.1 Expressive language disorder,F80.2 Receptive language disorder,F80.3 Acquired aphasia with epilepsy [Landau-Kleffner],F80.8 Other developmental disorders of speech and language,""F80.9 Developmental disorder of speech and language, unspecified"",F81 Specific developmental disorders of scholastic skills,F81.0 Specific reading disorder,F81.1 Specific spelling disorder,F81.2 Specific disorder of arithmetical skills,F81.3 Mixed disorder of scholastic skills,F81.8 Other developmental disorders of scholastic skills,""F81.9 Developmental disorder of scholastic skills, unspecified"",F82 Specific developmental disorder of motor function,F83 Mixed specific developmental disorders,F84 Pervasive developmental disorders,F84.0 Pervasive developmental disorders - Childhood autism,F84.1 Pervasive developmental disorders - Atypical autism,F84.2 Pervasive developmental disorders - Rett syndrome,F84.3 Pervasive developmental disorders - Other childhood disintegrative disorder,F84.4 Pervasive developmental disorders - Overactive disorder associated with mental retardation and stereotyped movements,F84.5 Pervasive developmental disorders - Asperger syndrome,F84.8 Other pervasive developmental disorders,""F84.9 Pervasive developmental disorder, unspecified"",F88 Other disorders of psychological development,F89 Unspecified disorder of psychological development,F90 Hyperkinetic disorders,F90-F98 Behavioural and emotional disorders with onset usually occurring in childhood and adolescence,F90.0 Hyperkinetic disorders - Disturbance of activity and attention,F90.1 Hyperkinetic conduct disorder,F90.8 Other hyperkinetic disorders,""F90.9 Hyperkinetic disorder, unspecified"",F91 Conduct disorders,F91.0 Conduct disorder confined to the family context,F91.1 Unsocialized conduct disorder,F91.2 Socialized conduct disorder,F91.3 Conduct disorders - Oppositional defiant disorder,F91.8 Other conduct disorders,""F91.9 Conduct disorder, unspecified"",F92 Mixed disorders of conduct and emotions,F92.0 Depressive conduct disorder,F92.8 Other mixed disorders of conduct and emotions,""F92.9 Mixed disorder of conduct and emotions, unspecified"",F93 Emotional disorders with onset specific to childhood,F93.0 Separation anxiety disorder of childhood,F93.1 Phobic anxiety disorder of childhood,F93.2 Social anxiety disorder of childhood,F93.3 Emotional disorders with onset specific to childhood - Sibling rivalry disorder,F93.8 Other childhood emotional disorders,""F93.9 Childhood emotional disorder, unspecified"",F94 Disorders of social functioning with onset specific to childhood and adolescence,F94.0 Disorders of social functioning with onset specific to childhood and adolescence - Elective mutism,F94.1 Reactive attachment disorder of childhood,F94.2 Disinhibited attachment disorder of childhood,F94.8 Other childhood disorders of social functioning,""F94.9 Childhood disorder of social functioning, unspecified"",F95 Tic disorders,F95.0 Transient tic disorder,F95.1 Chronic motor or vocal tic disorder,F95.2 Combined vocal and multiple motor tic disorder [de la Tourette],F95.8 Other tic disorders,""F95.9 Tic disorder, unspecified"",F98 Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence,F98.0 Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence - Nonorganic enuresis,F98.1 Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence - Nonorganic encopresis,F98.2 Feeding disorder of infancy and childhood,F98.3 Pica of infancy and childhood,F98.4 Stereotyped movement disorders,F98.5 Stuttering [stammering],F98.6 Cluttering,F98.8 Other specified behavioural and emotional disorders with onset usually occurring in childhood and adolescence,F98.9 Unspecified behavioural and emotional disorders with onset usually occurring in childhood and adolescence,""F99 Mental disorder, not otherwise specified"",F99-F99 Unspecified mental disorder,""IV Endocrine, nutritional and metabolic diseases"",V Mental and behavioural disorders","BASE OF TONGUE,""UTERUS, NOS"",""Base of tongue, NOS"",""Uterus, NOS""","""Carcinoma, metastatic, NOS"",Carcinomatosis",True,linkage possibility description cohort 1,Closed dataset,Release description cohort 1,Linkage options cohort 1,Test lead organisation 1,"general research use,health or medical or biomedical research","genetic studies only,publication required,ethics approval required",Data access conditions description text cohort 1 - yes fee,True,https://doi.org/10.1093/ije/dyz227,"https://doi.org/10.5694/mja12.10698,https://doi.org/10.1002/ijc.32791",Broad consent,"This is the funding statement for cohort 1. It's not too long but covers more than one line, I think, particularly if I fill it up with blah blah blah (check for ""until now"" at the end) Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW","This is the acknowledgement statement for cohort 1. It's not too long but covers more than one line, I think, particularly if I fill it up with blah blah blah (check for ""until now"" at the end) Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW",Some supplementary information for cohort 1.,Cohort study,,,,,,,,"testCohort1,testCohort2,AP,COD_FARMACI_SPF,SPECIALISTICA,TestDataSourceID",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +testCohort2,https://pid-for-testcohort2.org,acronym for test cohort 2,Name for test cohort 2,Local name for test cohort 2,"test, cohort2, Molgenis, testing",https://www.molgenis.org,test lead organisation 2,id for test additional organisation 2,"This is the Test cohort 2. It has ""other"" options where possible. No end year, so ""ongoing"". Design paper = Birth of a cohort — the first 20 years of the Raine study, publications = other papers. No to data access fee. Here we have some extra text to check the read less / read more functionality on the cohort detail page.",molgenis-support@umcg.nl,Other type,Cohort 2 other type,Longitudinal,Description of the design used for cohort 2,,,Retrospective,,,100,50,United Kingdom of Great Britain and Northern Ireland (the),Bradford,"Prenatal,Child (2-12 years)",Age of majority inclusion criterion,Other inclusion criteria cohort 2,,,1955,,"F10 Mental and behavioural disorders due to use of alcohol,F11 Mental and behavioural disorders due to use of opioids","KIDNEY,""Kidney, NOS""",Carcinomatosis,False,linkage possibility description cohort 2,Annually,Release description cohort 2,Linkage options cohort 2,,general research use,publication required,Data access conditions description text cohort 2 - no fee,False,https://doi.org/10.5694/mja12.10698,"https://doi.org/10.2337/dc21-2662,https://doi.org/10.1186/s12916-023-02769-y",Study specific consent,"This is the funding statement for cohort 2. It's not too long but covers more than one line, I think, particularly if I fill it up with blah blah blah (check for ""until now"" at the end) Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW.","This is the acknowledgements text for cohort 2. Again I need to fill it up to test - check that ""until now"" has been shown at the bottom Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW",Some supplementary information for cohort 2 blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah UNTIL NOW,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +testNetwork2,https://pid-for-testnetwork2.org,acronym for test network2,name for test network2,,,https://www.molgenis.org,UMCG,"AMC,CYN",test description for new test network,,,,,,,,,,,,,"Germany,Netherlands (the)",,,,,,,1975,2010,,,,,,,,,,,,,,,https://doi.org/10.1016/S1473-3099(20)30873-2,,"test funding statement for test network - check that ""until now"" has been included blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah until now","test acknowledgements for test network - check that ""until now"" has been included blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah until now",,Network,EU4health - Prevention,"Funding,EU institutional research programme,Non-EU institutional research programme,EMA,National competent authority (NCAs),Other public funding (e.g. hospital or university),Non for-profit organisation (e.g. charity),Pharmaceutical company and other private sector,No external funding,Funding: Other",,"COD_FARMACI_SPF,SPECIALISTICA,AP","testCohort1,testCohort2",testNetwork1_CDM,,"testCohort1,testCohort2,COD_FARMACI_SPF,SPECIALISTICA,AP",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +testNetworkofNetworks,https://pid-for-testnetworkofnetworks.org,acronym for test network of networks,name for test network of networks,,,https://www.molgenis.org,UMCG,"AMC,CYN",test description for new test network,,,,,,,,,,,,,"Germany,Netherlands (the)",,,,,,,1975,2010,,,,,,,,,,,,,,,https://doi.org/10.1016/S1473-3099(20)30873-2,,"test funding statement for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now","test acknowledgements for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now",,Network,EU4health - Prevention,"Funding,EU institutional research programme,Non-EU institutional research programme,EMA,National competent authority (NCAs),Other public funding (e.g. hospital or university),Non for-profit organisation (e.g. charity),Pharmaceutical company and other private sector,No external funding,Funding: Other",,"COD_FARMACI_SPF,SPECIALISTICA,AP","testCohort3,testCohort1,testCohort2",testNetwork1_CDM,"testNetwork1,testNetwork2","testNetwork1,testNetwork2,testCohort3,testCohort1,testCohort2,COD_FARMACI_SPF,SPECIALISTICA,AP",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +testNetwork1,https://pid-for-testnetwork1.org,acronym for test network1,name for test network1,,,https://www.molgenis.org,UMCG,"AMC,CYN",test description for new test network,,,,,,,,,,,,,"Central African Republic (the),Chad",,,,,,,1975,2010,,,,,,,,,,,,,,,"https://doi.org/10.1016/S1473-3099(20)30873-2,https://doi.org/10.1136/bmjopen-2017-015867",,"test funding statement for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now","test acknowledgements for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now",,Network,EU4health - Prevention,"Funding,EU institutional research programme,Non-EU institutional research programme,EMA,National competent authority (NCAs),Other public funding (e.g. hospital or university),Non for-profit organisation (e.g. charity),Pharmaceutical company and other private sector,No external funding,Funding: Other",TestDataSourceID,"COD_FARMACI_SPF,SPECIALISTICA,AP","testCohort3,testCohort4,testCohort1,testCohort2",testNetwork1_CDM,,"testCohort3,testCohort4,testCohort1,testCohort2,TestDataSourceID,COD_FARMACI_SPF,SPECIALISTICA,AP",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +CONSTANCES,,CONSTANCES,Cohorte des Consultants des Centres d’Examens,,,https://www.constances.fr/,INSERM,,,,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,220000,,France,,Adult (18+ years),,,,,2012,2019,,,,,,,,,,,,,,https://doi.org/10.1007/s10654-015-0096-4,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +G21,,,Generation 21,Geraç,,http://www.geracao21.com/pt/,ISPUP,,,,Birth cohort,,Longitudinal,,,,,,,8647,,Portugal,,"Newborn (0-1 months),Child (2-12 years),Adolescent (13-17 years)",,,,,2005,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +mCRC-VHIO,,mCRC-VHIO,metastatic Colorrectar Cancer - VHIO,,,,VHIO,,,xvillalobos@vhio.net,Clinical cohort,,Cross-sectional,,,,Retrospective,,,116,,,,,,,,,,,,,,,,,,,,disease specific research,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +FORCE-NEN,,FORCE-NEN,InFrastructure fOr Rare Cancers in the nEtherlands – Neuroendocrine Neo,,,https://www.ikdoemeemetforce.nl/,"UMCU,UMCG","MUMC,NKI,AmsterdamUMC (VUmc),EMC,Maxima MC",Multicenter Clinical Biobank with primary object to determine the value of ctDNA in the diagnosis and treatment of Neuroendocrine Neoplasms.,force-nen@umcutrecht.nl,Clinical cohort,,Longitudinal,,,,"Retrospective,Prospective",,,,,Netherlands (the),,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)",,,,,2022,,,,,,,Closed dataset,,,UMCU,disease specific research,"collaboration required,ethics approval required,project specific restriction",,,,,,FORCE is made possible by a grant from the KWF Dutch Cancer Society (13363),,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +FORCE-NEN collections,,,FORCE-NEN collections,,,https://www.ikdoemeemetforce.nl/,"UMCU,UMCG","MUMC,NKI,AmsterdamUMC (VUmc),EMC,Maxima MC",,,,,Longitudinal,,,,Retrospective,,,,,Netherlands (the),,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)",,,,,2022,,,,,,,Closed dataset,,,UMCU,disease specific research,"collaboration required,ethics approval required,project specific restriction",,,,,,FORCE is made possible by a grant from the KWF Dutch Cancer Society (13363),,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +CON,CON,CON,Consumer cohort,CON,"consumer, supermarket, data epidemiology, cohort",https://mineindkob.dk/,SSI,,"This project aims to investigate how what we buy, and thus our diet, affects health, by analyzing purchase patterns and health information over time.","frtm@ssi.dk, mineindkob@ssi.dk",Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,407,407,Denmark,,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (80+ years)",,,,,2021,,,,,,,Other release type,on request,"GS1 data, FRIDA data",,,,,,,,,Through the project HEAP: https://heap-exposome.eu/ grant agreement No. 874662,,Full consent can be found at https://www.mineindkob.dk/da-DK/registration#1,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +CSC,CSC,CSC,Cervical screening cohort,,"cancer, CIN, LSIL, HSIL, cytology, pathology, invitations, HPV, cervical cancer",https://nkcx.se,KI,,Cervical screening cohort comprising all women resident in Sweden aged 23-64 that are screened for human papillomavirus or cervical abnormalities.,joakim.dillner@ki.se; info@nkcx.se,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,500000,500000,Sweden,,"Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65-79 years)",,,,,1968,,,,,,,Annually,new data from past year is imported annualy in April online,"NKCx, biobank, laboratory experiments (sequencing)",,,,"For research purposes data can be provided pseudonomized, providing there is i) an approved ethical application, ii) an approved application for data (which is to be submitted to the registry)",,,,,SKR (Swedish Municipalities and Regions) funds partly for NKCx.,"It is required to name the data source for instance in the materials and methods section as ""Swedish National Cervical Screening Registry (NKCx)""",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +HPV,,HPV,HPV vaccination cohort,,"Community randomized, HPV vaccination, gender-neutral",https://projects.tuni.fi/hpv-rokotiitus/,TUNI,,"Community-randomized HPV vaccination trial cohort: gender-neutral HPV16/18 vaccination arm, girls-only HPV16/18 vaccination and hepatitis B-virus (HBV) vaccination of boys arm, and arm gender-neutral HBV vaccination arm. Total of boys (31,117) and girls (30,139), 9482 (60,7 %) were HPV vaccinated and 6131 (39,3 %) were HBV vaccinated at the age of 14 and followed up at he age of 18, 22, 25 and 28.","tiina.eriksson@tuni.fi, ville.pimenoff@ki.se, karolina.louvanto@tuni.fi, matti.lehtinen@tuni.fi",,,Longitudinal,,,,Prospective,,,61256,15613,Finland,,"Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years)",,,,,2007,,,,,,,Other release type,not determined; new data still created,,,,,,,,,,"A total of more than 40 million euros of grants by Prof. Matti Lehtinen from Finnish and Nordic Cancer Cociety, Finnish Academy, EU FP5 prgram, FP6 program, FP7 program, Merck&Co, GlaxoSmithKline Biologicals, IMI, Swedish Cancerfonden, Jane and aatos Erkko Foundation, EU Horizon and Finnish Cancer Society.",Original articles and data owners need to be cited.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +LSC,LSC,LSC,Lifestyle cohort,TirolGESUND,intermittent fasting; smoking cessation; DNA methylation; prevention;,https://www.uibk.ac.at/,UIBK,,"Data from 6-month intervention trial looking at the effects of intermittent fasting or smoking cessation in healthy women aged 30-60 with risk factors for cancer or other diseases (elevanted BMI, heavy smoking).",martin.widschwendter@uibk.ac.at,Population cohort,,Longitudinal,,,,Prospective,,,156,156,Austria,,"Adult (25-44 years),Middle-aged (45-64 years)",,,,,2021,,,,,,,Other release type,"Data will be embargoed until initial publication of the study results. Personally identifiable data will be under restricted access, controlled by a data access committee. A data access form will need to be filled in providing data use. Use of data is for scientific purposes only and a cooperation agreement has to be signed for use.",,,,,"Data will be embargoed until initial publication of the study results. Personally identifiable data will be under restricted access, controlled by a data access committee. A data access form will need to be filled in providing data use. Use of data is for scientific purposes only and a cooperation agreement has to be signed for use.",,,,,"This study received funding by the European Union’s Horizon 2020 Research and Innovation Program, HEAP under grant agreement No. 874662 and the Land","Any users must acknowledge Prof. Martin Widschwendter, Dr Chiara Herzog, and the EUTOPS Institute and cite the relevant key publications out of the project.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +BAMSE,,,BAMSE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +HBCS,,HBCS,Helsinki Birth Cohort Study,,,https://thl.fi/en/web/thlfi-en/research-and-expertwork/projects-and-programmes/helsinki-birth-cohort-study-hbcs-idefix,,,,,Birth cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +MAT,MAT,MAT,Maternity cohort,MAT,"Biobank, maternity cohort, serum",https://www.ppshp.fi/Tutkimus-ja-opetus/Biopankki/Pages/default.aspx,,,"The Finnish Maternity Cohort (FMC) in Northern Finland Biobank Borealis is a collection of serum samples comprising virtually the entire population of Finnish females, who have been pregnant since 1983. FMC is linkable with population-based health registers including the Finnish Cancer Registry and the Medical Birth Register. Linkage of FMC data and samples with pathological archives of Finnish Biobanks provides an opportunity to expand the scope of research into interaction of biological and genomic factors in association with various diseases. Serial prediagnostic serum samples and comprehensive data accessible over three generations provide possibilities for unique study settings.","hanna.ohman@ppshp.fi, ville.pimenoff@oulu.fi, helja-marja.surcel@oulu.fi",,,Longitudinal,,,,Retrospective,,,950000,950000,Finland,,"Adolescent (13-17 years),Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (80+ years)",,,,,1983,2017,,,,,,Closed dataset,,FMC is linkable with population-based health registers including the Finnish Cancer Registry and the Medical Birth Register. Linkage of FMC data and samples with pathological archives of Finnish Biobanks provides an opportunity to expand the scope of research into interaction of biological and genomic factors in association with various diseases.,,,,,,https://doi.org/10.1002/cam4.1222,https://doi.org/10.1002/cam4.1222,,European Science Infrastructure Services (https://esis.fi/),European Science Infrastructure Services (https://esis.fi/),European Science Infrastructure Services (https://esis.fi/),Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +WDC,WDC,WDC,Wearable data collection study,WDC,"wearables, exposome, pregnancy, environmental exposure",,,"UOULU,KI,TUNI","Longitudinal cohort of pregnant and non-pregnant women for exposome estimation from blood, saliva, sweat and personal aerosols.","ville.pimenoff@oulu.fi, ville.pimenoff@ki.se, matti.lehtinen@tuni.fi",Population cohort,,Longitudinal,Longitudinal,,,Prospective,,,100,100,Finland,,Adult (25-44 years),,,,,2022,2022,,,,,,Closed dataset,,,,,,,,https://doi.org/10.1097/EE9.0000000000000182,https://doi.org/10.1097/EE9.0000000000000182,,Horizon 2020 (HEAP),Contributors need to be cited.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +EDEN,,EDEN,Study on the pre and early postnatal determinants of child health and development,,,http://eden.vjf.inserm.fr/en/,INSERM,,"The EDEN study is a French bicentric generalist cohort study (Heude et al. IJE 2016). Pregnant women were invited to participate during their prenatal visit, before the 24th week of amenorrhea, in the obstetrics and gynecology departments of the Poitiers and Nancy university hospitals. Recruitment took place from February 2003 to January 2006. The exclusion criteria were: twin pregnancy, diagnosis of insulin-dependent diabetes, inability to speak and read French, intention to move from the region within three years of inclusion . Among the women invited, 53% agreed to participate (n = 2,002). Detailed information on phenotypes and exposures were collected through questionnaires from pregnancy until 8 years and through clinical examinations of the mother (at 24 weeks of amenorrhoea, at delivery and 5–6 years after delivery) and the child (at birth and 1, 3 and 5–6 years, including cognitive assessments at 3 and 5–6 years). At 5–6 years, 1255 children",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,2002,,,,,,,,,2003,2006,,,,,,Continuous,,,,health or medical or biomedical research,,"- Submission of the project proposal to the cohort PI (Barbara Heude) - Approval of the project by the EDEN steering committee (takes 1 month) ​- Signature of a data access agreement (DAA) - Data made available for analysis by the data manager (credentials will be sent to the person requesting access to the",,https://doi.org/10.1093/ije/dyv151,,,"The study relied on many different sources of funding including Inserm, University Paris 11, the French Medical Research Foundation and the National Research Agency and also from national and European programs and project grants. A more comprehensive list of funders can be found on the EDEN website, along with other information","The authors are extremely grateful to all the families who took part in this study, the midwives and psychologists for recruiting and following them, and the whole EDEN team, including research scientists, engineers, technicians and managers.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -PELAGIE,,PELAGIE,"Perturbateurs Endocriniens: Étude Longitudinale sur les Anomalies de la Grossesse, l’Infertilit","Perturbateurs Endocriniens: Étude Longitudinale sur les Anomalies de la Grossesse, l’Infertilit",Pregnancy; Child; environment; growth; development; neurodevelopment; pesticides; solvant; occupation,http://www.pelagie-inserm.fr/,INSERM,,"The PELAGIE mother-child cohort was set up with the aim to study the effect of prenatal exposure to environmental and occupational chemicals on reproduction and child development. The PELAGIE cohort enrolled 3421 pregnant women from Brittany, France between 2002 and 2006. Offsprings were followed at delivery (n=3439) and at 2 (n=1506), 6 (n=1406) and 12 (n=1211) years old. Almost all women provided a urine samples at inclusion. Cord blood samples, maternal hair samples and pieces of placenta were collected for 55%, 60%, and 57% of the participants, respectively. A subgroup of 287 and 559 children performed a more in-depth follow-up including a clinical examination and biological sample collection at age 6 and 12 years old, respectively.",,Population cohort,,Longitudinal,,,,Prospective,,,3421,3400,France,Bretagne,"Prenatal,Newborn (0-1 months),Child (2-12 years)",,,2002,2006,,,,,,,Once a follow-up is completed and data have been processed.,No,,,,Send a first request to Cécile Chevrier (cecile.chevrier@inserm.,,,"https://doi.org/10.1289/ehp.1002775,https://doi.org/10.1186/1476-069X-12-102,https://doi.org/10.1016/j.envint.2015.05.009",,"Depends on the data used (birth, 2, 6, 12 years old). Main funders includes: Inserm, Institut national de Veille Sanitaire, Ministère du travail, Ministère de la recherche, Agence Nationale de la Recherche, Afsset/Anses, DRASS de Bretagne, EU commission, Programme 189 Post Grenelle, Fondation de","We are grateful to the midwives, obstetricians, gynecologists, sonographers, pediatricians, and families who participated in the study.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +PELAGIE,,PELAGIE,"Perturbateurs Endocriniens: Étude Longitudinale sur les Anomalies de la Grossesse, l’Infertilit","Perturbateurs Endocriniens: Étude Longitudinale sur les Anomalies de la Grossesse, l’Infertilit",Pregnancy; Child; environment; growth; development; neurodevelopment; pesticides; solvant; occupation,http://www.pelagie-inserm.fr/,INSERM,,"The PELAGIE mother-child cohort was set up with the aim to study the effect of prenatal exposure to environmental and occupational chemicals on reproduction and child development. The PELAGIE cohort enrolled 3421 pregnant women from Brittany, France between 2002 and 2006. Offsprings were followed at delivery (n=3439) and at 2 (n=1506), 6 (n=1406) and 12 (n=1211) years old. Almost all women provided a urine samples at inclusion. Cord blood samples, maternal hair samples and pieces of placenta were collected for 55%, 60%, and 57% of the participants, respectively. A subgroup of 287 and 559 children performed a more in-depth follow-up including a clinical examination and biological sample collection at age 6 and 12 years old, respectively.",,Population cohort,,Longitudinal,,,,Prospective,,,3421,3400,France,Bretagne,"Prenatal,Newborn (0-1 months),Child (2-12 years)",,,,,2002,2006,,,,,,,Once a follow-up is completed and data have been processed.,No,,,,Send a first request to Cécile Chevrier (cecile.chevrier@inserm.,,,"https://doi.org/10.1289/ehp.1002775,https://doi.org/10.1186/1476-069X-12-102,https://doi.org/10.1016/j.envint.2015.05.009",,"Depends on the data used (birth, 2, 6, 12 years old). Main funders includes: Inserm, Institut national de Veille Sanitaire, Ministère du travail, Ministère de la recherche, Agence Nationale de la Recherche, Afsset/Anses, DRASS de Bretagne, EU commission, Programme 189 Post Grenelle, Fondation de","We are grateful to the midwives, obstetricians, gynecologists, sonographers, pediatricians, and families who participated in the study.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, BIB,,BIB,Born in Bradford,,Multicultural,https://borninbradford.nhs.uk/,BRI,,"Born in Bradford (BiB) started in 2007 as a response to the poor health outcomes for children in Bradford. Pregnant women were recruited when they attended the Bradford Royal Infirmary for their routine maternity care. Participants were asked to complete a questionnaire about different aspects of their lives including demographics information, physical and mental health and socio-economic information. Between 2007 and 2011, 12,453 pregnant women were recruited and 3,353 of their partners. Participants also gave permission for routine data linkage for themselves and their children. The BiB cohort is split between approximately 50% South Asian and 50% non-South Asian participants. @@ -26,7 +33,7 @@ BiB has completed a number of sub-sample studies including BiB1000, which focuse Since 2016, BiB have undertaken a full cohort follow-up compromising of home visits for data collection through questionnaires, school visits where children carried out cognitive assessments, and a child measurement programme where children were weighed and measured, had their activity levels measured, and were asked to give a blood sample. -From the findings of these studies, BiB have developed a range of additional research projects such as evaluating and developing new interventions to improve health; for example, focusing on reducing childhood obesity, increasing physical activity, improving oral health and improving mental wellbeing. BiB have gone beyond functioning as an observational birth cohort and are actively trying to build and strengthen local research capacity and translate evidence to practice.",,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,12453,,,Bradford,,,,2007,,,,,,,Closed dataset,,No,,general research use,return to database or resource,"Born in Bradford allows researchers to apply to access the study data through the BiB Executive Group. Researchers need to submit an EOI form to borninbradford@bthft.nhs.uk and the EOI will be reviewed at the monthly BiB Exec. +From the findings of these studies, BiB have developed a range of additional research projects such as evaluating and developing new interventions to improve health; for example, focusing on reducing childhood obesity, increasing physical activity, improving oral health and improving mental wellbeing. BiB have gone beyond functioning as an observational birth cohort and are actively trying to build and strengthen local research capacity and translate evidence to practice.",,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,12453,,,Bradford,,,,,,2007,,,,,,,Closed dataset,,No,,general research use,return to database or resource,"Born in Bradford allows researchers to apply to access the study data through the BiB Executive Group. Researchers need to submit an EOI form to borninbradford@bthft.nhs.uk and the EOI will be reviewed at the monthly BiB Exec. Information about the different data sets are available here: https://borninbradford.nhs.uk/research/documents-data/ @@ -38,7 +45,7 @@ The Generation R study enrolled 9,153 mothers with a delivery date from April 20 Pregnant women with an expected delivery date between April 2002 and January 2006 living in Rotterdam were eligible for participation in the study. In total, 9778 mothers were enrolled in the study, who gave birth to 9749 live born children. Extensive assessments are performed in mothers, fathers and their children. Measurements were planned in early pregnancy (gestational age <18 weeks), mid pregnancy (gestational age 18–25 weeks) and late pregnancy (gestational age >25 weeks). The fathers were assessed once during the pregnancy of their partner. The children form a prenatally recruited birth cohort that will be followed at least until young adulthood. In the preschool period, which in the Netherlands refers to the period from birth until the age of 4 years, data collection was performed by a home-visit at the age of 3 months, and by repeated questionnaires and routine child health centers visits. Information from these routine visitobtained and used for the study. Additional detailed measurements of fetal and postnatal growth and development were conducted in a randomly selected subgroup of Dutch children and their parents at a gestational age of 32 weeks and postnatally at the ages of 1.5, 6, 14, 24, 36 and 48 months in a dedicated research center. -Around the ages of 6 and 10 years all children and their parents were invited to visit our research center in the Erasmus MC-Sophia Children’s Hospital to participate in hands-on measurements, advanced imaging modalities, behavioural observations and biological sample collection. MRI scans of all participating children were made in order to image abdominal composition, brain, lungs, cardiovascular system, fat tissue, kidney, liver, and hip development. Furthermore, the parents received 6 questionnaires during this period. Children also received their own questionnaire around the age of 10. Information from municipal health services, schools and general practicionars has also been cleedResponse at baseline was 61%, and general follow-up rates until the age of 10 years were around 80%.",,,"Retrospective,Prospective",,,9901,,Netherlands (the),Rotterdam,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years)",,,2001,,,,,,,Periodically,"Upon completion of follow-up, data will be cleaned for usage by the Generation R study group and then harmonized and uploaded for ECCN availability.",,,,"""not for profit, non commercial use only""","1. LifeCycle Project Research proposal has been discussed in the WP and distributed to all LifeCycle Project cohorts +Around the ages of 6 and 10 years all children and their parents were invited to visit our research center in the Erasmus MC-Sophia Children’s Hospital to participate in hands-on measurements, advanced imaging modalities, behavioural observations and biological sample collection. MRI scans of all participating children were made in order to image abdominal composition, brain, lungs, cardiovascular system, fat tissue, kidney, liver, and hip development. Furthermore, the parents received 6 questionnaires during this period. Children also received their own questionnaire around the age of 10. Information from municipal health services, schools and general practicionars has also been cleedResponse at baseline was 61%, and general follow-up rates until the age of 10 years were around 80%.",,,"Retrospective,Prospective",,,9901,,Netherlands (the),Rotterdam,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years)",,,,,2001,,,,,,,Periodically,"Upon completion of follow-up, data will be cleaned for usage by the Generation R study group and then harmonized and uploaded for ECCN availability.",,,,"""not for profit, non commercial use only""","1. LifeCycle Project Research proposal has been discussed in the WP and distributed to all LifeCycle Project cohorts 2. The lead researcher sends a request to Generation R contact (primary contact for internal discussion: LifeCycle Project manager lifecycle@erasmusmc.nl). If it concerns another proposal than a LifeCycle proposal please state this. 3. The proposal is discussed in the Generation R Management Team by the involved Generation R PI 4. The involved PI notifies the lead researcher and the LifeCycle project manager of the MT outcome, with lifecycle@erasmusmc.nl in the cc. @@ -57,7 +64,7 @@ Around the ages of 6 and 10 years all children and their parents were invited to GenR Next,,GenR Next,Generation R Next,,population-based prospective cohort study from preconception onwards,https://generationr.nl/next,EMC,,"The Generation R Next Study is a population-based cohort study from preconception onwards. In total, about 3600 women are being included in the period 2017-2021. Of all included couples, about 30% is included during the preconception, about 60% during the first trimester of pregnancy and about 10% in the third trimester of pregnancy.",v.jaddoe@erasmusmc.nl,"Population cohort,Birth cohort",,Longitudinal,"The Generation R Next Study is a population-based cohort study from preconception onwards. In total, about 3600 women are being included in the period 2017-2021. Of all included couples, about 30% is included during the preconception, about 60% during the first trimester of pregnancy and about 10% in the third trimester of pregnancy. Preconception recruitment is performed via social media, door-to-door mailings, mouth-to-mouth, and healthcare professionals. Measurements in the parents-to-be include physical examinations, questionnaires (lifestyle, diet) and biological samples at preconception, and 6 to 13 weeks pregnancy, as well as 30 weeks of pregnancy. The data collection includes innovative embryonic/fetal and placental assessments by repeated ultrasounds at around 6, 9, 12 and 30 weeks. -Early childhood follow-up consisted of questionnaires at 1 month, 6 months and 12 months of age. A subgroup of children and their mothers was invited for measurements at the research center at ages 1 month, 6 months and 12 months.",,,"Retrospective,Prospective",,,3604,,Netherlands (the),Rotterdam,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years)",,,2017,,,,,,,Periodically,"Upon completion of follow-up, data will be cleaned for usage by the Generation R study group and then harmonized and uploaded for ECCN availability.",,,,"""not for profit, non commercial use only""","Data access conditions: +Early childhood follow-up consisted of questionnaires at 1 month, 6 months and 12 months of age. A subgroup of children and their mothers was invited for measurements at the research center at ages 1 month, 6 months and 12 months.",,,"Retrospective,Prospective",,,3604,,Netherlands (the),Rotterdam,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years)",,,,,2017,,,,,,,Periodically,"Upon completion of follow-up, data will be cleaned for usage by the Generation R study group and then harmonized and uploaded for ECCN availability.",,,,"""not for profit, non commercial use only""","Data access conditions: 1. LifeCycle Project Research proposal has been discussed in the WP and distributed to all LifeCycle Project cohorts 2. The lead researcher sends a request to Generation R contact (primary contact for internal discussion: LifeCycle Project manager lifecycle@erasmusmc.nl). If it concerns another proposal than a LifeCycle proposal please state this. 3. The proposal is discussed in the Generation R Management Team by the involved Generation R PI @@ -70,145 +77,138 @@ Early childhood follow-up consisted of questionnaires at 1 month, 6 months and 1 - creates the Opal-views - emails the researcher the fully signed DUA, and the Opal-login details to access the data - Informs Generation R contact that data access has been granted",,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Sepages,,SEPAGES,Suivi de l'Exposition à la Pollution Atmosphérique et Effet sur la,Suivi de l'Exposition à la Pollution Atmosphérique et Effet sur la,"Novel tools for integrating early-life environmental exposures and child health, biomarkers",https://cohorte-sepages.fr/en,INSERM,,"(1) characterize finely environmental exposures during pregnancy and early life ; (2) evaluate the impact of the environment on mother-child health, focusing on three main outcomes: growth, respiratory health and neurodevelopment; (3) explore possible underlying biological pathways, focusing on those mediated by epigenetic marks, immunologic and hormonal parameters and by the gut microbiota.",,Population cohort,,Longitudinal,,,,Prospective,,,484,480,France,Auvergne-Rhône-Alpes,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years)",,,2014,,,,,,,Annually,,No,,,project specific restriction,Send a first request to Sarah Lyon-Caen (sarah.lyon-caen@univ-grenoble-alpes.fr),,https://doi.org/10.3390/ijerph16203888,"https://doi.org/10.1016/j.envpol.2021.117650,https://doi.org/10.1016/j.envint.2020.105678,https://doi.org/10.1016/j.envint.2021.106697,https://doi.org/10.3390/ijerph16203888",,"The SEPAGES cohort was supported by the European Research Council (N°311765-E-DOHaD), the European Community’s Seventh Framework Programme (FP7/2007-206 - N°308333-892 HELIX), the European Union’s Horizon 2020 research and innovation programme (N° 874583 ATHLETE Project, N°825712 OBERON Project), the French Research Agency - ANR (PAPER project ANR-12-PDOC-0029-01, SHALCOH project ANR-14-CE21-0007, ANR-15-IDEX-02 and ANR-15-IDEX5, GUMME project ANR-18-CE36-005, ETAPE project ANR - EDeN project ANR -19-CE36-0003-01), the French Agency for Food, Environmental and Occupational Health & Safety - ANSES (CNAP project EST-2016-121, PENDORE project EST-2016-121, HyPAxE project EST-2019/1/039), the Plan Cancer (Canc’Air project), the French Cancer Research Foundation Association de Recherche sur le Cancer – ARC, the French Endowment Fund AGIR for chronic diseases – APMC (projects PRENAPAR and LCI-FOT), the French Endowment Fund for Respiratory Health, the French Fund – Fondation de France","SEPAGES biospecimens are stored at Grenoble University Hospital(CHU-GA) biobank (bb-0033-00069); we would like to thank the whole CRB team, led by Pr. P. Mossuz and Mr. P. Lorimier, and in particular the technicians for the huge work of biospecimens processing and pooling: Mrs. W. Jayar and Mrs. L. Than, as well as Mr. G. Schummer. We thank the SEPAGES study group : E. Eyriey, A. Licinia, A. Vellement (Groupe Hospitalier Mutualiste, Grenoble), I. Pin, P. Hoffmann, E. Hullo, C. Llerena (Grenoble Alpes University Hospital, La Tronche), X. Morin (Clinique des Cèdres, Echirolles), A. Morlot (Clinique Belledonne, Saint-Martin d’Hères), J. Lepeule, S. Lyon-Caen, C. Philippat, I. Pin, J. Quentin, V. Siroux, R. Slama (Grenoble Alpes University, Inserm, CNRS, IAB). +Sepages,,SEPAGES,Suivi de l'Exposition à la Pollution Atmosphérique et Effet sur la,Suivi de l'Exposition à la Pollution Atmosphérique et Effet sur la,"Novel tools for integrating early-life environmental exposures and child health, biomarkers",https://cohorte-sepages.fr/en,INSERM,,"(1) characterize finely environmental exposures during pregnancy and early life ; (2) evaluate the impact of the environment on mother-child health, focusing on three main outcomes: growth, respiratory health and neurodevelopment; (3) explore possible underlying biological pathways, focusing on those mediated by epigenetic marks, immunologic and hormonal parameters and by the gut microbiota.",,Population cohort,,Longitudinal,,,,Prospective,,,484,480,France,Auvergne-Rhône-Alpes,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years)",,,,,2014,,,,,,,Annually,,No,,,project specific restriction,Send a first request to Sarah Lyon-Caen (sarah.lyon-caen@univ-grenoble-alpes.fr),,https://doi.org/10.3390/ijerph16203888,"https://doi.org/10.1016/j.envpol.2021.117650,https://doi.org/10.1016/j.envint.2020.105678,https://doi.org/10.1016/j.envint.2021.106697,https://doi.org/10.3390/ijerph16203888",,"The SEPAGES cohort was supported by the European Research Council (N°311765-E-DOHaD), the European Community’s Seventh Framework Programme (FP7/2007-206 - N°308333-892 HELIX), the European Union’s Horizon 2020 research and innovation programme (N° 874583 ATHLETE Project, N°825712 OBERON Project), the French Research Agency - ANR (PAPER project ANR-12-PDOC-0029-01, SHALCOH project ANR-14-CE21-0007, ANR-15-IDEX-02 and ANR-15-IDEX5, GUMME project ANR-18-CE36-005, ETAPE project ANR - EDeN project ANR -19-CE36-0003-01), the French Agency for Food, Environmental and Occupational Health & Safety - ANSES (CNAP project EST-2016-121, PENDORE project EST-2016-121, HyPAxE project EST-2019/1/039), the Plan Cancer (Canc’Air project), the French Cancer Research Foundation Association de Recherche sur le Cancer – ARC, the French Endowment Fund AGIR for chronic diseases – APMC (projects PRENAPAR and LCI-FOT), the French Endowment Fund for Respiratory Health, the French Fund – Fondation de France","SEPAGES biospecimens are stored at Grenoble University Hospital(CHU-GA) biobank (bb-0033-00069); we would like to thank the whole CRB team, led by Pr. P. Mossuz and Mr. P. Lorimier, and in particular the technicians for the huge work of biospecimens processing and pooling: Mrs. W. Jayar and Mrs. L. Than, as well as Mr. G. Schummer. We thank the SEPAGES study group : E. Eyriey, A. Licinia, A. Vellement (Groupe Hospitalier Mutualiste, Grenoble), I. Pin, P. Hoffmann, E. Hullo, C. Llerena (Grenoble Alpes University Hospital, La Tronche), X. Morin (Clinique des Cèdres, Echirolles), A. Morlot (Clinique Belledonne, Saint-Martin d’Hères), J. Lepeule, S. Lyon-Caen, C. Philippat, I. Pin, J. Quentin, V. Siroux, R. Slama (Grenoble Alpes University, Inserm, CNRS, IAB). We thank Mrs. A. Benlakhryfa, Mrs. L. Borges, Mr. Y. Gioria, clinical research assistants; Mrs. J. Giraud, Mrs. M. Marceau, Mrs. M-P. Martin, nurses; Mrs. E. Charvet, Mrs A. Putod, midwives; Mrs. M. Graca, Mrs. K.Gridel, Mrs. C. Pelini, Mrs Maïlys Barorkers; Mrs. A.Bossant, K. Guichardet, J-T Iltis A. Levanic, C.Martel, E. Quinteiro, S.Raffin neuropsychologists; the staff from Grenoble Center for Clinical Investigation (CIC): Prof. J.-L. Cracowski, Dr. C. Cracowski,Dr. E. Hodaj, Mrs. D. Abry, Mr. N. Gonnet and Mrs. A. Tournier. A warm thank you also to Dr. M. Althuser, Mr. S. Althuser, Dr. F. Camus-Chauvet, Mr. P. Dusonchet, Mrs. S. Dusonchet, Dr. L. Emery, Mrs. P.Fabbrizio, Prof. P. Hoffmann, Dr. D. Marchal André, Dr. X. Morin, Dr. E.Opoix, Dr. L. Pacteau, Dr. P. Rivoire, Mrs. A. Royannais, Dr. C.Tomasella, Dr. T. Tomasella, Dr. D. Tournadre, Mr. P. Viossat, Mrs. E.Volpi, Mrs. S. Rey, Dr. E. Warembourg and clinicians from Grenoble University Hospital for their support in the recruitment of the study volunteers. We also thank Mrs. A. Buchet, Mrs. SF. Caraby, Dr. J-N.Canonica, Mrs. J. Dujourdil, Dr. E. Eyriey, Prof. P. Hoffmann, Mrs. M.Jeannin, Mrs. A. Licina, Dr. X. Morin, Mrs. A. Nicolas, and all midwives from the four maternity wards of Grenole uran aras. SEPAGES data are stored thanks to Inserm RE-CO-NAI platform funded by Commissariat Général à l’Investissement, with the implication of Sophiede Visme (Inserm DSI). Many thanks to Dr. M.A. Charles, RE-CO-NAI coordinator, for her support. Finally, and importantly, we would like to express our sincere thanks to participants of the",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -INMA,,INMA,INfancia y Medio Ambiente [Environment and Childhood] Project,,,https://www.proyectoinma.org,,,"INMA – INfancia y Medio Ambiente [Environment and Childhood] Project is a research network of several Spanish groups that created a project with the aim to study the paper of the more relevant environmental pollutants in the air, water and diet during the pregnancy and beginning of life, and their effects in the growth and develo",,Population cohort,,Longitudinal,,,,Prospective,,,2242,1600,Spain,"Gipuzkoa,Barcelona,Valencia","Prenatal,Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years)",,,2003,2008,,,,,,Continuous,Released once data collected and cleaned,No,,,,,,https://doi.org/10.1093/ije/dyr054,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ELFE,,ELFE,"Etude Longitudinale Française depuis l'Enfa"" (French longitudinal study of children)",,National,https://www.elfe-france.fr/en/,INSERM,,"ELFE is the first French national birth cohort. Its objective is to study determinants of the development, health and socialization of children from birth to adulthood through a multidisciplinary approach. A total of 18 329 children were recruited at birth in a random sample of maternity units in metropolitan France during 25 selected days of 2011 spread over the year. Participation rates at the age 2-month, 1- and 2-year and 3.5-year parental interviews were 92%, 86%, 82% and 80%, respectively, of contacted participants. The ELFE has an open-data policy after an 18-month exclusivity period following each release of new data. The data-access policy, study protocols, questionnaires and data catalogue can be found online: [https://www.ELFE-france.fr/en/].",,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,18329,,France,,,,,2011,2011,,,,,,Continuous,,yes,,health or medical or biomedical research,,"- Submission of the project proposal to the cohort PI (Marie-Aline Charles) +INMA,,INMA,INfancia y Medio Ambiente [Environment and Childhood] Project,,,https://www.proyectoinma.org,,,"INMA – INfancia y Medio Ambiente [Environment and Childhood] Project is a research network of several Spanish groups that created a project with the aim to study the paper of the more relevant environmental pollutants in the air, water and diet during the pregnancy and beginning of life, and their effects in the growth and develo",,Population cohort,,Longitudinal,,,,Prospective,,,2242,1600,Spain,"Gipuzkoa,Barcelona,Valencia","Prenatal,Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years)",,,,,2003,2008,,,,,,Continuous,Released once data collected and cleaned,No,,,,,,https://doi.org/10.1093/ije/dyr054,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ELFE,,ELFE,"Etude Longitudinale Française depuis l'Enfa"" (French longitudinal study of children)",,National,https://www.elfe-france.fr/en/,INSERM,,"ELFE is the first French national birth cohort. Its objective is to study determinants of the development, health and socialization of children from birth to adulthood through a multidisciplinary approach. A total of 18 329 children were recruited at birth in a random sample of maternity units in metropolitan France during 25 selected days of 2011 spread over the year. Participation rates at the age 2-month, 1- and 2-year and 3.5-year parental interviews were 92%, 86%, 82% and 80%, respectively, of contacted participants. The ELFE has an open-data policy after an 18-month exclusivity period following each release of new data. The data-access policy, study protocols, questionnaires and data catalogue can be found online: [https://www.ELFE-france.fr/en/].",,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,18329,,France,,,,,,,2011,2011,,,,,,Continuous,,yes,,health or medical or biomedical research,,"- Submission of the project proposal to the cohort PI (Marie-Aline Charles) - Approval of the project by Elfe data access committee (takes 2 weeks)​ - Signature of a data access agreement - Data made available for analysis by Lucinda (credentials will be sent to the person requesting access to the",,https://doi.org/10.1093/ije/dyz227,,,"The Ministries of the Environment, Health and Research provided initial funding for the ELFE cohort. The funding for the first 5 years of childhood follow-up was obtained from the national ‘Investment for the Future’ research funding program for a joint project bringing together the ELFE and Epipag",,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NBC1967-1976,,,NBC1967-1976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -SWS,,SWS,Southampton Women’,,"pre-conception, pregnancy, childhood, growth, asthma, cardiovascular, mental health",https://www.mrc.soton.ac.uk/sws/,Soton,,"SWS is a population-based prospective birth cohort study of 12 583, initially non-pregnant, women aged 20–34 years, living in the city of Southampton, UK. Assessments of lifestyle, diet and anthropometry were done at study entry in 1998–2002. Women who subsequently became pregnant with singleton pregnancies were followed up during pregnancy; and their 3158 offspring have been studied i",src@mrc.soton.ac.uk,Birth cohort,,Longitudinal,,,,Prospective,,,12583,,United Kingdom of Great Britain and Northern Ireland (the),,"Young adult (18-24 years),Adult (25-44 years)",,,1998,2002,,,,,,Continuous,Upon completion of the procedures outlined above,No,,,,"Initial approach to the cohort contact with a short proposal. This will be sent to the SWS oversight group. If approved, data agreements need to be completed",,https://doi.org/10.1093/ije/dyi202,,,"The SWS is supported by grants from the Medical Research Council, National Institute for Health Research Southampton Biomedical Research Centre, British Heart Foundation, University of Southampton and University Hospital Southampton National Health Service Foundation Trust, and the European Union’s Seventh Framework Programme (FP7/2007-2013), project EarlyNutrition (grant 289346) and from the European Union's Horizon 2020 research and innovation programme (LIFECYCLE, grant agreement No 733206). Study participants were drawn from a cohort study funded by the Medical Research Council and the Dunhill Medica",The authors are grateful to the women of Southampton who gave their time to take part in the Southampton Women’s Survey and to the research nurses and other staff who collected and processed t,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Immune-Image_Task_6.2a,,Task 6.2a,Serial CD8 PET imaging in cancer patients before and during immune checkpoint inhibition,,,,UMCG,,"Upfront imaging of CD8 (Pandit-Taskar N. et al., J Nucl Med 2018, abstract) is feasible in patients, however data on serial imaging are lacking. When T-cells encounter tumour antigens they are activated and promote lymphocyte proliferation and recruitment to the tumour site. This inflammatory response increases blood flow and vascular permeability, which can be measured with dynamic contrast enhanced (DCE) MRI. Early after starting treatment, immune activation will also lead to T-cell tumour infiltration and increased tumour cellularity, which potentially can be quantified by diffusion weighted imaging (DWI) and radiomics features derived from computational image analysis. Preliminary data suggests that texture measures can capture the spatial heterogeneity of different sites of disease and predict treatment resistance and progression-free survival in the metastatic setting. Moreover, MRI measurements that integrate whole tumour volumetry, diffusion-weighted imaging (ADC) and radiomics (texture analysis) (Larkin T.J. et al.; 2014, Booth T.C. et al., 2017; Newman A.M. et al., 2015) may provide a therapy response assessment. Preliminary data suggests that texture measures can capture the spatial heterogeneity of metastases and predict treatment resistance and progression-free survival in patients with ovarian cancer. Aim Demonstrate and validate (1) PET with a 89Zrlabelled anti-CD8 minibody, to visualize serially the presence of CD8 expressing T-lymphocytes in cancer patients receiving CIT; (2) contribution of MRI measurements of intra- and inter-site tumour heterogeneity. Study design In patients with potential relevant indication for treatment with immune checkpoint inhibition treatment (CIT) (e.g. melanoma or NSCLC) and at least one accessible lesion for biopsy, [89Zr]Zr-anti-CD8 PET imaging (1.5 mg anti human CD8 minibody [89Zr]Zr-Df-IAB22M2C, 37 MBq) will be injected and imaging will be performed before the start and 7 days before the 3rd checkpoint inhibitor administration. Whole body [89Zr]Zr-anti-CD8 distribution will be determined: tumour and normal organ radioactive tracer uptake will be quantified as standardized uptake values (SUV). Patients will undergo multi-parametric MR before and after the 1st cycle and before the 3rd cycle (drugs administered on 2-3 weekly cycles). The third and final MRI will be performed within ~9 weeks after the start of treatment, or on disease progression, whichever is sooner. All metastases determined to be suitable for MR imaging will be evaluated to assess differential tumour response and pseudo-progression. Patients will also undergo contrast-enhanced CT to determine tumour response using iRECIST. Tumour biopsies will be extensively analysed. Statistical considerations: Initial feasibility will be shown in 12 patients. Depending on the tumour type chosen the number of patients required may be increased in order to have sufficient patients with a tumour response to immune checkpoint inhibitor treatment.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +NBC1967-1976,,,NBC1967-1976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +SWS,,SWS,Southampton Women’,,"pre-conception, pregnancy, childhood, growth, asthma, cardiovascular, mental health",https://www.mrc.soton.ac.uk/sws/,Soton,,"SWS is a population-based prospective birth cohort study of 12 583, initially non-pregnant, women aged 20–34 years, living in the city of Southampton, UK. Assessments of lifestyle, diet and anthropometry were done at study entry in 1998–2002. Women who subsequently became pregnant with singleton pregnancies were followed up during pregnancy; and their 3158 offspring have been studied i",src@mrc.soton.ac.uk,Birth cohort,,Longitudinal,,,,Prospective,,,12583,,United Kingdom of Great Britain and Northern Ireland (the),,"Young adult (18-24 years),Adult (25-44 years)",,,,,1998,2002,,,,,,Continuous,Upon completion of the procedures outlined above,No,,,,"Initial approach to the cohort contact with a short proposal. This will be sent to the SWS oversight group. If approved, data agreements need to be completed",,https://doi.org/10.1093/ije/dyi202,,,"The SWS is supported by grants from the Medical Research Council, National Institute for Health Research Southampton Biomedical Research Centre, British Heart Foundation, University of Southampton and University Hospital Southampton National Health Service Foundation Trust, and the European Union’s Seventh Framework Programme (FP7/2007-2013), project EarlyNutrition (grant 289346) and from the European Union's Horizon 2020 research and innovation programme (LIFECYCLE, grant agreement No 733206). Study participants were drawn from a cohort study funded by the Medical Research Council and the Dunhill Medica",The authors are grateful to the women of Southampton who gave their time to take part in the Southampton Women’s Survey and to the research nurses and other staff who collected and processed t,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Immune-Image_Task_6.2a,,Task 6.2a,Serial CD8 PET imaging in cancer patients before and during immune checkpoint inhibition,,,,UMCG,,"Upfront imaging of CD8 (Pandit-Taskar N. et al., J Nucl Med 2018, abstract) is feasible in patients, however data on serial imaging are lacking. When T-cells encounter tumour antigens they are activated and promote lymphocyte proliferation and recruitment to the tumour site. This inflammatory response increases blood flow and vascular permeability, which can be measured with dynamic contrast enhanced (DCE) MRI. Early after starting treatment, immune activation will also lead to T-cell tumour infiltration and increased tumour cellularity, which potentially can be quantified by diffusion weighted imaging (DWI) and radiomics features derived from computational image analysis. Preliminary data suggests that texture measures can capture the spatial heterogeneity of different sites of disease and predict treatment resistance and progression-free survival in the metastatic setting. Moreover, MRI measurements that integrate whole tumour volumetry, diffusion-weighted imaging (ADC) and radiomics (texture analysis) (Larkin T.J. et al.; 2014, Booth T.C. et al., 2017; Newman A.M. et al., 2015) may provide a therapy response assessment. Preliminary data suggests that texture measures can capture the spatial heterogeneity of metastases and predict treatment resistance and progression-free survival in patients with ovarian cancer. Aim Demonstrate and validate (1) PET with a 89Zrlabelled anti-CD8 minibody, to visualize serially the presence of CD8 expressing T-lymphocytes in cancer patients receiving CIT; (2) contribution of MRI measurements of intra- and inter-site tumour heterogeneity. Study design In patients with potential relevant indication for treatment with immune checkpoint inhibition treatment (CIT) (e.g. melanoma or NSCLC) and at least one accessible lesion for biopsy, [89Zr]Zr-anti-CD8 PET imaging (1.5 mg anti human CD8 minibody [89Zr]Zr-Df-IAB22M2C, 37 MBq) will be injected and imaging will be performed before the start and 7 days before the 3rd checkpoint inhibitor administration. Whole body [89Zr]Zr-anti-CD8 distribution will be determined: tumour and normal organ radioactive tracer uptake will be quantified as standardized uptake values (SUV). Patients will undergo multi-parametric MR before and after the 1st cycle and before the 3rd cycle (drugs administered on 2-3 weekly cycles). The third and final MRI will be performed within ~9 weeks after the start of treatment, or on disease progression, whichever is sooner. All metastases determined to be suitable for MR imaging will be evaluated to assess differential tumour response and pseudo-progression. Patients will also undergo contrast-enhanced CT to determine tumour response using iRECIST. Tumour biopsies will be extensively analysed. Statistical considerations: Initial feasibility will be shown in 12 patients. Depending on the tumour type chosen the number of patients required may be increased in order to have sufficient patients with a tumour response to immune checkpoint inhibitor treatment.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, RAINE,,RAINE,The West Australian Pregnancy Cohort,,,https://rainestudy.org.au/,UWA,,"The Raine Study is one of the most comprehensive pregnancy birth cohort studies in the world. It is a rich resource for the study of environmental and genetic factors that affect health and development and can provide unique insights into the natural history of human diseases. Between May 1989 and November 1991, 2900 pregnant women were recruited into the study and their children have been assessed intensively over the past three decades. Prospective longitudinal data has been collected at multiple time-points over pregnancy, infancy, childhood, adolescence and young adulthood and there is broad multidisciplinary data on physical, mental and social aspects of development. -The main cohort (Gen2) are now almost 30 years of age and maintain a keen sense of commitment to the Raine Study. Their data has been genotyped and data linkage with other publicly held datasets (e.g. school results and hospital records) is available. There are stored biological samples and established collaborative research networks across a wide variety of disciplines.",,Population cohort,,Longitudinal,,,,Prospective,,,2868,,,Western Australia,,,,1989,2020,,,,,,Continuous,Upon completion of follow-up,,,health or medical or biomedical research,,1. Submit a project proposal 2. Approval of the project ​3. Sign a data access agreement (DAA) 4. Data access with credentials (via DAT,,https://doi.org/10.5694/mja12.10698,,,"The Raine Study has been funded by program and project grants from the Australian National Health and Medical Research Council, the Commonwealth Scientific and Industrial Research Organisation, Healthway and the Lions Eye Institute in Western Australia. The Raine Study Gen2-17 year follow-up was funded by the NHMRC Program Grant (Stanley et al, ID 353514) and the GWAS data from the Gen2-17 year follow-up was funded by the NHMRC (Huang et al, ID 1059711) grant. The Raine Study participation in LIFECYCLE was funded by a grant from the National Health and Medical Research Council, Australia (GNT114285). The University of Western Australia (UWA), Curtin University, the Raine Medical Research Foundation, the Telethon Kids Institute, the Women’s and Infant’s Research Foundation (KEMH), Murdoch University, The University of Notre Dame Australia and Edith Cowan University provide funding for the Core Management of the Raine Study. REF is a recipient of a National Health and Medical Research Council Early Ca",,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -FEF,,FEF,Fibrefects - Grain fibre modification for gut-mediated health effects,,"RCT, Postprandial, Glucose metabolism, Short chain fatty acids, Rye, Wheat, Wholegrain, Bran, Bioprocessing, Gastrointestinal symptoms",,UEF,,,,,,Longitudinal,,,,Prospective,,,25,25,Finland,,"Adult (25-44 years),Middle-aged (45-64 years)",,,2011,2011,,,,,,Closed dataset,,no,,health or medical or biomedical research,,,,https://doi.org/10.1186/1475-2891-13-104,https://doi.org/10.1093/ajcn/nqy394,,"This study was carried out as a part of the FIBREFECTS (Grain fiber modification for gut mediated health effects) funded mainly by TEKES – The Finnish Funding Agency for Technology and Innovation – and to a smaller extent by Oy Karl Fazer Ab, Vaasan Oy, and Ravintoraisio Oy. The study was supported by a grant from Raisio Plc Research Foundation to J. Lappi, Academy of Finland to K. Poutanen, the Nordic Centre of Excellence on ‘Systems biology in controlled dietary interventions and cohort studies’ (SYSDIET; 070014) to M. Kolehmainen, the Nordic Centre of Excellence on ‘Nordic health – whole grain food (HELGA; 070015) to H. Mykkänen, and the Danish Strategic Research Council, ‘Concepts for enhanced butyrate production to improve colonic health an","Authors thank Erja Kinnunen, Eeva Lajunen and Lilli Lotvonen for their excellent technical assistance during the intervention.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -KANC,,KANC,Kaunas cohort,,,,VMU,,,,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,4000,4000,Lithuania,,"Prenatal,Child (2-12 years),Adolescent (13-17 years)",,,2007,,,,,,,,,,,health or medical or biomedical research,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +The main cohort (Gen2) are now almost 30 years of age and maintain a keen sense of commitment to the Raine Study. Their data has been genotyped and data linkage with other publicly held datasets (e.g. school results and hospital records) is available. There are stored biological samples and established collaborative research networks across a wide variety of disciplines.",,Population cohort,,Longitudinal,,,,Prospective,,,2868,,,Western Australia,,,,,,1989,2020,,,,,,Continuous,Upon completion of follow-up,,,health or medical or biomedical research,,1. Submit a project proposal 2. Approval of the project ​3. Sign a data access agreement (DAA) 4. Data access with credentials (via DAT,,https://doi.org/10.5694/mja12.10698,,,"The Raine Study has been funded by program and project grants from the Australian National Health and Medical Research Council, the Commonwealth Scientific and Industrial Research Organisation, Healthway and the Lions Eye Institute in Western Australia. The Raine Study Gen2-17 year follow-up was funded by the NHMRC Program Grant (Stanley et al, ID 353514) and the GWAS data from the Gen2-17 year follow-up was funded by the NHMRC (Huang et al, ID 1059711) grant. The Raine Study participation in LIFECYCLE was funded by a grant from the National Health and Medical Research Council, Australia (GNT114285). The University of Western Australia (UWA), Curtin University, the Raine Medical Research Foundation, the Telethon Kids Institute, the Women’s and Infant’s Research Foundation (KEMH), Murdoch University, The University of Notre Dame Australia and Edith Cowan University provide funding for the Core Management of the Raine Study. REF is a recipient of a National Health and Medical Research Council Early Ca",,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +FEF,,FEF,Fibrefects - Grain fibre modification for gut-mediated health effects,,"RCT, Postprandial, Glucose metabolism, Short chain fatty acids, Rye, Wheat, Wholegrain, Bran, Bioprocessing, Gastrointestinal symptoms",,UEF,,,,,,Longitudinal,,,,Prospective,,,25,25,Finland,,"Adult (25-44 years),Middle-aged (45-64 years)",,,,,2011,2011,,,,,,Closed dataset,,no,,health or medical or biomedical research,,,,https://doi.org/10.1186/1475-2891-13-104,https://doi.org/10.1093/ajcn/nqy394,,"This study was carried out as a part of the FIBREFECTS (Grain fiber modification for gut mediated health effects) funded mainly by TEKES – The Finnish Funding Agency for Technology and Innovation – and to a smaller extent by Oy Karl Fazer Ab, Vaasan Oy, and Ravintoraisio Oy. The study was supported by a grant from Raisio Plc Research Foundation to J. Lappi, Academy of Finland to K. Poutanen, the Nordic Centre of Excellence on ‘Systems biology in controlled dietary interventions and cohort studies’ (SYSDIET; 070014) to M. Kolehmainen, the Nordic Centre of Excellence on ‘Nordic health – whole grain food (HELGA; 070015) to H. Mykkänen, and the Danish Strategic Research Council, ‘Concepts for enhanced butyrate production to improve colonic health an","Authors thank Erja Kinnunen, Eeva Lajunen and Lilli Lotvonen for their excellent technical assistance during the intervention.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +KANC,,KANC,Kaunas cohort,,,,VMU,,,,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,4000,4000,Lithuania,,"Prenatal,Child (2-12 years),Adolescent (13-17 years)",,,,,2007,,,,,,,,,,,health or medical or biomedical research,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, NFBC1986,,NFBC1986,Northern Finland Birth Cohort 1986,,,https://www.oulu.fi/nfbc,UOULU,,"NFBC1986 is a longitudinal one-year birth cohort study from an unselected population. The cohort included all the mothers (N=9362) with children whose expected date of birth felt between July 1st 1985 - June 30th 1986 in the two northernmost provinces on Finland (Oulu and Lapland). A small percentage of the births occurred towards the end of June 1985 and begin of July 1986. -The number of deliveries in the cohort was 9362, which was 99% of all the deliveries taking place in the target period of the cohort. Altogether 9479 children were born into the cohort, 9432 of them live born. The original data have been supplemented by data collected with postal questionnaires at the ages of 7, 8 and 16 years and various hospital records and statistical register data. The latest data collection with clinical examinations and questionnaires was at the age of 33 years.",,Birth cohort,,Longitudinal,,,,Prospective,,,9479,,Finland,"Lapland,North Ostrobothnia","Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years)",,,1985,,,,,,,Closed dataset,,yes,,health or medical or biomedical research,,https://www.oulu.fi/nfbc/materialrequest,,,"https://doi.org/10.1111/j.1365-3016.1997.tb00007.x,https://doi.org/10.1111/j.1471-0528.1993.tb12971.x",,"EU QLG1-CT-2000-01643 (EUROBLCS) Grant no. E51560, NorFA Grant no. 731, 20056, 30167, USA / NIH 2000 G DF682 Grant no. 50945",We thank all cohort members and researchers who have participated in the study. We also wish acknowledge the work of the NFBC project center.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -PSYCONN,,PSYCONN,Psychosis Cohort Northern Netherlands,Psychose Cohort Noord Nederland,schizophrenia schizofrenie psychotic psychotisch psychose databank Nederland PHAMOUS EPO PROGRS PROGR-S RQMIS RQ-MIS,https://ipec-project.com,"GGZ Drenthe,GGZ Friesland,Lentis Research,UMCG","GGZ Drenthe,GGZ Friesland,Lentis Research,UMCG","PSYCONN (=Psychosis Cohort Northern Netherlands) is a combination of 3 datasets from the northern part of the Netherlands; PROGR-S (=Psychosis Recent Onset GRoningen Survey), PHAMOUS (=Pharmacotherapy Outcome and Monitoring Survey) and RQ-MIS (=RoQua Management Information System). Also, see https://umcgresearchdatacatalogue.nl/UMCG/ssr-catalogue/cohorts/MindLines. PROGR-S, initiated in 1997 without an age restriction, collects diagnostic measurements of patients with a suspected recent-onset psychotic episode or recurrent psychotic episode not diagnosed as such before. PHAMOUS, initiated in 2006, contains follow-up data of patients ≥18 years of age with a psychotic disorder who receive care from mental health care institutions in the northern part of the Netherlands (University Medical Center Groningen (UMCG)/University Center for Psychiatry (UCP), Lentis, GGZ Drenthe or GGZ Friesland). PROGR-S and PHAMOUS are both ongoing naturalistic prospective cohort studies. PHAMOUS participants will only be included hey are also enrolled in PROGR-S. RQ-MIS contains health care consumption, socio-demographic, and diagnosis data. PSYCONN baseline data is collected from PROGR-S and RQ-MIS. PSYCONN outcome data is collected from PHAMOUS, RQ-MIS, and an additional medical records file search.",ipec@umcg.nl,"Clinical cohort",,Longitudinal,,,,,,,1000,,Netherlands (the),"Groningen,Friesland,Drenthe","Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)",,,1998,2018,,,,,,Periodically,,,UMCG,,,"IPEC set up a virtual databank and implemented a technical infrastructure for remote federated analysis of individual-level data of psychosis patients. With this platform, individual patient data remains stored on local servers of participating institutions and individual patient data will not be transported to one central site. +The number of deliveries in the cohort was 9362, which was 99% of all the deliveries taking place in the target period of the cohort. Altogether 9479 children were born into the cohort, 9432 of them live born. The original data have been supplemented by data collected with postal questionnaires at the ages of 7, 8 and 16 years and various hospital records and statistical register data. The latest data collection with clinical examinations and questionnaires was at the age of 33 years.",,Birth cohort,,Longitudinal,,,,Prospective,,,9479,,Finland,"Lapland,North Ostrobothnia","Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years)",,,,,1985,,,,,,,Closed dataset,,yes,,health or medical or biomedical research,,https://www.oulu.fi/nfbc/materialrequest,,,"https://doi.org/10.1111/j.1365-3016.1997.tb00007.x,https://doi.org/10.1111/j.1471-0528.1993.tb12971.x",,"EU QLG1-CT-2000-01643 (EUROBLCS) Grant no. E51560, NorFA Grant no. 731, 20056, 30167, USA / NIH 2000 G DF682 Grant no. 50945",We thank all cohort members and researchers who have participated in the study. We also wish acknowledge the work of the NFBC project center.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +PSYCONN,,PSYCONN,Psychosis Cohort Northern Netherlands,Psychose Cohort Noord Nederland,schizophrenia schizofrenie psychotic psychotisch psychose databank Nederland PHAMOUS EPO PROGRS PROGR-S RQMIS RQ-MIS,https://ipec-project.com,"GGZ Drenthe,GGZ Friesland,Lentis Research,UMCG","GGZ Drenthe,GGZ Friesland,Lentis Research,UMCG","PSYCONN (=Psychosis Cohort Northern Netherlands) is a combination of 3 datasets from the northern part of the Netherlands; PROGR-S (=Psychosis Recent Onset GRoningen Survey), PHAMOUS (=Pharmacotherapy Outcome and Monitoring Survey) and RQ-MIS (=RoQua Management Information System). Also, see https://umcgresearchdatacatalogue.nl/UMCG/ssr-catalogue/cohorts/MindLines. PROGR-S, initiated in 1997 without an age restriction, collects diagnostic measurements of patients with a suspected recent-onset psychotic episode or recurrent psychotic episode not diagnosed as such before. PHAMOUS, initiated in 2006, contains follow-up data of patients ≥18 years of age with a psychotic disorder who receive care from mental health care institutions in the northern part of the Netherlands (University Medical Center Groningen (UMCG)/University Center for Psychiatry (UCP), Lentis, GGZ Drenthe or GGZ Friesland). PROGR-S and PHAMOUS are both ongoing naturalistic prospective cohort studies. PHAMOUS participants will only be included hey are also enrolled in PROGR-S. RQ-MIS contains health care consumption, socio-demographic, and diagnosis data. PSYCONN baseline data is collected from PROGR-S and RQ-MIS. PSYCONN outcome data is collected from PHAMOUS, RQ-MIS, and an additional medical records file search.",ipec@umcg.nl,Clinical cohort,,Longitudinal,,,,,,,1000,,Netherlands (the),"Groningen,Friesland,Drenthe","Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)",,,,,1998,2018,,,,,,Periodically,,,UMCG,,,"IPEC set up a virtual databank and implemented a technical infrastructure for remote federated analysis of individual-level data of psychosis patients. With this platform, individual patient data remains stored on local servers of participating institutions and individual patient data will not be transported to one central site. Contact IPEC via ipec@umcg.nl to receive more information about access to the virtual databank.",,,,,"IPEC was supported by the 2020 SIRS Research Harmonization Group Award which included a grant in the amount of $5000 USD to Prof. Wim Veling and Prof. Craig Morgan; an internal MD-PhD research grant of the University Medical Center Groningen (grant number 18-41) to Vera Brink, MSc; a grant in the amount of 400,000 DKK of the Capital Regions Research council to Dr Nikolai Albert; and the participating institutions (Lentis Psychiatric Institute, GGZ Drenthe, GGZ Friesland, University Center Psychiatry of University Medical Center Groningen, Bispebjerg hospital, Psychiatric Hospital Risskov, and Psychiatric Centre Copenhagen).","IPEC wishes to acknowledge the services of all the study participants, staff, research groups, and institutions collaborating in IPEC, and of MOLGENIS and RoQua, who helped build and maintain the technical infrastructure.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -CRC-Cohort,,CRC-Cohort,Colorectal Cancer Cohort,,,,BBMRI-ERIC,,"The colorectal cancer cohort (CRC-Cohort) was developed by BBMRI-ERIC, its National Nodes and BBMRI-ERIC partner biobanks within the EU-funded project ADOPT BBMRI-ERIC (H2020) as a use case for piloting access to European biobanks. It became a permanent asset of the BBMRI-ERIC infrastructure after the end of the ADOPT project. The CRC-Cohort collection is a joint long-term European endeavor, which enables existing, well-established biobanks to connect with BBMRI-ERIC and obtain increased recognition and visibility along with new users and data.",petr.holub@bbmri-eric.eu,,,Cross-sectional,,,,Retrospective,,,10500,,,,,,,,,,,,,,,,,,"general research use,health or medical or biomedical research,disease specific research",,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -RS3,,Rotterdam Study third cohort,"Rotterdam Study, third cohort",,Biomarkers · Cancer and related diseases · Cardiovascular diseases · Cohort study · Dermatological diseases · Endocrine diseases · Epidemiologic methods · Genetic and molecular epidemiology · Nutrition and lifestyle epidemiology · Liver diseases · Neurological diseases · Oncology · Ophthalmic diseases · Otolaryngological diseases · Pharmacoepidemiology · Population imag,https://www.ergo-onderzoek.nl/,EMC,,"The Rotterdam Study is an ongoing prospective cohort study that started in 1990 in the city of Rotterdam, The Netherlands. The study aims to unravel etiology, preclinical course, natural history and potential targets for intervention for chronic diseases in mid-life and late-life.",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,6057,3932,Netherlands (the),Rotterdam,"Middle-aged (45-64 years),Aged (65+ years)",,,2006,,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,health or medical or biomedical research,,,,https://doi.org/10.1007/s10654-020-00640-5,"https://doi.org/10.1007/s10654-009-9386-z,https://doi.org/10.1007/BF00145007,https://doi.org/10.1007/s10654-007-9199-x,https://doi.org/10.1007/s10654-011-9610-5,https://doi.org/10.1007/s10654-013-9866-z,https://doi.org/10.1007/s10654-015-0082-x,https://doi.org/10.1007/s10654-017-0321-4",,"The Rotterdam Study is supported by the Erasmus MC University Medical Center and Erasmus University Rotterdam; The Netherlands Organisation for Scientifc Research (NWO); The Netherlands Organisation for Health Research and Development (ZonMw); the Research Institute for Diseases in the Elderly (RIDE); The Netherlands Genomics Initiative (NGI); the Ministry of Education, Culture and Science; the Ministry of Health, Welfare and Sports; the European Commission (DG XII); and the Municipality of Rotterdam.","The contribution of inhabitants, general practitioners and pharmacists of the Ommoord district to the Rotterdam Study is gratefully acknowledged. The contributions to the Management Team specifcally and the Rotterdam Study at large of the following persons are pivotal to the daily operations of the study and highly appreciated: Jacobus Lubbe, Gabriëlle Bakker, Eric Neeleman, Jeannette Vergeer, Anneke Korving, Pauline van Wijngaarden, Jolande Verkroost – van Heemst, Silvan Licher, Isabel van",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NFBC1966 G0,,NFBC1966 G0,Parents of NFBC1966,,,,UOULU,,,,Population cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -FinnGeDi,,FinnGeDi,Finnish Gestational Diabetes Study,,,,UOULU,,,,Clinical cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MoBa,,MoBa,"The Norwegian Mother, Father and Child Cohort Study",,,https://www.fhi.no/en/studies/moba/,NIPH,,"MoBa is a Norwegian population-based longitudinal cohort study of around 114,500 children, 95,000 mothers and 75,000 fathers. Recruitment of pregnant women attending routine ultrasound examination took place between 1999 and 2009, and MoBa has since grown to become one of the largest population studies in the world. Baseline questionnaires were completed at around 15 weeks’ gestation, and two further prenatal questionnaires were administered at around 17-22 and 30 weeks’ gestation. In addition, fathers completed a questionnaire at around 15’ weeks gestation. Follow-up questionnaires after birth were completed at 6 months, 18 months, 36 months, 5 years, 7 years, and 8 years of age, and data are currently being collected through questionnaires for children aged 13 and 14 years. The purpose of MoBa is to improve our knowledge of diseases and health, by estimating exposure-outcome associations among children and their parents from preconception and pr",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,114000,,Norway,,"Prenatal,Newborn (0-1 months),Child (2-12 years),Adolescent (13-17 years)",,,1999,2008,,,,,,Continuous,Continuously; the most recent release is version 12,Data can be linked to the medical birth registry.,,,,,,https://doi.org/10.1093/ije/dyl170,,,"The Norwegian Mother, Father and Child Cohort Study is supported by the Norwegian Ministry of Health and Care Services and the Ministry of Education and Research.",The authors are grateful to all the participating families in Norway who take part in this on-going cohort study.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -GECKO,,GECKO,The Groningen Expert Center for Kids with Obesity Drenthe cohort,,,https://www.rug.nl/research/portal/datasets/gecko-drenthe-cohort(3e14f7ca-a55d-41d9-9803-19302aa4ea87).html,,,,,Clinical cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +CRC-Cohort,,CRC-Cohort,Colorectal Cancer Cohort,,,,BBMRI-ERIC,,"The colorectal cancer cohort (CRC-Cohort) was developed by BBMRI-ERIC, its National Nodes and BBMRI-ERIC partner biobanks within the EU-funded project ADOPT BBMRI-ERIC (H2020) as a use case for piloting access to European biobanks. It became a permanent asset of the BBMRI-ERIC infrastructure after the end of the ADOPT project. The CRC-Cohort collection is a joint long-term European endeavor, which enables existing, well-established biobanks to connect with BBMRI-ERIC and obtain increased recognition and visibility along with new users and data.",petr.holub@bbmri-eric.eu,,,Cross-sectional,,,,Retrospective,,,10500,,,,,,,,,,,,,,,,,,,,"general research use,health or medical or biomedical research,disease specific research",,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +RS3,,Rotterdam Study third cohort,"Rotterdam Study, third cohort",,Biomarkers · Cancer and related diseases · Cardiovascular diseases · Cohort study · Dermatological diseases · Endocrine diseases · Epidemiologic methods · Genetic and molecular epidemiology · Nutrition and lifestyle epidemiology · Liver diseases · Neurological diseases · Oncology · Ophthalmic diseases · Otolaryngological diseases · Pharmacoepidemiology · Population imag,https://www.ergo-onderzoek.nl/,EMC,,"The Rotterdam Study is an ongoing prospective cohort study that started in 1990 in the city of Rotterdam, The Netherlands. The study aims to unravel etiology, preclinical course, natural history and potential targets for intervention for chronic diseases in mid-life and late-life.",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,6057,3932,Netherlands (the),Rotterdam,"Middle-aged (45-64 years),Aged (65+ years)",,,,,2006,,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,health or medical or biomedical research,,,,https://doi.org/10.1007/s10654-020-00640-5,"https://doi.org/10.1007/s10654-009-9386-z,https://doi.org/10.1007/BF00145007,https://doi.org/10.1007/s10654-007-9199-x,https://doi.org/10.1007/s10654-011-9610-5,https://doi.org/10.1007/s10654-013-9866-z,https://doi.org/10.1007/s10654-015-0082-x,https://doi.org/10.1007/s10654-017-0321-4",,"The Rotterdam Study is supported by the Erasmus MC University Medical Center and Erasmus University Rotterdam; The Netherlands Organisation for Scientifc Research (NWO); The Netherlands Organisation for Health Research and Development (ZonMw); the Research Institute for Diseases in the Elderly (RIDE); The Netherlands Genomics Initiative (NGI); the Ministry of Education, Culture and Science; the Ministry of Health, Welfare and Sports; the European Commission (DG XII); and the Municipality of Rotterdam.","The contribution of inhabitants, general practitioners and pharmacists of the Ommoord district to the Rotterdam Study is gratefully acknowledged. The contributions to the Management Team specifcally and the Rotterdam Study at large of the following persons are pivotal to the daily operations of the study and highly appreciated: Jacobus Lubbe, Gabriëlle Bakker, Eric Neeleman, Jeannette Vergeer, Anneke Korving, Pauline van Wijngaarden, Jolande Verkroost – van Heemst, Silvan Licher, Isabel van",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +NFBC1966 G0,,NFBC1966 G0,Parents of NFBC1966,,,,UOULU,,,,Population cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +FinnGeDi,,FinnGeDi,Finnish Gestational Diabetes Study,,,,UOULU,,,,Clinical cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +MoBa,,MoBa,"The Norwegian Mother, Father and Child Cohort Study",,,https://www.fhi.no/en/studies/moba/,NIPH,,"MoBa is a Norwegian population-based longitudinal cohort study of around 114,500 children, 95,000 mothers and 75,000 fathers. Recruitment of pregnant women attending routine ultrasound examination took place between 1999 and 2009, and MoBa has since grown to become one of the largest population studies in the world. Baseline questionnaires were completed at around 15 weeks’ gestation, and two further prenatal questionnaires were administered at around 17-22 and 30 weeks’ gestation. In addition, fathers completed a questionnaire at around 15’ weeks gestation. Follow-up questionnaires after birth were completed at 6 months, 18 months, 36 months, 5 years, 7 years, and 8 years of age, and data are currently being collected through questionnaires for children aged 13 and 14 years. The purpose of MoBa is to improve our knowledge of diseases and health, by estimating exposure-outcome associations among children and their parents from preconception and pr",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,114000,,Norway,,"Prenatal,Newborn (0-1 months),Child (2-12 years),Adolescent (13-17 years)",,,,,1999,2008,,,,,,Continuous,Continuously; the most recent release is version 12,Data can be linked to the medical birth registry.,,,,,,https://doi.org/10.1093/ije/dyl170,,,"The Norwegian Mother, Father and Child Cohort Study is supported by the Norwegian Ministry of Health and Care Services and the Ministry of Education and Research.",The authors are grateful to all the participating families in Norway who take part in this on-going cohort study.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +GECKO,,GECKO,The Groningen Expert Center for Kids with Obesity Drenthe cohort,,,https://www.rug.nl/research/portal/datasets/gecko-drenthe-cohort(3e14f7ca-a55d-41d9-9803-19302aa4ea87).html,,,,,Clinical cohort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ALSPAC,,ALSPAC,Avon Longitudinal Study of Parents and Children,,,http://www.bristol.ac.uk/alspac/,UOB,,"Based at the University of Bristol, the Avon Longitudinal Study of Parents and Children (ALSPAC), also known as Children of the 90s, is a world-leading birth cohort study. Between April 1991 and December 1992 we recruited more than 14,000 pregnant women into the study and these women (some of whom had two pregnancies or multiple births during the recruitment period), the children arising from the pregnancy, and their partners have been followed up intensively over two decades. -We are the most detailed study of its kind in the world and we provide the international research community with a rich resource for the study of the environmental and genetic factors that affect a person’s health and development. Through our research we aim to inform policy and practices that will provide a better life for future gene",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,14541,,United Kingdom of Great Britain and Northern Ireland (the),,,,,1990,1992,,,,,,Closed dataset,Released once data collected and cleaned,,,,"""not for profit, non commercial use only""",,,https://doi.org/10.1093/ije/dys064,https://doi.org/10.1093/ije/dys066,,"The UK Medical Research Council and Wellcome (Grant ref: 217065/Z/19/Z) and the University of Bristol provide core support for ALSPAC. This publication is the work of the authors and will serve as guarantors for the contents of this paper.? +We are the most detailed study of its kind in the world and we provide the international research community with a rich resource for the study of the environmental and genetic factors that affect a person’s health and development. Through our research we aim to inform policy and practices that will provide a better life for future gene",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,14541,,United Kingdom of Great Britain and Northern Ireland (the),,,,,,,1990,1992,,,,,,Closed dataset,Released once data collected and cleaned,,,,"""not for profit, non commercial use only""",,,https://doi.org/10.1093/ije/dys064,https://doi.org/10.1093/ije/dys066,,"The UK Medical Research Council and Wellcome (Grant ref: 217065/Z/19/Z) and the University of Bristol provide core support for ALSPAC. This publication is the work of the authors and will serve as guarantors for the contents of this paper.? In addition, you are expected to acknowledge the grant(s) which supported the collection of the primary exposure(s) and outcome(s) used in your study and any other grants in the checklist, which are pertinent to your study. The following sentences should be included with the above section: ?A comprehensive list of grants funding (PDF, 330KB) is available on the ALSPAC website. This research was specifically funded by .","We are extremely grateful to all the families who took part in this study, the midwives for their help in recruiting them, and the whole ALSPAC team, which includes interviewers, computer and laboratory technicians, clerical workers, research scientists, volunteers, managers, receptionists and nurses.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -CELSPAC-TNG,,CELSPAC-TNG,Central European Longitudinal Study of Parents and Children: The Next Generation,,"EXPOSOME, Central Europe",https://www.celspac.cz/tng,RECETOX,,This prospective birth cohort is designed to follow up 7000 children from their prenatal period to adolescence with the aim of assessing EXPOSOME factors potentially affecting children health.,,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,950,900,Czechia,,,,,2018,,,,,,,Continuous,,,,health or medical or biomedical research,,"If you are interested in using available data from the ELSPAC.CZ database, please follow these steps: 1) Send your request to info@celspac.cz. 2) You will be contacted by the project manager who will discuss and, if necessary, work up your project plan. 3) The ELSPAC Executive Council will assess the proposed project plans with regard to their quality and feasibility and will recommend the selected ones to be carried out. 4) If your request is approved, a contract will be concluded between the Faculty of Science at Masaryk University and your institution. 5) Data in the agreed form and extent will be provided based on this contract.",,,,,"The RECETOX Research Infrastructure (TNG is included) is supported by the Ministry of Education, Youth and Sports of the Czech Republic (LM2018121)",The authors are grateful to all participants of the TNG cohort.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -RS2,,Rotterdam Study second cohort,"Rotterdam Study, second cohort",,Biomarkers · Cancer and related diseases · Cardiovascular diseases · Cohort study · Dermatological diseases · Endocrine diseases · Epidemiologic methods · Genetic and molecular epidemiology · Nutrition and lifestyle epidemiology · Liver diseases · Neurological diseases · Oncology · Ophthalmic diseases · Otolaryngological diseases · Pharmacoepidemiology · Population imag,https://www.ergo-onderzoek.nl/,EMC,,"The Rotterdam Study is an ongoing prospective cohort study that started in 1990 in the city of Rotterdam, The Netherlands. The study aims to unravel etiology, preclinical course, natural history and potential targets for intervention for chronic diseases in mid-life and late-life.",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,4472,3011,Netherlands (the),Rotterdam,"Middle-aged (45-64 years),Aged (65+ years)",,,2000,,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,health or medical or biomedical research,,,,https://doi.org/10.1007/s10654-020-00640-5,"https://doi.org/10.1007/s10654-009-9386-z,https://doi.org/10.1007/BF00145007,https://doi.org/10.1007/s10654-007-9199-x,https://doi.org/10.1007/s10654-011-9610-5,https://doi.org/10.1007/s10654-013-9866-z,https://doi.org/10.1007/s10654-015-0082-x,https://doi.org/10.1007/s10654-017-0321-4",,"The Rotterdam Study is supported by the Erasmus MC University Medical Center and Erasmus University Rotterdam; The Netherlands Organisation for Scientifc Research (NWO); The Netherlands Organisation for Health Research and Development (ZonMw); the Research Institute for Diseases in the Elderly (RIDE); The Netherlands Genomics Initiative (NGI); the Ministry of Education, Culture and Science; the Ministry of Health, Welfare and Sports; the European Commission (DG XII); and the Municipality of Rotterdam.","The contribution of inhabitants, general practitioners and pharmacists of the Ommoord district to the Rotterdam Study is gratefully acknowledged. The contributions to the Management Team specifcally and the Rotterdam Study at large of the following persons are pivotal to the daily operations of the study and highly appreciated: Jacobus Lubbe, Gabriëlle Bakker, Eric Neeleman, Jeannette Vergeer, Anneke Korving, Pauline van Wijngaarden, Jolande Verkroost – van Heemst, Silvan Licher, Isabel van",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NOMA,,NOMA,Effect of fat quality on blood lipids and immune response,,"RCT, SFA, PUFA, LDL-cholesterol",https://www.med.uio.no/imb/english/research/projects/noma/,UiO,,"This randomized controlled trial aimed to investigate the health effects of replacing food items with a high content of saturated fatty acids with food items where a large portion of the saturated fat had been replaced with polyunsaturated fat. The main finding was that compared to intake of food items with saturated fat, intake of food items with polyunsaturated fat reduced total and low-density lipoprotein (LDL)-cholesterol by 9 and 11%, respectively. In this study, we collected data on standard clinical and biochemical variables, in addition to dietary intake as well as standard clinical and biochemical variables, in addition to dietary intake as well as metabolic and transcriptomic profiles.",,,,Cross-sectional,,,,Prospective,,,251,,,Oslo,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (80+ years)",,,2012,2014,,,,,,Other release type,Data collection is completed.,No,,health or medical or biomedical research,,Contact Stine Marie Ulven (smulven@medisin.uio.no) to use data from this study.,,https://doi.org/10.1017/S0007114516003445,"https://doi.org/10.1093/ajcn/nqy356,https://doi.org/10.1016/j.numecd.2020.06.018",,"This study was funded by the University of Oslo, Norway, and the Throne-Holst Foundation for Nutrition Research, Oslo, Norway.","We thank the NoMa team at the Oslo and Akershus University College of Applied Sciences, Department of Health, Nutrition and Management and at the University of Oslo, Department for Nutrition, Oslo, Norway.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ABCD,,ABCD,The Amsterdam Born Children and their Development Study,,"multicultural, psychosocial outcomes, child development, growth, cardiometabolic profile",http://www.abcd-studie.nl/,AMC,,The ABCD-study is a large longitudinal research study on the health of 8000 Amsterdam born children. We investigate which factors in early pregnancy and childhood influence the health of these children.,,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,8266,4300,Netherlands (the),Amsterdam,Prenatal,,,2003,2004,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,,,reach out to contact person,,https://doi.org/10.1093/ije/dyq128,,,The ABCD study has been supported by grants from The Netherlands Organisation for Health Research and Development (ZonMW) and The Netherlands Heart Foundation.,"We thank all participating families, and are grateful to all obstetric care providers, primary schools, students, and youth healthcare centers in Amsterdam for their contribution to the data collection of the ABCD-study",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HELIX,,HELIX,The Human Early-Life Exposome,,Novel tools for integrating early-life environmental exposures and child health across Europe,http://www.projecthelix.eu,ISGLOBAL,,"Six prospective birth cohort studies are contributing to HELIX as the only realistic and feasible way to obtain the comprehensive, longitudinal, human data needed to build this early-life exposome. These cohorts have already collected large amounts of data as part of national and EU-funded projects. Results will be integrated with data from European cohorts (>300,000 subjects) and registers, to estimate health impacts at the large European scale.",,Birth cohort,,Longitudinal,,,,Prospective,,,32000,1300,"Norway,France,Spain,United Kingdom of Great Britain and Northern Ireland (the),Greece,Lithuania",,,,,2014,2016,,,,,,,,,,,,,,,,,https://cordis.europa.eu/project/id/308333,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -RS1,,Rotterdam Study first cohort,"Rotterdam Study, first cohort",,Biomarkers · Cancer and related diseases · Cardiovascular diseases · Cohort study · Dermatological diseases · Endocrine diseases · Epidemiologic methods · Genetic and molecular epidemiology · Nutrition and lifestyle epidemiology · Liver diseases · Neurological diseases · Oncology · Ophthalmic diseases · Otolaryngological diseases · Pharmacoepidemiology · Population imag,https://www.ergo-onderzoek.nl/,EMC,,"The Rotterdam Study is an ongoing prospective cohort study that started in 1990 in the city of Rotterdam, The Netherlands. The study aims to unravel etiology, preclinical course, natural history and potential targets for intervention for chronic diseases in mid-life and late-life.",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,10215,7983,Netherlands (the),Rotterdam,"Middle-aged (45-64 years),Aged (65+ years)",,,1989,0,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,health or medical or biomedical research,,,,https://doi.org/10.1007/s10654-020-00640-5,"https://doi.org/10.1007/s10654-009-9386-z,https://doi.org/10.1007/BF00145007,https://doi.org/10.1007/s10654-007-9199-x,https://doi.org/10.1007/s10654-011-9610-5,https://doi.org/10.1007/s10654-013-9866-z,https://doi.org/10.1007/s10654-015-0082-x,https://doi.org/10.1007/s10654-017-0321-4",,"The Rotterdam Study is supported by the Erasmus MC University Medical Center and Erasmus University Rotterdam; The Netherlands Organisation for Scientifc Research (NWO); The Netherlands Organisation for Health Research and Development (ZonMw); the Research Institute for Diseases in the Elderly (RIDE); The Netherlands Genomics Initiative (NGI); the Ministry of Education, Culture and Science; the Ministry of Health, Welfare and Sports; the European Commission (DG XII); and the Municipality of Rotterdam.","The contribution of inhabitants, general practitioners and pharmacists of the Ommoord district to the Rotterdam Study is gratefully acknowledged. The contributions to the Management Team specifcally and the Rotterdam Study at large of the following persons are pivotal to the daily operations of the study and highly appreciated: Jacobus Lubbe, Gabriëlle Bakker, Eric Neeleman, Jeannette Vergeer, Anneke Korving, Pauline van Wijngaarden, Jolande Verkroost – van Heemst, Silvan Licher, Isabel van",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -DFBC,,DFBC,Dutch Famine Birth Cohort study,Hongerwinter Onderzoek,"famine, Dutch, older adults, ageing, pregnancy, early life, prenatal famine exposure",https://www.hongerwinter.nl/,Amsterdam UMC (AMC),,"The cohort was set up to investigate the effects of acute maternal undernutrition during specific stages of gestation on the offspring’s adult health. The main outcomes of interest of the DFBC are chronic cardiovascular and metabolic diseases, ageing and mental health. Differences in various outcomes have been found between participants exposed to famine and unexposed participants. Although statistically significant, these differences are not very large, therefore adjusting for exposure group enables researchers to use DFBC data in pooled a",,Birth cohort,test,Longitudinal,,,,"Retrospective,Prospective",,,2414,,Netherlands (the),,,,,1994,2021,,,,,,Other release type,upon completion of fu,no,,health or medical or biomedical research,,1. Submit a DFBC project proposal (s.r.derooij@amsterdamumc.nl) 2. Approval of the project ​3. Sign a data access agreement (DAA) 4. Data access with credentials (via DAT,,https://doi.org/10.1136/bmjopen-2020-042078,https://doi.org/10.1136/bmjopen-2013-003167,,"The Dutch famine birth cohort study has been funded by the Diabetes Fonds (The Netherlands, Grant Number NA), the Netherlands Heart Foundation ((NHS2001B087, NHS2007B083), The European Science Foundation (EUROSTRESS-DOME project), the European Commission (Brainage (Seventh Framework Programme Project 279281), Dynahealth (Horizon 2020 Project 633595), Longitools (Horizon 2020 Project 874739), Well-being (UK, Grant Number NA), the Medical Research Council (UK, Grant Number NA), the Dutch Research Council (NWO Aspasia Project 015014039) and the Academic Medical Centre (Amsterdam, The Netherlands, Grant number NA). We declare no conflict of interest.","We would like to thank the members of the Dutch famine birth cohort for their participation in our studies. We would also like to thank all researchers and other staff who have worked with us on study design, data collection, assessments, analyses and drafting of manuscripts.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Immune-Image_Task_6.2b,,Task 6.2b,PD-1 therapy study,,,,UMCG,,An investigator initiated clinical treatment trial with PD-1 antibody provided by Janssen will include the patients who underwent CD8 imaging in task 6.2a. This study will be designed and executed during the course of Immune-Image according to cGCP standards. This study in contrast to the CD8 imaging part will extent till the end of Immune-Image in order to allow appropriate follow-up of the patients.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Immune-Image_Task_6.3,,Task 6.3,Optical PD-L1 imaging trial in locally advanced oesophageal cancer patients,,,,UMCG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -PANIC,,PANIC,Physical Activity and Nutrition In Children,,"adipokines, adolescence, adolescents, aldosterone, arterial, imaging, arteriosclerosis, artery, wall, elasticity, artery, wall, stiffness, artery, wall, thickness, atherosclerosis, bioelectrical, impedance, bioimpedance, birth, birth, weight, body, fat, content, body, mineral, content, body, mineral, density, cardiovascular, disease, carotid, ultrasound, childhood, children, depression, development, diet, dietary, recording, dual-energy, x-ray, absorptiometry, dxa, eating, behavior, ergospirometry, exercise, exercise, test, fat, mass, fat, percentage, fat-free, mass, fetal, period, gene, genome-wide, association, studies, glucose, glucose, tolerance, test, growth, impedance, cardiography, insulin, intervention, intima-media, thickness, lean, body, mass, lean, mass, lifestyle, lipids, lipoproteins, liver, enzymes, maximal, oxygen, consumption, maximal, oxygen, uptake, mental, problems, metabolite, profiling, metabolomics, musculoskeletal, disease, myokines, nutrition, obesity, osteoporosis, overweight, oxidative, stress, physical, activity, pregnancy, prepubertal, psychic, problems, puberal, puberty, questionnaire, redox-regulation, respiratory, gas, analysis, respiratory, gases, school, age, screen, time, sedentary, behavior, sedentary, time, sex, hormones, sex, steroids, sitting, sleep, sleeping, stress, stress, hormones, thyroid, hormones, trial, type, 2, diabetes",https://www.panicstudy.fi/,UEF,,The Physical Activity and Nutrition in Children (PANIC) Study is an ongoing 8-year controlled physical activity and dietary intervention study in a large population sample of children who have been followed retrospectively since pregnancy and prospectively until adolescence and will finally be followed until early adulthood,,,,Longitudinal,,,,"Prospective,Retrospective",,,736,512,Finland,,"Child (2-12 years),Adolescent (13-17 years)",,,2007,,,,,,,Other release type,"Data from baseline, 2-year follow-up and 8-year follow-up have been processed",no,,,,reach out to contact person,,https://doi.org/10.1007/s00125-020-05250-0,https://doi.org/10.1016/j.numecd.2016.05.005,,"Ministry of Social Affairs and Health of Finland, Ministry of Education and Culture of Finland, Finnish Innovation Fund Sitra, Social Insurance Institution of Finland, Research Committee of the Kuopio University Hospital Catchment Area (State Research Funding), Kuopio University Hospital (EVO funding number 5031343), the city of Kuopio, Finnish Cultural Foundation, Juho Vainio Foundation, Foundation for Paediatric Research, Paavo Nurmi Foundation, Jenny and Antti Wihuri Foundation, Paulo Foundation, Diabetes Research Foundation, Finnish Foundation of Cardiovascular Research, OLVI-foundation, The Finnish Medical Foundation, Yrjö Jahnsson Foundation, Aarne and Aili Turunen Foundation, Päivikki and Sakari Sohlberg Foundation, Jalmari and Rauha Ahokas Foundation, Doctoral Programs in Public Health (DPPH), Finnish Doctoral Program in Oral Sciences (FINDOS), The Kuopio Naturalists' Society, Finnish Association for the Study of Pain, the Finnish Dental Society Apollonia and other Finnish Associations and So",,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +CELSPAC-TNG,,CELSPAC-TNG,Central European Longitudinal Study of Parents and Children: The Next Generation,,"EXPOSOME, Central Europe",https://www.celspac.cz/tng,RECETOX,,This prospective birth cohort is designed to follow up 7000 children from their prenatal period to adolescence with the aim of assessing EXPOSOME factors potentially affecting children health.,,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,950,900,Czechia,,,,,,,2018,,,,,,,Continuous,,,,health or medical or biomedical research,,"If you are interested in using available data from the ELSPAC.CZ database, please follow these steps: 1) Send your request to info@celspac.cz. 2) You will be contacted by the project manager who will discuss and, if necessary, work up your project plan. 3) The ELSPAC Executive Council will assess the proposed project plans with regard to their quality and feasibility and will recommend the selected ones to be carried out. 4) If your request is approved, a contract will be concluded between the Faculty of Science at Masaryk University and your institution. 5) Data in the agreed form and extent will be provided based on this contract.",,,,,"The RECETOX Research Infrastructure (TNG is included) is supported by the Ministry of Education, Youth and Sports of the Czech Republic (LM2018121)",The authors are grateful to all participants of the TNG cohort.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +RS2,,Rotterdam Study second cohort,"Rotterdam Study, second cohort",,Biomarkers · Cancer and related diseases · Cardiovascular diseases · Cohort study · Dermatological diseases · Endocrine diseases · Epidemiologic methods · Genetic and molecular epidemiology · Nutrition and lifestyle epidemiology · Liver diseases · Neurological diseases · Oncology · Ophthalmic diseases · Otolaryngological diseases · Pharmacoepidemiology · Population imag,https://www.ergo-onderzoek.nl/,EMC,,"The Rotterdam Study is an ongoing prospective cohort study that started in 1990 in the city of Rotterdam, The Netherlands. The study aims to unravel etiology, preclinical course, natural history and potential targets for intervention for chronic diseases in mid-life and late-life.",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,4472,3011,Netherlands (the),Rotterdam,"Middle-aged (45-64 years),Aged (65+ years)",,,,,2000,,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,health or medical or biomedical research,,,,https://doi.org/10.1007/s10654-020-00640-5,"https://doi.org/10.1007/s10654-009-9386-z,https://doi.org/10.1007/BF00145007,https://doi.org/10.1007/s10654-007-9199-x,https://doi.org/10.1007/s10654-011-9610-5,https://doi.org/10.1007/s10654-013-9866-z,https://doi.org/10.1007/s10654-015-0082-x,https://doi.org/10.1007/s10654-017-0321-4",,"The Rotterdam Study is supported by the Erasmus MC University Medical Center and Erasmus University Rotterdam; The Netherlands Organisation for Scientifc Research (NWO); The Netherlands Organisation for Health Research and Development (ZonMw); the Research Institute for Diseases in the Elderly (RIDE); The Netherlands Genomics Initiative (NGI); the Ministry of Education, Culture and Science; the Ministry of Health, Welfare and Sports; the European Commission (DG XII); and the Municipality of Rotterdam.","The contribution of inhabitants, general practitioners and pharmacists of the Ommoord district to the Rotterdam Study is gratefully acknowledged. The contributions to the Management Team specifcally and the Rotterdam Study at large of the following persons are pivotal to the daily operations of the study and highly appreciated: Jacobus Lubbe, Gabriëlle Bakker, Eric Neeleman, Jeannette Vergeer, Anneke Korving, Pauline van Wijngaarden, Jolande Verkroost – van Heemst, Silvan Licher, Isabel van",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +NOMA,,NOMA,Effect of fat quality on blood lipids and immune response,,"RCT, SFA, PUFA, LDL-cholesterol",https://www.med.uio.no/imb/english/research/projects/noma/,UiO,,"This randomized controlled trial aimed to investigate the health effects of replacing food items with a high content of saturated fatty acids with food items where a large portion of the saturated fat had been replaced with polyunsaturated fat. The main finding was that compared to intake of food items with saturated fat, intake of food items with polyunsaturated fat reduced total and low-density lipoprotein (LDL)-cholesterol by 9 and 11%, respectively. In this study, we collected data on standard clinical and biochemical variables, in addition to dietary intake as well as standard clinical and biochemical variables, in addition to dietary intake as well as metabolic and transcriptomic profiles.",,,,Cross-sectional,,,,Prospective,,,251,,,Oslo,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (80+ years)",,,,,2012,2014,,,,,,Other release type,Data collection is completed.,No,,health or medical or biomedical research,,Contact Stine Marie Ulven (smulven@medisin.uio.no) to use data from this study.,,https://doi.org/10.1017/S0007114516003445,"https://doi.org/10.1093/ajcn/nqy356,https://doi.org/10.1016/j.numecd.2020.06.018",,"This study was funded by the University of Oslo, Norway, and the Throne-Holst Foundation for Nutrition Research, Oslo, Norway.","We thank the NoMa team at the Oslo and Akershus University College of Applied Sciences, Department of Health, Nutrition and Management and at the University of Oslo, Department for Nutrition, Oslo, Norway.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ABCD,,ABCD,The Amsterdam Born Children and their Development Study,,"multicultural, psychosocial outcomes, child development, growth, cardiometabolic profile",http://www.abcd-studie.nl/,AMC,,The ABCD-study is a large longitudinal research study on the health of 8000 Amsterdam born children. We investigate which factors in early pregnancy and childhood influence the health of these children.,,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,8266,4300,Netherlands (the),Amsterdam,Prenatal,,,,,2003,2004,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,,,reach out to contact person,,https://doi.org/10.1093/ije/dyq128,,,The ABCD study has been supported by grants from The Netherlands Organisation for Health Research and Development (ZonMW) and The Netherlands Heart Foundation.,"We thank all participating families, and are grateful to all obstetric care providers, primary schools, students, and youth healthcare centers in Amsterdam for their contribution to the data collection of the ABCD-study",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +HELIX,,HELIX,The Human Early-Life Exposome,,Novel tools for integrating early-life environmental exposures and child health across Europe,http://www.projecthelix.eu,ISGLOBAL,,"Six prospective birth cohort studies are contributing to HELIX as the only realistic and feasible way to obtain the comprehensive, longitudinal, human data needed to build this early-life exposome. These cohorts have already collected large amounts of data as part of national and EU-funded projects. Results will be integrated with data from European cohorts (>300,000 subjects) and registers, to estimate health impacts at the large European scale.",,Birth cohort,,Longitudinal,,,,Prospective,,,32000,1300,"Norway,France,Spain,United Kingdom of Great Britain and Northern Ireland (the),Greece,Lithuania",,,,,,,2014,2016,,,,,,,,,,,,,,,,,https://cordis.europa.eu/project/id/308333,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +RS1,,Rotterdam Study first cohort,"Rotterdam Study, first cohort",,Biomarkers · Cancer and related diseases · Cardiovascular diseases · Cohort study · Dermatological diseases · Endocrine diseases · Epidemiologic methods · Genetic and molecular epidemiology · Nutrition and lifestyle epidemiology · Liver diseases · Neurological diseases · Oncology · Ophthalmic diseases · Otolaryngological diseases · Pharmacoepidemiology · Population imag,https://www.ergo-onderzoek.nl/,EMC,,"The Rotterdam Study is an ongoing prospective cohort study that started in 1990 in the city of Rotterdam, The Netherlands. The study aims to unravel etiology, preclinical course, natural history and potential targets for intervention for chronic diseases in mid-life and late-life.",,Population cohort,,Longitudinal,,,,"Retrospective,Prospective",,,10215,7983,Netherlands (the),Rotterdam,"Middle-aged (45-64 years),Aged (65+ years)",,,,,1989,0,,,,,,Continuous,Once a follow-up is completed and data have been processed.,no,,health or medical or biomedical research,,,,https://doi.org/10.1007/s10654-020-00640-5,"https://doi.org/10.1007/s10654-009-9386-z,https://doi.org/10.1007/BF00145007,https://doi.org/10.1007/s10654-007-9199-x,https://doi.org/10.1007/s10654-011-9610-5,https://doi.org/10.1007/s10654-013-9866-z,https://doi.org/10.1007/s10654-015-0082-x,https://doi.org/10.1007/s10654-017-0321-4",,"The Rotterdam Study is supported by the Erasmus MC University Medical Center and Erasmus University Rotterdam; The Netherlands Organisation for Scientifc Research (NWO); The Netherlands Organisation for Health Research and Development (ZonMw); the Research Institute for Diseases in the Elderly (RIDE); The Netherlands Genomics Initiative (NGI); the Ministry of Education, Culture and Science; the Ministry of Health, Welfare and Sports; the European Commission (DG XII); and the Municipality of Rotterdam.","The contribution of inhabitants, general practitioners and pharmacists of the Ommoord district to the Rotterdam Study is gratefully acknowledged. The contributions to the Management Team specifcally and the Rotterdam Study at large of the following persons are pivotal to the daily operations of the study and highly appreciated: Jacobus Lubbe, Gabriëlle Bakker, Eric Neeleman, Jeannette Vergeer, Anneke Korving, Pauline van Wijngaarden, Jolande Verkroost – van Heemst, Silvan Licher, Isabel van",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +DFBC,,DFBC,Dutch Famine Birth Cohort study,Hongerwinter Onderzoek,"famine, Dutch, older adults, ageing, pregnancy, early life, prenatal famine exposure",https://www.hongerwinter.nl/,Amsterdam UMC (AMC),,"The cohort was set up to investigate the effects of acute maternal undernutrition during specific stages of gestation on the offspring’s adult health. The main outcomes of interest of the DFBC are chronic cardiovascular and metabolic diseases, ageing and mental health. Differences in various outcomes have been found between participants exposed to famine and unexposed participants. Although statistically significant, these differences are not very large, therefore adjusting for exposure group enables researchers to use DFBC data in pooled a",,Birth cohort,test,Longitudinal,,,,"Retrospective,Prospective",,,2414,,Netherlands (the),,,,,,,1994,2021,,,,,,Other release type,upon completion of fu,no,,health or medical or biomedical research,,1. Submit a DFBC project proposal (s.r.derooij@amsterdamumc.nl) 2. Approval of the project ​3. Sign a data access agreement (DAA) 4. Data access with credentials (via DAT,,https://doi.org/10.1136/bmjopen-2020-042078,https://doi.org/10.1136/bmjopen-2013-003167,,"The Dutch famine birth cohort study has been funded by the Diabetes Fonds (The Netherlands, Grant Number NA), the Netherlands Heart Foundation ((NHS2001B087, NHS2007B083), The European Science Foundation (EUROSTRESS-DOME project), the European Commission (Brainage (Seventh Framework Programme Project 279281), Dynahealth (Horizon 2020 Project 633595), Longitools (Horizon 2020 Project 874739), Well-being (UK, Grant Number NA), the Medical Research Council (UK, Grant Number NA), the Dutch Research Council (NWO Aspasia Project 015014039) and the Academic Medical Centre (Amsterdam, The Netherlands, Grant number NA). We declare no conflict of interest.","We would like to thank the members of the Dutch famine birth cohort for their participation in our studies. We would also like to thank all researchers and other staff who have worked with us on study design, data collection, assessments, analyses and drafting of manuscripts.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Immune-Image_Task_6.2b,,Task 6.2b,PD-1 therapy study,,,,UMCG,,An investigator initiated clinical treatment trial with PD-1 antibody provided by Janssen will include the patients who underwent CD8 imaging in task 6.2a. This study will be designed and executed during the course of Immune-Image according to cGCP standards. This study in contrast to the CD8 imaging part will extent till the end of Immune-Image in order to allow appropriate follow-up of the patients.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Immune-Image_Task_6.3,,Task 6.3,Optical PD-L1 imaging trial in locally advanced oesophageal cancer patients,,,,UMCG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +PANIC,,PANIC,Physical Activity and Nutrition In Children,,"adipokines, adolescence, adolescents, aldosterone, arterial, imaging, arteriosclerosis, artery, wall, elasticity, artery, wall, stiffness, artery, wall, thickness, atherosclerosis, bioelectrical, impedance, bioimpedance, birth, birth, weight, body, fat, content, body, mineral, content, body, mineral, density, cardiovascular, disease, carotid, ultrasound, childhood, children, depression, development, diet, dietary, recording, dual-energy, x-ray, absorptiometry, dxa, eating, behavior, ergospirometry, exercise, exercise, test, fat, mass, fat, percentage, fat-free, mass, fetal, period, gene, genome-wide, association, studies, glucose, glucose, tolerance, test, growth, impedance, cardiography, insulin, intervention, intima-media, thickness, lean, body, mass, lean, mass, lifestyle, lipids, lipoproteins, liver, enzymes, maximal, oxygen, consumption, maximal, oxygen, uptake, mental, problems, metabolite, profiling, metabolomics, musculoskeletal, disease, myokines, nutrition, obesity, osteoporosis, overweight, oxidative, stress, physical, activity, pregnancy, prepubertal, psychic, problems, puberal, puberty, questionnaire, redox-regulation, respiratory, gas, analysis, respiratory, gases, school, age, screen, time, sedentary, behavior, sedentary, time, sex, hormones, sex, steroids, sitting, sleep, sleeping, stress, stress, hormones, thyroid, hormones, trial, type, 2, diabetes",https://www.panicstudy.fi/,UEF,,The Physical Activity and Nutrition in Children (PANIC) Study is an ongoing 8-year controlled physical activity and dietary intervention study in a large population sample of children who have been followed retrospectively since pregnancy and prospectively until adolescence and will finally be followed until early adulthood,,,,Longitudinal,,,,"Prospective,Retrospective",,,736,512,Finland,,"Child (2-12 years),Adolescent (13-17 years)",,,,,2007,,,,,,,Other release type,"Data from baseline, 2-year follow-up and 8-year follow-up have been processed",no,,,,reach out to contact person,,https://doi.org/10.1007/s00125-020-05250-0,https://doi.org/10.1016/j.numecd.2016.05.005,,"Ministry of Social Affairs and Health of Finland, Ministry of Education and Culture of Finland, Finnish Innovation Fund Sitra, Social Insurance Institution of Finland, Research Committee of the Kuopio University Hospital Catchment Area (State Research Funding), Kuopio University Hospital (EVO funding number 5031343), the city of Kuopio, Finnish Cultural Foundation, Juho Vainio Foundation, Foundation for Paediatric Research, Paavo Nurmi Foundation, Jenny and Antti Wihuri Foundation, Paulo Foundation, Diabetes Research Foundation, Finnish Foundation of Cardiovascular Research, OLVI-foundation, The Finnish Medical Foundation, Yrjö Jahnsson Foundation, Aarne and Aili Turunen Foundation, Päivikki and Sakari Sohlberg Foundation, Jalmari and Rauha Ahokas Foundation, Doctoral Programs in Public Health (DPPH), Finnish Doctoral Program in Oral Sciences (FINDOS), The Kuopio Naturalists' Society, Finnish Association for the Study of Pain, the Finnish Dental Society Apollonia and other Finnish Associations and So",,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, NFBC1966,,NFBC1966,NFBC1966,,,https://www.oulu.fi/nfbc,UOULU,,"The study was started by professor Paula Rantakallio in the two Northernmost provinces in Finland (Oulu and Lapland) already in the year 1965 when the mothers were pregnant. Data on the individuals born into this cohort was collected since the 24th gestational week as well as their mothers and, to a lesser extent, fathers. The cohort included 12055 mothers and they had 12068 deliveries (13 women delivered twice). Cases belonging to survey were determined by the calculated term. A small percentage of the births occurred towards the end of 1965 and early in 1967. The calculated term, as was customary at that time, was counted from the first day of the last menstrual period. Where this date was unknown the expected term was estimated from the date of commencement of foetal ovements and progress of the pregnancy. The study covered all live born and stillborn infants with birth weight of 600 grams or more. -According to the Finland's central Office of Statistics, births in the study area during 1966 totalled 12527, so study population comprised 96.3 per cent of all births during 1966 in that area. Altogether 12231 children were born into the cohort, 12058 of them live born. The original data have been supplemented by data collected with postal questionnaires at the ages of 1, 14 and 31 years and various hospital records and national register data.",,Birth cohort,,Longitudinal,,,,Prospective,,,12231,,Finland,"Lapland,North Ostrobothnia","Prenatal,Newborn (0-1 months),Infants and toddlers (2-23 months),Infant (0-23 months),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years)",,,1965,,,,,,,Closed dataset,,yes,,health or medical or biomedical research,,https://www.oulu.fi/nfbc/materialrequest,,,https://doi.org/10.1093/ije/dyab109,,"For the 31yr follow-up: NFBC1966 received financial support from University of Oulu Grant no. 65354, Oulu University Hospital Grant no. 2/97, 8/97, Ministry of Health and Social Affairs Grant no. 23/251/97, 160/97, 190/97, National Institute for Health and Welfare, Helsinki Grant no. 54121, Regional Institute of Occupational Health, Oulu, Finland Grant no. 50621, 54231 +According to the Finland's central Office of Statistics, births in the study area during 1966 totalled 12527, so study population comprised 96.3 per cent of all births during 1966 in that area. Altogether 12231 children were born into the cohort, 12058 of them live born. The original data have been supplemented by data collected with postal questionnaires at the ages of 1, 14 and 31 years and various hospital records and national register data.",,Birth cohort,,Longitudinal,,,,Prospective,,,12231,,Finland,"Lapland,North Ostrobothnia","Prenatal,Newborn (0-1 months),Infants and toddlers (2-23 months),Infant (0-23 months),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years)",,,,,1965,,,,,,,Closed dataset,,yes,,health or medical or biomedical research,,https://www.oulu.fi/nfbc/materialrequest,,,https://doi.org/10.1093/ije/dyab109,,"For the 31yr follow-up: NFBC1966 received financial support from University of Oulu Grant no. 65354, Oulu University Hospital Grant no. 2/97, 8/97, Ministry of Health and Social Affairs Grant no. 23/251/97, 160/97, 190/97, National Institute for Health and Welfare, Helsinki Grant no. 54121, Regional Institute of Occupational Health, Oulu, Finland Grant no. 50621, 54231 For the 46yr follow-up: NFBC1966 received financial support from University of Oulu Grant no. 24000692, Oulu University Hospital Grant no. 24301140, ERDF European Regional Development Fund Grant no. 539/2010 A31592",We thank all cohort members and researchers who have participated in the study. We also wish acknowledge the work of the NFBC project center.,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -SAPALDIA,,,SAPALDIA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -mtFIT study,,mtFIT study,Multitarget FIT study,,"colon, crc, colorectal, cancer, early detection, early detection of cancer, feces, mass screening, biomarkers, colonoscopy, routine diagnostic tests",https://www.avl.nl/multitargetFIT,NKI,,"The mulitarget FIT study is a prospective study that is running within the Dutch National CRC screening program. The aim of this study is to compare the performance of a new stool test (mtFIT) with the currently used FIT. In this study we collect the lab data (results mtFIT and FIT) as well as the clinical data associated; age and sex of participants, colonoscopy findings (when one or both tests are positive), pathology data (when a lesion is detected during colonoscopy).",b.carvalho@nki.nl,"Population cohort",,Cross-sectional,,,,Prospective,,,13300,,,,,,,,,,,,,,,,,,"health or medical or biomedical research,disease specific research",,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -SYSDIMET,,SYSDIMET,Health Grain intervention,,"RCT, healthy diet, cereals, berries, n-3 fatty acids, dietary fibre, inflammation, endothelial dysfunction",,UEF,,,,,,Longitudinal,,,,Prospective,,,131,104,Finland,,"Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years)",,,2007,2007,,,,,,Closed dataset,Contact Marjukka Kolehmainen to use data from this study,no,,health or medical or biomedical research,,Contact Marjukka Kolehmainen to use data from this study,,https://doi.org/10.1007/s00125-011-2285-3,"https://doi.org/10.1371/journal.pone.0090352,https://doi.org/10.1371/journal.pone.0022646",,"This study was supported by: the Academy of Finland (117844 and 118590 [to M. Uusitupa]; 131460 [to K. Poutanen]; 130469 [to H. Mykkänen] and 131593 [to V. D. F. de Mello]); the Kuopio University Hospital (5106, 5168, 5254 [to M. Uusitupa]); the Finnish Diabetes Research Foundation; the Sigrid Juselius Foundation; the Nordic Centre of Excellence on ‘Systems biology in controlled dietary interventions and cohort studies’ +SAPALDIA,,,SAPALDIA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +mtFIT study,,mtFIT study,Multitarget FIT study,,"colon, crc, colorectal, cancer, early detection, early detection of cancer, feces, mass screening, biomarkers, colonoscopy, routine diagnostic tests",https://www.avl.nl/multitargetFIT,NKI,,"The mulitarget FIT study is a prospective study that is running within the Dutch National CRC screening program. The aim of this study is to compare the performance of a new stool test (mtFIT) with the currently used FIT. In this study we collect the lab data (results mtFIT and FIT) as well as the clinical data associated; age and sex of participants, colonoscopy findings (when one or both tests are positive), pathology data (when a lesion is detected during colonoscopy).",b.carvalho@nki.nl,Population cohort,,Cross-sectional,,,,Prospective,,,13300,,,,,,,,,,,,,,,,,,,,"health or medical or biomedical research,disease specific research",,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +SYSDIMET,,SYSDIMET,Health Grain intervention,,"RCT, healthy diet, cereals, berries, n-3 fatty acids, dietary fibre, inflammation, endothelial dysfunction",,UEF,,,,,,Longitudinal,,,,Prospective,,,131,104,Finland,,"Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years)",,,,,2007,2007,,,,,,Closed dataset,Contact Marjukka Kolehmainen to use data from this study,no,,health or medical or biomedical research,,Contact Marjukka Kolehmainen to use data from this study,,https://doi.org/10.1007/s00125-011-2285-3,"https://doi.org/10.1371/journal.pone.0090352,https://doi.org/10.1371/journal.pone.0022646",,"This study was supported by: the Academy of Finland (117844 and 118590 [to M. Uusitupa]; 131460 [to K. Poutanen]; 130469 [to H. Mykkänen] and 131593 [to V. D. F. de Mello]); the Kuopio University Hospital (5106, 5168, 5254 [to M. Uusitupa]); the Finnish Diabetes Research Foundation; the Sigrid Juselius Foundation; the Nordic Centre of Excellence on ‘Systems biology in controlled dietary interventions and cohort studies’ (SYSDIET; 070014); and the European Commission in the Communities 6th Framework Programme, Project HEALTHGRAIN (","We thank the laboratory technologists T. Onnukka and K. Kettunen from the Department of Clinical Nutrition, University of Eastern Finland, Kuopio, Finland, and G. Trischler from the Department of Internal Medicine II-Cardiology, University of Ulm Medical Center, Ulm, Germany for their skilful work.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -DNBC,,DNBC,The Danish National Birth Cohort,,,https://www.dnbc.dk,UCPH,,"The Danish National Birth Cohort (DNBC) was established to investigate the causal link between exposures in early life and disease later on and the possibilites for disease prevention. Initial data collection information was collected by computer-assisted telephone interviews with the women twice during pregnancy and when their children were six and 18 months old. Further data collections were conducted when the children were 7, 11 and 18 years old. For more details, please visit the DNBC homepage.",,Birth cohort,,Longitudinal,,,,Prospective,,,100410,96825,Denmark,,,,,1996,2003,,,,,,Other release type,,The non-harmonized DNBC data can be linked to Danish registries,,health or medical or biomedical research,,"1. Once a proposal has been circulated, the DNBC LifeCycle team at UCPH discuss the proposal to determine whether DNBC can participate and assign a lead DNBC researcher to the proposal. This DNBC researcher then contacts the study PI to confirm our participation and request that the study PI fill in a DNBC application form. +DNBC,,DNBC,The Danish National Birth Cohort,,,https://www.dnbc.dk,UCPH,,"The Danish National Birth Cohort (DNBC) was established to investigate the causal link between exposures in early life and disease later on and the possibilites for disease prevention. Initial data collection information was collected by computer-assisted telephone interviews with the women twice during pregnancy and when their children were six and 18 months old. Further data collections were conducted when the children were 7, 11 and 18 years old. For more details, please visit the DNBC homepage.",,Birth cohort,,Longitudinal,,,,Prospective,,,100410,96825,Denmark,,,,,,,1996,2003,,,,,,Other release type,,The non-harmonized DNBC data can be linked to Danish registries,,health or medical or biomedical research,,"1. Once a proposal has been circulated, the DNBC LifeCycle team at UCPH discuss the proposal to determine whether DNBC can participate and assign a lead DNBC researcher to the proposal. This DNBC researcher then contacts the study PI to confirm our participation and request that the study PI fill in a DNBC application form. 2. The DNBC application form is sent to the DNBC managerial team via UCPH. 3. After approval of the application, the researcher/study PI will receive a letter (by e-mail) of approval from the DNBC and asked to sign a consent form for correct data use. 4. Once this consent form has been signed and returned, the researcher can contact the DNBC data manager who will provide access to the requested variables.",,https://doi.org/10.1177/14034948010290040201,,,"The Danish National Birth Cohort was established with a significant grant from the Danish National Research Foundation. Additional support was obtained from the Danish Regional Committees, the Pharmacy Foundation, the Egmont Foundation, the March of Dimes Birth Defects Foundation, the Health Foundation and other minor grants. The DNBC Biobank has been supported by the Novo Nordisk Foundation and the Lundbeck Foundation. Follow-up of mothers and children have been supported by the Danish Medical Research Council (SSVF 0646, 271-08-0839/06-066023, O602-01042B, 0602-02738B), the Lundbeck Foundation (195/04, R100-A9193), The Innovation Fund Denmark 0603-00294B (09-067124), the Nordea Foundation (02-2013-2014), Aarhus Ideas (AU R9-A959-13-S804), University of Copenhagen Strategic Grant (IFSV 2012), and the Danish Council for Independent Research (DFF – 4183-00594 and DFF - 4183-0","The authors would like to thank the participants, the first Principal Investigator of DNBC Prof. Jørn Olsen, the scientific managerial team, and DNBC secretariat for being, establishing, developing and consolidating the Danish National Birth Coho",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ELSPAC,,ELSPAC,ELSPAC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ENVIRONAGE,,ENVIRONAGE,ENVIRonmental influence ON early AGEing,,"air pollution, child, aging, newborn, exposome, telomere length, placenta, omics, cardiovascular, system cognition",https://www.uhasselt.be/Algemene-Informatie-Limburgs-Geboortecohort,UHASSELT,,Within the ongoing population-based prospective birth cohort study ENVIRONAGE we explore new dimensions in the current understanding of human ageing and its interaction with the environment,,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,2000,2000,Belgium,,,,,2010,,,,,,,Annually,"Due to ongoing recruitment and follow-up, annual updates are provided of the datasets",No,,health or medical or biomedical research,,Contact Tim Nawrot (tim.nawrot@uhasselt.be) or Michelle Plusquin (Michelle.plusquin@uhasselt.Be),,https://doi.org/10.1093/ije/dyw269,,,"The ENVIRONAGE birth cohort is supported by the European Research Council [ERC-2012-StG.310898], and by funds of the Flemish Scientific Research council [FWO, G.0.733.15.N, G.0.592.14].","The authors are extremely grateful to the participating women and neonates, as well as the staff of the maternity ward, midwives and the staff of the clinical laboratory of East-Limburg Hospital in Genk.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testCohort3,,,testCohort3,,,,,,"testcohort 3 is used for mappings, not to check rich or descriptive metadata",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testCohort4,,,testCohort4,,,,,,"testcohort 4 is used for mappings, not to check rich or descriptive metadata",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testCohort1,https://pid-for-testcohort1.org,acronym for test cohort 1,Name for test cohort 1,Local name for test cohort 1,"test, cohort1, Molgenis, testing",https://www.molgenis.org,"Test lead organisation 1,test lead organisation 2","Test additional organisation 1,id for test additional organisation 2","This is the Test cohort 1. It has multiple entries where possible. Design paper and publications are random DOIs from the EUCAN project. Yes to data access fee. The population age group is all adult options, so the population age group should be shown as ""Adult 18+ years"". Cohort type has both 'normal' and 'other' fields filled in --> see which is displayed",molgenis-support@umcg.nl,"Clinical cohort",Cohort 1 other type,Longitudinal,Description of the design used for cohort 1,,,"Retrospective,Prospective",,,600,200,"Armenia,Bermuda,Réunion","Bradford,Lapland,Gipuzkoa","Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","Clinically relevant exposure inclusion criterion,Clinically relevant lifestyle inclusion criterion,Country of residence inclusion criteria",,1900,1967,"E00 Congenital iodine-deficiency syndrome,E00-E07 Disorders of thyroid gland,""E00.0 Congenital iodine-deficiency syndrome, neurological type"",""E00.1 Congenital iodine-deficiency syndrome, myxoedematous type"",""E00.2 Congenital iodine-deficiency syndrome, mixed type"",""E00.9 Congenital iodine-deficiency syndrome, unspecified"",E01 Iodine-deficiency-related thyroid disorders and allied conditions,E01.0 Iodine-deficiency-related thyroid disorders and allied conditions - Iodine-deficiency-related diffuse (endemic) goitre,E01.1 Iodine-deficiency-related thyroid disorders and allied conditions - Iodine-deficiency-related multinodular (endemic) goitre,""E01.2 Iodine-deficiency-related thyroid disorders and allied conditions - Iodine-deficiency-related (endemic) goitre, unspecified"",E01.8 Other iodine-deficiency-related thyroid disorders and allied conditions,E02 Subclinical iodine-deficiency hypothyroidism,E03 Other hypothyroidism,E03.0 Congenital hypothyroidism with diffuse goitre,E03.1 Congenital hypothyroidism without goitre,E03.2 Hypothyroidism due to medicaments and other exogenous substances,E03.3 Postinfectious hypothyroidism,E03.4 Other hypothyroidism - Atrophy of thyroid (acquired),E03.5 Other hypothyroidism - Myxoedema coma,E03.8 Other specified hypothyroidism,""E03.9 Hypothyroidism, unspecified"",E04 Other nontoxic goitre,E04.0 Nontoxic diffuse goitre,E04.1 Nontoxic single thyroid nodule,E04.2 Nontoxic multinodular goitre,E04.8 Other specified nontoxic goitre,""E04.9 Nontoxic goitre, unspecified"",E05 Thyrotoxicosis [hyperthyroidism],E05.0 Thyrotoxicosis with diffuse goitre,E05.1 Thyrotoxicosis with toxic single thyroid nodule,E05.2 Thyrotoxicosis with toxic multinodular goitre,E05.3 Thyrotoxicosis from ectopic thyroid tissue,E05.4 Thyrotoxicosis factitia,E05.5 Thyrotoxicosis [hyperthyroidism] - Thyroid crisis or storm,E05.8 Other thyrotoxicosis,""E05.9 Thyrotoxicosis, unspecified"",E06 Thyroiditis,E06.0 Acute thyroiditis,E06.1 Subacute thyroiditis,E06.2 Chronic thyroiditis with transient thyrotoxicosis,E06.3 Autoimmune thyroiditis,E06.4 Drug-induced thyroiditis,E06.5 Other chronic thyroiditis,""E06.9 Thyroiditis, unspecified"",E07 Other disorders of thyroid,E07.0 Hypersecretion of calcitonin,E07.1 Other disorders of thyroid - Dyshormogenetic goitre,E07.8 Other specified disorders of thyroid,""E07.9 Disorder of thyroid, unspecified"",E10 Type 1 diabetes mellitus,E10-E14 Diabetes mellitus,E10.0 Type 1 diabetes mellitus with coma,E10.1 Type 1 diabetes mellitus with ketoacidosis,E10.2 Type 1 diabetes mellitus with renal complications,E10.3 Type 1 diabetes mellitus with ophthalmic complications,E10.4 Type 1 diabetes mellitus with neurological complications,E10.5 Type 1 diabetes mellitus with peripheral circulatory complications,E10.6 Type 1 diabetes mellitus with other specified complications,E10.7 Type 1 diabetes mellitus with multiple complications,E10.8 Type 1 diabetes mellitus with unspecified complications,E10.9 Type 1 diabetes mellitus without complications,E11 Type 2 diabetes mellitus,E11.0 Type 2 diabetes mellitus with coma,E11.1 Type 2 diabetes mellitus with ketoacidosis,E11.2 Type 2 diabetes mellitus with renal complications,E11.3 Type 2 diabetes mellitus with ophthalmic complications,E11.4 Type 2 diabetes mellitus with neurological complications,E11.5 Type 2 diabetes mellitus with peripheral circulatory complications,E11.6 Type 2 diabetes mellitus with other specified complications,E11.7 Type 2 diabetes mellitus with multiple complications,E11.8 Type 2 diabetes mellitus with unspecified complications,E11.9 Type 2 diabetes mellitus without complications,E12 Malnutrition-related diabetes mellitus,E12.0 Malnutrition-related diabetes mellitus with coma,E12.1 Malnutrition-related diabetes mellitus with ketoacidosis,E12.2 Malnutrition-related diabetes mellitus with renal complications,E12.3 Malnutrition-related diabetes mellitus with ophthalmic complications,E12.4 Malnutrition-related diabetes mellitus with neurological complications,E12.5 Malnutrition-related diabetes mellitus with peripheral circulatory complications,E12.6 Malnutrition-related diabetes mellitus with other specified complications,E12.7 Malnutrition-related diabetes mellitus with multiple complications,E12.8 Malnutrition-related diabetes mellitus with with unspecified complications,E12.9 Malnutrition-related diabetes mellitus without complications,E13 Other specified diabetes mellitus,E13.0 Other specified diabetes mellitus with coma,E13.1 Other specified diabetes mellitus with ketoacidosis,E13.2 Other specified diabetes mellitus with renal complications,E13.3 Other specified diabetes mellitus with ophthalmic complications,E13.4 Other specified diabetes mellitus with neurological complications,E13.5 Other specified diabetes mellitus with peripheral circulatory complications,E13.6 Other specified diabetes mellitus with other specified complications,E13.7 Other specified diabetes mellitus with multiple complications,E13.8 Other specified diabetes mellitus with unspecified complications,E13.9 Other specified diabetes mellitus without complications,E14 Unspecified diabetes mellitus,E14.0 Unspecified diabetes mellitus with coma,E14.1 Unspecified diabetes mellitus with ketoacidosis,E14.2 Unspecified diabetes mellitus with renal complications,E14.3 Unspecified diabetes mellitus with ophthalmic complications,E14.4 Unspecified diabetes mellitus with neurological complications,E14.5 Unspecified diabetes mellitus with peripheral circulatory complications,E14.6 Unspecified diabetes mellitus with other specified complications,E14.7 Unspecified diabetes mellitus with multiple complications,E14.8 Unspecified diabetes mellitus with unspecified complications,E14.9 Unspecified diabetes mellitus without complications,E15 Nondiabetic hypoglycaemic coma,E15-E16 Other disorders of glucose regulation and pancreatic internal secretion,E16 Other disorders of pancreatic internal secretion,E16.0 Other disorders of pancreatic internal secretion - Drug-induced hypoglycaemia without coma,E16.1 Other hypoglycaemia,""E16.2 Other disorders of pancreatic internal secretion - Hypoglycaemia, unspecified"",E16.3 Increased secretion of glucagon,E16.4 Abnormal secretion of gastrin,E16.8 Other specified disorders of pancreatic internal secretion,""E16.9 Disorder of pancreatic internal secretion, unspecified"",E20 Hypoparathyroidism,E20-E35 Disorders of other endocrine glands,E20.0 Idiopathic hypoparathyroidism,E20.1 Pseudohypoparathyroidism,E20.8 Other hypoparathyroidism,""E20.9 Hypoparathyroidism, unspecified"",E21 Hyperparathyroidism and other disorders of parathyroid gland,E21.0 Primary hyperparathyroidism,""E21.1 Secondary hyperparathyroidism, not elsewhere classified"",E21.2 Other hyperparathyroidism,""E21.3 Hyperparathyroidism, unspecified"",E21.4 Other specified disorders of parathyroid gland,""E21.5 Disorder of parathyroid gland, unspecified"",E22 Hyperfunction of pituitary gland,E22.0 Acromegaly and pituitary gigantism,E22.1 Hyperfunction of pituitary gland - Hyperprolactinaemia,E22.2 Syndrome of inappropriate secretion of antidiuretic hormone,E22.8 Other hyperfunction of pituitary gland,""E22.9 Hyperfunction of pituitary gland, unspecified"",E23 Hypofunction and other disorders of pituitary gland,E23.0 Hypofunction and other disorders of pituitary gland - Hypopituitarism,E23.1 Hypofunction and other disorders of pituitary gland - Drug-induced hypopituitarism,E23.2 Hypofunction and other disorders of pituitary gland - Diabetes insipidus,""E23.3 Hypofunction and other disorders of pituitary gland - Hypothalamic dysfunction, not elsewhere classified"",E23.6 Other disorders of pituitary gland,""E23.7 Disorder of pituitary gland, unspecified"",E24 Cushing syndrome,E24.0 Pituitary-dependent Cushing disease,E24.1 Nelson syndrome,E24.2 Drug-induced Cushing syndrome,E24.3 Ectopic ACTH syndrome,E24.4 Alcohol-induced pseudo-Cushing syndrome,E24.8 Other Cushing syndrome,""E24.9 Cushing syndrome, unspecified"",E25 Adrenogenital disorders,E25.0 Congenital adrenogenital disorders associated with enzyme deficiency,E25.8 Other adrenogenital disorders,""E25.9 Adrenogenital disorder, unspecified"",E26 Hyperaldosteronism,E26.0 Primary hyperaldosteronism,E26.1 Secondary hyperaldosteronism,E26.8 Other hyperaldosteronism,""E26.9 Hyperaldosteronism, unspecified"",E27 Other disorders of adrenal gland,E27.0 Other adrenocortical overactivity,E27.1 Other disorders of adrenal gland - Primary adrenocortical insufficiency,E27.2 Other disorders of adrenal gland - Addisonian crisis,E27.3 Other disorders of adrenal gland - Drug-induced adrenocortical insufficiency,E27.4 Other and unspecified adrenocortical insufficiency,E27.5 Other disorders of adrenal gland - Adrenomedullary hyperfunction,E27.8 Other specified disorders of adrenal gland,""E27.9 Disorder of adrenal gland, unspecified"",E28 Ovarian dysfunction,E28.0 Ovarian dysfunction - Estrogen excess,E28.1 Ovarian dysfunction - Androgen excess,E28.2 Polycystic ovarian syndrome,E28.3 Primary ovarian failure,E28.8 Other ovarian dysfunction,""E28.9 Ovarian dysfunction, unspecified"",E29 Testicular dysfunction,E29.0 Testicular hyperfunction,E29.1 Testicular hypofunction,E29.8 Other testicular dysfunction,""E29.9 Testicular dysfunction, unspecified"",""E30 Disorders of puberty, not elsewhere classified"",E30.0 Delayed puberty,E30.1 Precocious puberty,E30.8 Other disorders of puberty,""E30.9 Disorder of puberty, unspecified"",E31 Polyglandular dysfunction,E31.0 Autoimmune polyglandular failure,E31.1 Polyglandular hyperfunction,E31.8 Other polyglandular dysfunction,""E31.9 Polyglandular dysfunction, unspecified"",E32 Diseases of thymus,E32.0 Persistent hyperplasia of thymus,E32.1 Abscess of thymus,E32.8 Other diseases of thymus,""E32.9 Disease of thymus, unspecified"",E34 Other endocrine disorders,E34.0 Other endocrine disorders - Carcinoid syndrome,E34.1 Other hypersecretion of intestinal hormones,""E34.2 Other endocrine disorders - Ectopic hormone secretion, not elsewhere classified"",""E34.3 Other endocrine disorders - Short stature, not elsewhere classified"",E34.4 Other endocrine disorders - Constitutional tall stature,E34.5 Other endocrine disorders - Androgen resistance syndrome,E34.8 Other specified endocrine disorders,""E34.9 Endocrine disorder, unspecified"",E35 Disorders of endocrine glands in diseases classified elsewhere,E35.0 Disorders of thyroid gland in diseases classified elsewhere,E35.1 Disorders of adrenal glands in diseases classified elsewhere,E35.8 Disorders of other endocrine glands in diseases classified elsewhere,E40 Kwashiorkor,E40-E46 Malnutrition,E41 Nutritional marasmus,E42 Marasmic kwashiorkor,E43 Unspecified severe protein-energy malnutrition,E44 Protein-energy malnutrition of moderate and mild degree,E44.0 Moderate protein-energy malnutrition,E44.1 Mild protein-energy malnutrition,E45 Retarded development following protein-energy malnutrition,E46 Unspecified protein-energy malnutrition,E50 Vitamin A deficiency,E50-E64 Other nutritional deficiencies,E50.0 Vitamin A deficiency with conjunctival xerosis,E50.1 Vitamin A deficiency with Bitot spot and conjunctival xerosis,E50.2 Vitamin A deficiency with corneal xerosis,E50.3 Vitamin A deficiency with corneal ulceration and xerosis,E50.4 Vitamin A deficiency with keratomalacia,E50.5 Vitamin A deficiency with night blindness,E50.6 Vitamin A deficiency with xerophthalmic scars of cornea,E50.7 Other ocular manifestations of vitamin A deficiency,E50.8 Other manifestations of vitamin A deficiency,""E50.9 Vitamin A deficiency, unspecified"",E51 Thiamine deficiency,E51.1 Thiamine deficiency - Beriberi,E51.2 Thiamine deficiency - Wernicke encephalopathy,E51.8 Other manifestations of thiamine deficiency,""E51.9 Thiamine deficiency, unspecified"",E52 Niacin deficiency [pellagra],E53 Deficiency of other B group vitamins,E53.0 Riboflavin deficiency,E53.1 Pyridoxine deficiency,E53.8 Deficiency of other specified B group vitamins,""E53.9 Vitamin B deficiency, unspecified"",E54 Ascorbic acid deficiency,E55 Vitamin D deficiency,""E55.0 Vitamin D deficiency - Rickets, active"",""E55.9 Vitamin D deficiency, unspecified"",E56 Other vitamin deficiencies,E56.0 Deficiency of vitamin E,E56.1 Deficiency of vitamin K,E56.8 Deficiency of other vitamins,""E56.9 Vitamin deficiency, unspecified"",E58 Dietary calcium deficiency,E59 Dietary selenium deficiency,E60 Dietary zinc deficiency,E61 Deficiency of other nutrient elements,E61.0 Copper deficiency,E61.1 Iron deficiency,E61.2 Magnesium deficiency,E61.3 Manganese deficiency,E61.4 Chromium deficiency,E61.5 Molybdenum deficiency,E61.6 Vanadium deficiency,E61.7 Deficiency of multiple nutrient elements,E61.8 Deficiency of other specified nutrient elements,""E61.9 Deficiency of nutrient element, unspecified"",E63 Other nutritional deficiencies,E63.0 Other nutritional deficiencies - Essential fatty acid [EFA] deficiency,E63.1 Other nutritional deficiencies - Imbalance of constituents of food intake,E63.8 Other specified nutritional deficiencies,""E63.9 Nutritional deficiency, unspecified"",E64 Sequelae of malnutrition and other nutritional deficiencies,E64.0 Sequelae of protein-energy malnutrition,E64.1 Sequelae of vitamin A deficiency,E64.2 Sequelae of vitamin C deficiency,E64.3 Sequelae of rickets,E64.8 Sequelae of other nutritional deficiencies,E64.9 Sequelae of unspecified nutritional deficiency,E65 Localized adiposity,E65-E68 Obesity and other hyperalimentation,E66 Obesity,E66.0 Obesity due to excess calories,E66.1 Drug-induced obesity,E66.2 Extreme obesity with alveolar hypoventilation,E66.8 Other obesity,""E66.9 Obesity, unspecified"",E67 Other hyperalimentation,E67.0 Other hyperalimentation - Hypervitaminosis A,E67.1 Other hyperalimentation - Hypercarotenaemia,E67.2 Other hyperalimentation - syndrome,E67.3 Other hyperalimentation - Hypervitaminosis D,E67.8 Other specified hyperalimentation,E68 Sequelae of hyperalimentation,E70 Disorders of aromatic amino-acid metabolism,E70-E90 Metabolic disorders,E70.0 Disorders of aromatic amino-acid metabolism - Classical phenylketonuria,E70.1 Disorders of aromatic amino-acid metabolism - Other hyperphenylalaninaemias,E70.2 Disorders of tyrosine metabolism,E70.3 Disorders of aromatic amino-acid metabolism - Albinism,E70.8 Other disorders of aromatic amino-acid metabolism,""E70.9 Disorder of aromatic amino-acid metabolism, unspecified"",E71 Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism,E71.0 Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism - Maple-syrup-urine disease,E71.1 Other disorders of branched-chain amino-acid metabolism,""E71.2 Disorder of branched-chain amino-acid metabolism, unspecified"",E71.3 Disorders of fatty-acid metabolism,E72 Other disorders of amino-acid metabolism,E72.0 Disorders of amino-acid transport,E72.1 Disorders of sulfur-bearing amino-acid metabolism,E72.2 Disorders of urea cycle metabolism,E72.3 Disorders of lysine and hydroxylysine metabolism,E72.4 Disorders of ornithine metabolism,E72.5 Disorders of glycine metabolism,E72.8 Other specified disorders of amino-acid metabolism,""E72.9 Disorder of amino-acid metabolism, unspecified"",E73 Lactose intolerance,E73.0 Lactose intolerance - Congenital lactase deficiency,E73.1 Lactose intolerance - Secondary lactase deficiency,E73.8 Other lactose intolerance,""E73.9 Lactose intolerance, unspecified"",E74 Other disorders of carbohydrate metabolism,E74.0 Other disorders of carbohydrate metabolism - Glycogen storage disease,E74.1 Disorders of fructose metabolism,E74.2 Disorders of galactose metabolism,E74.3 Other disorders of intestinal carbohydrate absorption,E74.4 Disorders of pyruvate metabolism and gluconeogenesis,E74.8 Other specified disorders of carbohydrate metabolism,""E74.9 Disorder of carbohydrate metabolism, unspecified"",E75 Disorders of sphingolipid metabolism and other lipid storage disorders,E75.0 Disorders of sphingolipid metabolism and other lipid storage disorders - gangliosidosis,E75.1 Other gangliosidosis,E75.2 Other sphingolipidosis,""E75.3 Sphingolipidosis, unspecified"",E75.4 Neuronal ceroid lipofuscinosis,E75.5 Other lipid storage disorders,""E75.6 Lipid storage disorder, unspecified"",E76 Disorders of glycosaminoglycan metabolism,""E76.0 Disorders of glycosaminoglycan metabolism - Mucopolysaccharidosis, type I"",""E76.1 Disorders of glycosaminoglycan metabolism - Mucopolysaccharidosis, type II"",E76.2 Disorders of glycosaminoglycan metabolism - Other mucopolysaccharidoses,""E76.3 Disorders of glycosaminoglycan metabolism - Mucopolysaccharidosis, unspecified"",E76.8 Other disorders of glucosaminoglycan metabolism,""E76.9 Disorder of glucosaminoglycan metabolism, unspecified"",E77 Disorders of glycoprotein metabolism,E77.0 Defects in post-translational modification of lysosomal enzymes,E77.1 Defects in glycoprotein degradation,E77.8 Other disorders of glycoprotein metabolism,""E77.9 Disorder of glycoprotein metabolism, unspecified"",E78 Disorders of lipoprotein metabolism and other lipidaemias,E78.0 Disorders of lipoprotein metabolism and other lipidaemias - Pure hypercholesterolaemia,E78.1 Disorders of lipoprotein metabolism and other lipidaemias - Pure hyperglyceridaemia,E78.2 Disorders of lipoprotein metabolism and other lipidaemias - Mixed hyperlipidaemia,E78.3 Disorders of lipoprotein metabolism and other lipidaemias - Hyperchylomicronaemia,E78.4 Other hyperlipidaemia,""E78.5 Disorders of lipoprotein metabolism and other lipidaemias - Hyperlipidaemia, unspecified"",E78.6 Lipoprotein deficiency,E78.8 Other disorders of lipoprotein metabolism,""E78.9 Disorder of lipoprotein metabolism, unspecified"",E79 Disorders of purine and pyrimidine metabolism,E79.0 Hyperuricaemia without signs of inflammatory arthritis and tophaceous disease,E79.1 Disorders of purine and pyrimidine metabolism - Lesch-Nyhan syndrome,E79.8 Other disorders of purine and pyrimidine metabolism,""E79.9 Disorder of purine and pyrimidine metabolism, unspecified"",E80 Disorders of porphyrin and bilirubin metabolism,E80.0 Disorders of porphyrin and bilirubin metabolism - Hereditary erythropoietic porphyria,E80.1 Disorders of porphyrin and bilirubin metabolism - Porphyria cutanea tarda,E80.2 Disorders of porphyrin and bilirubin metabolism - Other porphyria,E80.3 Defects of catalase and peroxidase,E80.4 Disorders of porphyrin and bilirubin metabolism - Gilbert syndrome,E80.5 Disorders of porphyrin and bilirubin metabolism - Crigler-Najjar syndrome,E80.6 Other disorders of bilirubin metabolism,""E80.7 Disorder of bilirubin metabolism, unspecified"",E83 Disorders of mineral metabolism,E83.0 Disorders of copper metabolism,E83.1 Disorders of iron metabolism,E83.2 Disorders of zinc metabolism,E83.3 Disorders of phosphorus metabolism and phosphatases,E83.4 Disorders of magnesium metabolism,E83.5 Disorders of calcium metabolism,E83.8 Other disorders of mineral metabolism,""E83.9 Disorder of mineral metabolism, unspecified"",E84 Cystic fibrosis,E84.0 Cystic fibrosis with pulmonary manifestations,E84.1 Cystic fibrosis with intestinal manifestations,E84.8 Cystic fibrosis with other manifestations,""E84.9 Cystic fibrosis, unspecified"",E85 Amyloidosis,E85.0 Non-neuropathic heredofamilial amyloidosis,E85.1 Neuropathic heredofamilial amyloidosis,""E85.2 Heredofamilial amyloidosis, unspecified"",E85.3 Secondary systemic amyloidosis,E85.4 Organ-limited amyloidosis,E85.8 Other amyloidosis,""E85.9 Amyloidosis, unspecified"",E86 Volume depletion,""E87 Other disorders of fluid, electrolyte and acid-base balance"",E87.0 Hyperosmolality and hypernatraemia,E87.1 Hypo-osmolality and hyponatraemia,""E87.2 Other disorders of fluid, electrolyte and acid-base balance - Acidosis"",""E87.3 Other disorders of fluid, electrolyte and acid-base balance - Alkalosis"",E87.4 Mixed disorder of acid-base balance,""E87.5 Other disorders of fluid, electrolyte and acid-base balance - Hyperkalaemia"",""E87.6 Other disorders of fluid, electrolyte and acid-base balance - Hypokalaemia"",E87.7 Fluid overload,""E87.8 Other disorders of electrolyte and fluid balance, not elsewhere classified"",E88 Other metabolic disorders,""E88.0 Disorders of plasma-protein metabolism, not elsewhere classified"",""E88.1 Other metabolic disorders - Lipodystrophy, not elsewhere classified"",""E88.2 Other metabolic disorders - Lipomatosis, not elsewhere classified"",E88.3 Other metabolic disorders - Tumour lysis syndrome,E88.8 Other specified metabolic disorders,""E88.9 Metabolic disorder, unspecified"",""E89 Postprocedural endocrine and metabolic disorders, not elsewhere classified"",E89.0 Postprocedural hypothyroidism,E89.1 Postprocedural hypoinsulinaemia,E89.2 Postprocedural hypoparathyroidism,E89.3 Postprocedural hypopituitarism,E89.4 Postprocedural ovarian failure,E89.5 Postprocedural testicular hypofunction,E89.6 Postprocedural adrenocortical(-medullary) hypofunction,E89.8 Other postprocedural endocrine and metabolic disorders,""E89.9 Postprocedural endocrine and metabolic disorder, unspecified"",E90 Nutritional and metabolic disorders in diseases classified elsewhere,F00 Dementia in Alzheimer disease,""F00-F09 Organic, including symptomatic, mental disorders"",F00.0 Dementia in Alzheimer disease with early onset,F00.1 Dementia in Alzheimer disease with late onset,""F00.2 Dementia in Alzheimer disease, atypical or mixed type"",""F00.9 Dementia in Alzheimer disease, unspecified"",F01 Vascular dementia,F01.0 Vascular dementia of acute onset,F01.1 Multi-infarct dementia,F01.2 Subcortical vascular dementia,F01.3 Mixed cortical and subcortical vascular dementia,F01.8 Other vascular dementia,""F01.9 Vascular dementia, unspecified"",F02 Dementia in other diseases classified elsewhere,F02.0 Dementia in Pick disease,F02.1 Dementia in Creutzfeldt-Jakob disease,F02.2 Dementia in Huntington disease,F02.3 Dementia in Parkinson disease,F02.4 Dementia in human immunodeficiency virus [HIV] disease,F02.8 Dementia in other specified diseases classified elsewhere,F03 Unspecified dementia,""F04 Organic amnesic syndrome, not induced by alcohol and other psychoactive substances"",""F05 Delirium, not induced by alcohol and other psychoactive substances"",""F05.0 Delirium not superimposed on dementia, so described"",F05.1 Delirium superimposed on dementia,F05.8 Other delirium,""F05.9 Delirium, unspecified"",F06 Other mental disorders due to brain damage and dysfunction and to physical disease,F06.0 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic hallucinosis,F06.1 Organic catatonic disorder,F06.2 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic delusional [schizophrenia-like] disorder,F06.3 Organic mood [affective] disorders,F06.4 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic anxiety disorder,F06.5 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic dissociative disorder,F06.6 Other mental disorders due to brain damage and dysfunction and to physical disease - Organic emotionally labile [asthenic] disorder,F06.7 Other mental disorders due to brain damage and dysfunction and to physical disease - Mild cognitive disorder,F06.8 Other specified mental disorders due to brain damage and dysfunction and to physical disease,F06.9 Unspecified mental disorder due to brain damage and dysfunction and to physical disease,""F07 Personality and behavioural disorders due to brain disease, damage and dysfunction"",F07.0 Organic personality disorder,""F07.1 Personality and behavioural disorders due to brain disease, damage and dysfunction - Postencephalitic syndrome"",""F07.2 Personality and behavioural disorders due to brain disease, damage and dysfunction - Postconcussional syndrome"",""F07.8 Other organic personality and behavioural disorders due to brain disease, damage and dysfunction"",""F07.9 Unspecified organic personality and behavioural disorder due to brain disease, damage and dysfunction"",F09 Unspecified organic or symptomatic mental disorder,F10 Mental and behavioural disorders due to use of alcohol,F10-F19 Mental and behavioural disorders due to psychoactive substance use,F11 Mental and behavioural disorders due to use of opioids,F12 Mental and behavioural disorders due to use of cannabinoids,F13 Mental and behavioural disorders due to use of sedatives or hypnotics,F14 Mental and behavioural disorders due to use of cocaine,""F15 Mental and behavioural disorders due to use of other stimulants, including caffeine"",F16 Mental and behavioural disorders due to use of hallucinogens,F17 Mental and behavioural disorders due to use of tobacco,F18 Mental and behavioural disorders due to use of volatile solvents,F19 Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances,F20 Schizophrenia,""F20-F29 Schizophrenia, schizotypal and delusional disorders"",F20.0 Paranoid schizophrenia,F20.1 Hebephrenic schizophrenia,F20.2 Catatonic schizophrenia,F20.3 Undifferentiated schizophrenia,F20.4 Schizophrenia - Post-schizophrenic depression,F20.5 Residual schizophrenia,F20.6 Simple schizophrenia,F20.8 Other schizophrenia,""F20.9 Schizophrenia, unspecified"",F21 Schizotypal disorder,F22 Persistent delusional disorders,F22.0 Delusional disorder,F22.8 Other persistent delusional disorders,""F22.9 Persistent delusional disorder, unspecified"",F23 Acute and transient psychotic disorders,F23.0 Acute polymorphic psychotic disorder without symptoms of schizophrenia,F23.1 Acute polymorphic psychotic disorder with symptoms of schizophrenia,F23.2 Acute schizophrenia-like psychotic disorder,F23.3 Other acute predominantly delusional psychotic disorders,F23.8 Other acute and transient psychotic disorders,""F23.9 Acute and transient psychotic disorder, unspecified"",F24 Induced delusional disorder,F25 Schizoaffective disorders,""F25.0 Schizoaffective disorder, manic type"",""F25.1 Schizoaffective disorder, depressive type"",""F25.2 Schizoaffective disorder, mixed type"",F25.8 Other schizoaffective disorders,""F25.9 Schizoaffective disorder, unspecified"",F28 Other nonorganic psychotic disorders,F29 Unspecified nonorganic psychosis,F30 Manic episode,F30-F39 Mood [affective] disorders,F30.0 Manic episode - Hypomania,F30.1 Manic episode - Mania without psychotic symptoms,F30.2 Manic episode - Mania with psychotic symptoms,F30.8 Other manic episodes,""F30.9 Manic episode, unspecified"",F31 Bipolar affective disorder,""F31.0 Bipolar affective disorder, current episode hypomanic"",""F31.1 Bipolar affective disorder, current episode manic without psychotic symptoms"",""F31.2 Bipolar affective disorder, current episode manic with psychotic symptoms"",""F31.3 Bipolar affective disorder, current episode mild or moderate depression"",""F31.4 Bipolar affective disorder, current episode severe depression without psychotic symptoms"",""F31.5 Bipolar affective disorder, current episode severe depression with psychotic symptoms"",""F31.6 Bipolar affective disorder, current episode mixed"",""F31.7 Bipolar affective disorder, currently in remission"",F31.8 Other bipolar affective disorders,""F31.9 Bipolar affective disorder, unspecified"",F32 Depressive episode,F32.0 Mild depressive episode,F32.1 Moderate depressive episode,F32.2 Severe depressive episode without psychotic symptoms,F32.3 Severe depressive episode with psychotic symptoms,F32.8 Other depressive episodes,""F32.9 Depressive episode, unspecified"",F33 Recurrent depressive disorder,""F33.0 Recurrent depressive disorder, current episode mild"",""F33.1 Recurrent depressive disorder, current episode moderate"",""F33.2 Recurrent depressive disorder, current episode severe without psychotic symptoms"",""F33.3 Recurrent depressive disorder, current episode severe with psychotic symptoms"",""F33.4 Recurrent depressive disorder, currently in remission"",F33.8 Other recurrent depressive disorders,""F33.9 Recurrent depressive disorder, unspecified"",F34 Persistent mood [affective] disorders,F34.0 Persistent mood [affective] disorders - Cyclothymia,F34.1 Persistent mood [affective] disorders - Dysthymia,F34.8 Other persistent mood [affective] disorders,""F34.9 Persistent mood [affective] disorder, unspecified"",F38 Other mood [affective] disorders,F38.0 Other single mood [affective] disorders,F38.1 Other recurrent mood [affective] disorders,F38.8 Other specified mood [affective] disorders,F39 Unspecified mood [affective] disorder,F40 Phobic anxiety disorders,""F40-F48 Neurotic, stress-related and somatoform disorders"",F40.0 Phobic anxiety disorders - Agoraphobia,F40.1 Phobic anxiety disorders - Social phobias,F40.2 Phobic anxiety disorders - Specific (isolated) phobias,F40.8 Other phobic anxiety disorders,""F40.9 Phobic anxiety disorder, unspecified"",F41 Other anxiety disorders,F41.0 Panic disorder [episodic paroxysmal anxiety],F41.1 Generalized anxiety disorder,F41.2 Mixed anxiety and depressive disorder,F41.3 Other mixed anxiety disorders,F41.8 Other specified anxiety disorders,""F41.9 Anxiety disorder, unspecified"",F42 Obsessive-compulsive disorder,F42.0 Obsessive-compulsive disorder - Predominantly obsessional thoughts or ruminations,F42.1 Obsessive-compulsive disorder - Predominantly compulsive acts [obsessional rituals],F42.2 Obsessive-compulsive disorder - Mixed obsessional thoughts and acts,F42.8 Other obsessive-compulsive disorders,""F42.9 Obsessive-compulsive disorder, unspecified"",""F43 Reaction to severe stress, and adjustment disorders"",F43.0 Acute stress reaction,F43.1 Post-traumatic stress disorder,F43.2 Adjustment disorders,F43.8 Other reactions to severe stress,""F43.9 Reaction to severe stress, unspecified"",F44 Dissociative [conversion] disorders,F44.0 Dissociative amnesia,F44.1 Dissociative fugue,F44.2 Dissociative stupor,F44.3 Trance and possession disorders,F44.4 Dissociative motor disorders,F44.5 Dissociative convulsions,F44.6 Dissociative anaesthesia and sensory loss,F44.7 Mixed dissociative [conversion] disorders,F44.8 Other dissociative [conversion] disorders,""F44.9 Dissociative [conversion] disorder, unspecified"",F45 Somatoform disorders,F45.0 Somatoform disorders - Somatization disorder,F45.1 Undifferentiated somatoform disorder,F45.2 Somatoform disorders - Hypochondriacal disorder,F45.3 Somatoform autonomic dysfunction,F45.4 Persistent somatoform pain disorder,F45.8 Other somatoform disorders,""F45.9 Somatoform disorder, unspecified"",F48 Other neurotic disorders,F48.0 Other neurotic disorders - Neurasthenia,F48.1 Other neurotic disorders - Depersonalization-derealization syndrome,F48.8 Other specified neurotic disorders,""F48.9 Neurotic disorder, unspecified"",F50 Eating disorders,F50-F59 Behavioural syndromes associated with physiological disturbances and physical factors,F50.0 Eating disorders - Anorexia nervosa,F50.1 Eating disorders - Atypical anorexia nervosa,F50.2 Eating disorders - Bulimia nervosa,F50.3 Eating disorders - Atypical bulimia nervosa,F50.4 Overeating associated with other psychological disturbances,F50.5 Eating disorders - Vomiting associated with other psychological disturbances,F50.8 Other eating disorders,""F50.9 Eating disorder, unspecified"",F51 Nonorganic sleep disorders,F51.0 Nonorganic insomnia,F51.1 Nonorganic hypersomnia,F51.2 Nonorganic disorder of the sleep-wake schedule,F51.3 Sleepwalking [somnambulism],F51.4 Sleep terrors [night terrors],F51.5 Nonorganic sleep disorders - Nightmares,F51.8 Other nonorganic sleep disorders,""F51.9 Nonorganic sleep disorder, unspecified"",""F52 Sexual dysfunction, not caused by organic disorder or disease"",F52.0 Lack or loss of sexual desire,F52.1 Sexual aversion and lack of sexual enjoyment,""F52.2 Sexual dysfunction, not caused by organic disorder or disease - Failure of genital response"",F52.3 Orgasmic dysfunction,""F52.4 Sexual dysfunction, not caused by organic disorder or disease - Premature ejaculation"",F52.5 Nonorganic vaginismus,F52.6 Nonorganic dyspareunia,F52.7 Excessive sexual drive,""F52.8 Other sexual dysfunction, not caused by organic disorder or disease"",""F52.9 Unspecified sexual dysfunction, not caused by organic disorder or disease"",""F53 Mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.0 Mild mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.1 Severe mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.8 Other mental and behavioural disorders associated with the puerperium, not elsewhere classified"",""F53.9 Puerperal mental disorder, unspecified"",F54 Psychological and behavioural factors associated with disorders or diseases classified elsewhere,F55 Abuse of non-dependence-producing substances,F59 Unspecified behavioural syndromes associated with physiological disturbances and physical factors,F60 Specific personality disorders,F60-F69 Disorders of adult personality and behaviour,F60.0 Paranoid personality disorder,F60.1 Schizoid personality disorder,F60.2 Dissocial personality disorder,F60.3 Emotionally unstable personality disorder,F60.4 Histrionic personality disorder,F60.5 Anankastic personality disorder,F60.6 Anxious [avoidant] personality disorder,F60.7 Dependent personality disorder,F60.8 Other specific personality disorders,""F60.9 Personality disorder, unspecified"",F61 Mixed and other personality disorders,""F62 Enduring personality changes, not attributable to brain damage and disease"",F62.0 Enduring personality change after catastrophic experience,F62.1 Enduring personality change after psychiatric illness,F62.8 Other enduring personality changes,""F62.9 Enduring personality change, unspecified"",F63 Habit and impulse disorders,F63.0 Habit and impulse disorders - Pathological gambling,F63.1 Habit and impulse disorders - Pathological fire-setting [pyromania],F63.2 Habit and impulse disorders - Pathological stealing [kleptomania],F63.3 Habit and impulse disorders - Trichotillomania,F63.8 Other habit and impulse disorders,""F63.9 Habit and impulse disorder, unspecified"",F64 Gender identity disorders,F64.0 Gender identity disorders - Transsexualism,F64.1 Gender identity disorders - Dual-role transvestism,F64.2 Gender identity disorder of childhood,F64.8 Other gender identity disorders,""F64.9 Gender identity disorder, unspecified"",F65 Disorders of sexual preference,F65.0 Disorders of sexual preference - Fetishism,F65.1 Disorders of sexual preference - Fetishistic transvestism,F65.2 Disorders of sexual preference - Exhibitionism,F65.3 Disorders of sexual preference - Voyeurism,F65.4 Disorders of sexual preference - Paedophilia,F65.5 Disorders of sexual preference - Sadomasochism,F65.6 Multiple disorders of sexual preference,F65.8 Other disorders of sexual preference,""F65.9 Disorder of sexual preference, unspecified"",F66 Psychological and behavioural disorders associated with sexual development and orientation,F66.0 Sexual maturation disorder,F66.1 Egodystonic sexual orientation,F66.2 Sexual relationship disorder,F66.8 Other psychosexual development disorders,""F66.9 Psychosexual development disorder, unspecified"",F68 Other disorders of adult personality and behaviour,F68.0 Elaboration of physical symptoms for psychological reasons,""F68.1 Intentional production or feigning of symptoms or disabilities, either physical or psychological [factitious disorder]"",F68.8 Other specified disorders of adult personality and behaviour,F69 Unspecified disorder of adult personality and behaviour,F70 Mild mental retardation,F70-F79 Mental retardation,F71 Moderate mental retardation,F72 Severe mental retardation,F73 Profound mental retardation,F78 Other mental retardation,F79 Unspecified mental retardation,F80 Specific developmental disorders of speech and language,F80-F89 Disorders of psychological development,F80.0 Specific speech articulation disorder,F80.1 Expressive language disorder,F80.2 Receptive language disorder,F80.3 Acquired aphasia with epilepsy [Landau-Kleffner],F80.8 Other developmental disorders of speech and language,""F80.9 Developmental disorder of speech and language, unspecified"",F81 Specific developmental disorders of scholastic skills,F81.0 Specific reading disorder,F81.1 Specific spelling disorder,F81.2 Specific disorder of arithmetical skills,F81.3 Mixed disorder of scholastic skills,F81.8 Other developmental disorders of scholastic skills,""F81.9 Developmental disorder of scholastic skills, unspecified"",F82 Specific developmental disorder of motor function,F83 Mixed specific developmental disorders,F84 Pervasive developmental disorders,F84.0 Pervasive developmental disorders - Childhood autism,F84.1 Pervasive developmental disorders - Atypical autism,F84.2 Pervasive developmental disorders - Rett syndrome,F84.3 Pervasive developmental disorders - Other childhood disintegrative disorder,F84.4 Pervasive developmental disorders - Overactive disorder associated with mental retardation and stereotyped movements,F84.5 Pervasive developmental disorders - Asperger syndrome,F84.8 Other pervasive developmental disorders,""F84.9 Pervasive developmental disorder, unspecified"",F88 Other disorders of psychological development,F89 Unspecified disorder of psychological development,F90 Hyperkinetic disorders,F90-F98 Behavioural and emotional disorders with onset usually occurring in childhood and adolescence,F90.0 Hyperkinetic disorders - Disturbance of activity and attention,F90.1 Hyperkinetic conduct disorder,F90.8 Other hyperkinetic disorders,""F90.9 Hyperkinetic disorder, unspecified"",F91 Conduct disorders,F91.0 Conduct disorder confined to the family context,F91.1 Unsocialized conduct disorder,F91.2 Socialized conduct disorder,F91.3 Conduct disorders - Oppositional defiant disorder,F91.8 Other conduct disorders,""F91.9 Conduct disorder, unspecified"",F92 Mixed disorders of conduct and emotions,F92.0 Depressive conduct disorder,F92.8 Other mixed disorders of conduct and emotions,""F92.9 Mixed disorder of conduct and emotions, unspecified"",F93 Emotional disorders with onset specific to childhood,F93.0 Separation anxiety disorder of childhood,F93.1 Phobic anxiety disorder of childhood,F93.2 Social anxiety disorder of childhood,F93.3 Emotional disorders with onset specific to childhood - Sibling rivalry disorder,F93.8 Other childhood emotional disorders,""F93.9 Childhood emotional disorder, unspecified"",F94 Disorders of social functioning with onset specific to childhood and adolescence,F94.0 Disorders of social functioning with onset specific to childhood and adolescence - Elective mutism,F94.1 Reactive attachment disorder of childhood,F94.2 Disinhibited attachment disorder of childhood,F94.8 Other childhood disorders of social functioning,""F94.9 Childhood disorder of social functioning, unspecified"",F95 Tic disorders,F95.0 Transient tic disorder,F95.1 Chronic motor or vocal tic disorder,F95.2 Combined vocal and multiple motor tic disorder [de la Tourette],F95.8 Other tic disorders,""F95.9 Tic disorder, unspecified"",F98 Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence,F98.0 Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence - Nonorganic enuresis,F98.1 Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence - Nonorganic encopresis,F98.2 Feeding disorder of infancy and childhood,F98.3 Pica of infancy and childhood,F98.4 Stereotyped movement disorders,F98.5 Stuttering [stammering],F98.6 Cluttering,F98.8 Other specified behavioural and emotional disorders with onset usually occurring in childhood and adolescence,F98.9 Unspecified behavioural and emotional disorders with onset usually occurring in childhood and adolescence,""F99 Mental disorder, not otherwise specified"",F99-F99 Unspecified mental disorder,""IV Endocrine, nutritional and metabolic diseases"",V Mental and behavioural disorders","BASE OF TONGUE,""UTERUS, NOS"",""Base of tongue, NOS"",""Uterus, NOS""","""Carcinoma, metastatic, NOS"",Carcinomatosis",True,linkage possibility description cohort 1,Closed dataset,Release description cohort 1,Linkage options cohort 1,Test lead organisation 1,"general research use,health or medical or biomedical research","genetic studies only,publication required,ethics approval required",Data access conditions description text cohort 1 - yes fee,True,https://doi.org/10.1093/ije/dyz227,"https://doi.org/10.5694/mja12.10698,https://doi.org/10.1002/ijc.32791",Broad consent,"This is the funding statement for cohort 1. It's not too long but covers more than one line, I think, particularly if I fill it up with blah blah blah (check for ""until now"" at the end) Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW","This is the acknowledgement statement for cohort 1. It's not too long but covers more than one line, I think, particularly if I fill it up with blah blah blah (check for ""until now"" at the end) Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW",Some supplementary information for cohort 1.,Cohort study,,,,,,,,"testCohort1,testCohort2,AP,COD_FARMACI_SPF,SPECIALISTICA,TestDataSourceID",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testCohort2,https://pid-for-testcohort2.org,acronym for test cohort 2,Name for test cohort 2,Local name for test cohort 2,"test, cohort2, Molgenis, testing",https://www.molgenis.org,test lead organisation 2,id for test additional organisation 2,"This is the Test cohort 2. It has ""other"" options where possible. No end year, so ""ongoing"". Design paper = Birth of a cohort — the first 20 years of the Raine study, publications = other papers. No to data access fee. Here we have some extra text to check the read less / read more functionality on the cohort detail page.",molgenis-support@umcg.nl,Other type,Cohort 2 other type,Longitudinal,Description of the design used for cohort 2,,,Retrospective,,,100,50,United Kingdom of Great Britain and Northern Ireland (the),Bradford,"Prenatal,Child (2-12 years)",Age of majority inclusion criterion,Other inclusion criteria cohort 2,1955,,"F10 Mental and behavioural disorders due to use of alcohol,F11 Mental and behavioural disorders due to use of opioids","KIDNEY,""Kidney, NOS""",Carcinomatosis,False,linkage possibility description cohort 2,Annually,Release description cohort 2,Linkage options cohort 2,,general research use,publication required,Data access conditions description text cohort 2 - no fee,False,https://doi.org/10.5694/mja12.10698,"https://doi.org/10.2337/dc21-2662,https://doi.org/10.1186/s12916-023-02769-y",Study specific consent,"This is the funding statement for cohort 2. It's not too long but covers more than one line, I think, particularly if I fill it up with blah blah blah (check for ""until now"" at the end) Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW.","This is the acknowledgements text for cohort 2. Again I need to fill it up to test - check that ""until now"" has been shown at the bottom Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum UNTIL NOW",Some supplementary information for cohort 2 blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah UNTIL NOW,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -EUChildNetwork,,EUChildNetwork,The EU Child Cohort Network,,,https://lifecycle-project.eu/for-scientists/the-eu-child-cohort-network/,,,"The EU Child Cohort Network: A Europe-wide network of cohort studies started in early life Cohort studies started from pregnancy or childhood give the unique opportunity to relate early-life stressors with variation in development, health and disease throughout the life course. Moreover, advanced analytical approaches used in observational studies can help identify causality and potential for early-life interventions on factors that cannot be easily studied in experimental settings. These factors include socioeconomic circumstances, migration, urban environment as well as lifestyle-related determinants and will be given particular focus in our project. We will set up a European pregnancy and childhood cohort, the EU Child Cohort Network, which brings together extensive existing data from more than 250,000 European children and their parents. These cohorts enable studies in multiple generations because of their detailed phenotyping of both parents and children. The network will bring together existing successful multidisciplinary cohort studies, which all started before or during pregnancy or in childhood. Together, they span the full life course and contain detailed phenotypical information as well as biological samples. The EU Child Cohort Network will optimize exploitation of more than 40 available cohort resources in Europe and will enable innovative research on identification of novel markers of early-life stressors related to health trajectories throughout the full life cycle. Although LifeCycle partners and their cohorts have taken the initiative for this unique collaboration, the network is open to other partners with population-based cohorts started in early life, specifically those from Eastern and Southern Europe. To ensure that this will be a Europe-wide, open and sustainable network, which exceeds the LifeCycle Project duration, we will introduce a data sharing platform taking account of ethical, legal and societal implications, we will organize yearly meetings open to all European pregnancy and child cohort researchers and we will start a fellowship programme for exchange between these European cohorts.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,harmonization,,,,"NOMA,RS2,RS1,RS3,KANC,ALSPAC,GECKO,GenR","LifeCycle_CDM,LongITools_CDM","LifeCycle,ATHLETE,LongITools","LifeCycle,ATHLETE,LongITools,NOMA,RS2,RS1,RS3,KANC,ALSPAC,GECKO,GenR",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -OOM,,OOM,OOM,,,,"UMCU,GSK","PHARMO.I,UoD,LAREB,GSK,USWAN,UMCU,UMCG,ULST,UPP,UB,KUL,NP,SAN,FISABIO,LIPRE,DHL.I,BBMRI-ERIC,JP,CHUT,FERR,SIDIAP.I,TAK,CNR-IFC,ARS.TOSCANA,MLT.I,AU,AEMPS,OVGU,UM,UKZN,IHD,UCB,UiO","The main goal of OOM is to establish a trusted ecosystem that can efficiently, systematically, and in an ethically responsible manner, generate and disseminate reliable evidence-based information regarding effects of medications used during pregnancy and breastfeeding to women and their healthcare providers. This will be achieved by generating, cataloguing, linking, collecting and analysing data from pharmacovigilance, modelling, routine healthcare, breastmilk samples through a large network.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,,,"ABL,DHL,EUROCAT NNL","COD_FARMACI_SPF,AP,ARS_PS,EXE,PHT,SEA,SPA,VCN,SALM,MBRN,RMR","GECKO,GenR,RS1,RS2,RS3",OOM_CDM,"LifeCycle,ATHLETE","LifeCycle,ATHLETE,GECKO,GenR,RS1,RS2,RS3,ABL,DHL,EUROCAT NNL,COD_FARMACI_SPF,AP,ARS_PS,EXE,PHT,SEA,SPA,VCN,SALM,MBRN,RMR",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -LifeCycle,,LifeCycle,The LifeCycle Project,,,https://lifecycle-project.eu/,,,"A Europe-wide network of cohort studies started in early life Cohort studies started from pregnancy or childhood give the unique opportunity to relate early-life stressors with variation in development, health and disease throughout the life course. Moreover, advanced analytical approaches used in observational studies can help identify causality and potential for early-life interventions on factors that cannot be easily studied in experimental settings. These factors include socioeconomic circumstances, migration, urban environment as well as lifestyle-related determinants and will be given particular focus in our project. We will set up a European pregnancy and childhood cohort, the EU Child Cohort Network, which brings together extensive existing data from more than 250,000 European children and their parents. These cohorts enable studies in multiple generations because of their detailed phenotyping of both parents and children. The network will bring together existing successful multidisciplinary cohort studies, which all started before or during pregnancy or in childhood. Together, they span the full life course and contain detailed phenotypical information as well as biological samples. The EU Child Cohort Network will optimize exploitation of more than 40 available cohort resources in Europe and will enable innovative research on identification of novel markers of early-life stressors related to health trajectories throughout the full life cycle. Although LifeCycle partners and their cohorts have taken the initiative for this unique collaboration, the network is open to other partners with population-based cohorts started in early life, specifically those from Eastern and Southern Europe. To ensure that this will be a Europe-wide, open and sustainable network, which exceeds the LifeCycle Project duration, we will introduce a data sharing platform taking account of ethical, legal and societal implications, we will organize yearly meetings open to all European pregnancy and child cohort researchers and we will start a fellowship programme for exchange between these European cohorts.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,,,,,"ELFE,GECKO,ALSPAC",LifeCycle_CDM,,"ELFE,GECKO,ALSPAC",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ATHLETE,,ATHLETE,Advancing Tools for Human Early Lifecourse Exposome Research and Translation,,,https://athleteproject.eu/,,,"Children are particularly vulnerable to environmental hazards. The ATHLETE project will measure a wide range of environmental exposures (urban, chemical, lifestyle and social risk factors) during pregnancy, childhood, and adolescence. The project will then link this “early-life exposome” to children’s biological responses and cardiometabolic, respiratory, and mental health. The results will help us to better understand and prevent health damage from environmental agents from the earliest parts of the life course onward.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,h2020,,,,"DNBC,PELAGIE,G21,ELSPAC,BIB,GenR,Sepages,INMA,EDEN,MoBa,KANC,GenR Next",ATHLETE_CDM,,"DNBC,PELAGIE,G21,ELSPAC,BIB,GenR,Sepages,INMA,EDEN,MoBa,KANC,GenR Next",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -IPEC,,IPEC,International Psychosis Epidemiology Consortium,,,https://www.ipec-project.com/,UMCG,"UMCG,GGZ Drenthe,GGZ Friesland,Lentis Research,UCPH","There are many early psychosis cohorts in the world. Epidemiological research with these cohorts over the past decades has greatly increased the understanding of distribution and mechanisms of psychotic disorders. Carrying out cross-country comparisons on a larger scale is extremely costly. An alternative strategy is to pool the existing large amount of data from high-quality early psychosis studies at an individual patient level. This approach has multiple advantages: it allows for examining psychosis determinants with greater precision, also including rare exposures and outcomes, focusing on (long-term) follow-up, and making optimal use of already existing data. To achieve this, the International Psychosis Epidemiology Consortium (IPEC) has catalogued and harmonized data from early psychosis cohorts and set up a virtual databank. With this databank, multiple (epidemiological) studies within the scope of the following research question will be conducted: “What drives the course of functional, existential and clinical outcomes of (early) psychosis and how does the social and geographical context shape these patterns?”.",,,,,,,,,,,,,"Denmark,Netherlands (the)",,,,,2023,,,,,,,,,,,,,,,,,,"IPEC was supported by the 2020 SIRS Research Harmonization Group Award which included a grant in the amount of $5000 USD to Prof. Wim Veling and Prof. Craig Morgan; an internal MD-PhD research grant of the University Medical Center Groningen (grant number 18-41) to Vera Brink, MSc; a grant in the amount of 400,000 DKK of the Capital Regions Research council to Dr Nikolai Albert; and the participating institutions (Lentis Psychiatric Institute, GGZ Drenthe, GGZ Friesland, University Center Psychiatry of University Medical Center Groningen, Bispebjerg hospital, Psychiatric Hospital Risskov, and Psychiatric Centre Copenhagen).","IPEC wishes to acknowledge the services of all the study participants, staff, research groups, and institutions collaborating in IPEC, and of MOLGENIS and RoQua, who helped build and maintain the technical infrastructure.",,Network,harmonization,,,,PSYCONN,IPEC_CDM,,PSYCONN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -LongITools,,LongITools,LongITools health & environment dynamics,,,https://longitools.org/,,,"LongITools is a European research project studying the interactions between the environment, lifestyle and health in determining the risks of chronic cardiovascular and metabolic diseases.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,h2020,,,,"NFBC1986,G21,DFBC,ALSPAC,EDEN,NOMA,ELFE,RS2,RS1,ENVIRONAGE,GenR",,,"NFBC1986,G21,DFBC,ALSPAC,EDEN,NOMA,ELFE,RS2,RS1,ENVIRONAGE,GenR",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testNetwork2,https://pid-for-testnetwork2.org,acronym for test network2,name for test network2,,,https://www.molgenis.org,UMCG,"AMC,CYN",test description for new test network,,,,,,,,,,,,,"Germany,Netherlands (the)",,,,,1975,2010,,,,,,,,,,,,,,,https://doi.org/10.1016/S1473-3099(20)30873-2,,"test funding statement for test network - check that ""until now"" has been included blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah until now","test acknowledgements for test network - check that ""until now"" has been included blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah until now",,Network,EU4health - Prevention,"Funding,EU institutional research programme,Non-EU institutional research programme,EMA,National competent authority (NCAs),Other public funding (e.g. hospital or university),Non for-profit organisation (e.g. charity),Pharmaceutical company and other private sector,No external funding,Funding: Other",,"COD_FARMACI_SPF,SPECIALISTICA,AP","testCohort1,testCohort2",testNetwork1_CDM,,"testCohort1,testCohort2,COD_FARMACI_SPF,SPECIALISTICA,AP",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testNetworkofNetworks,https://pid-for-testnetworkofnetworks.org,acronym for test network of networks,name for test network of networks,,,https://www.molgenis.org,UMCG,"AMC,CYN",test description for new test network,,,,,,,,,,,,,"Germany,Netherlands (the)",,,,,1975,2010,,,,,,,,,,,,,,,https://doi.org/10.1016/S1473-3099(20)30873-2,,"test funding statement for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now","test acknowledgements for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now",,Network,EU4health - Prevention,"Funding,EU institutional research programme,Non-EU institutional research programme,EMA,National competent authority (NCAs),Other public funding (e.g. hospital or university),Non for-profit organisation (e.g. charity),Pharmaceutical company and other private sector,No external funding,Funding: Other",,"COD_FARMACI_SPF,SPECIALISTICA,AP","testCohort3,testCohort1,testCohort2",testNetwork1_CDM,"testNetwork1,testNetwork2","testNetwork1,testNetwork2,testCohort3,testCohort1,testCohort2,COD_FARMACI_SPF,SPECIALISTICA,AP",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -testNetwork1,https://pid-for-testnetwork1.org,acronym for test network1,name for test network1,,,https://www.molgenis.org,UMCG,"AMC,CYN",test description for new test network,,,,,,,,,,,,,"Central African Republic (the),Chad",,,,,1975,2010,,,,,,,,,,,,,,,"https://doi.org/10.1016/S1473-3099(20)30873-2,https://doi.org/10.1136/bmjopen-2017-015867",,"test funding statement for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now","test acknowledgements for test network - check that ""until now"" has been included Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. until now",,Network,EU4health - Prevention,"Funding,EU institutional research programme,Non-EU institutional research programme,EMA,National competent authority (NCAs),Other public funding (e.g. hospital or university),Non for-profit organisation (e.g. charity),Pharmaceutical company and other private sector,No external funding,Funding: Other",TestDataSourceID,"COD_FARMACI_SPF,SPECIALISTICA,AP","testCohort3,testCohort4,testCohort1,testCohort2",testNetwork1_CDM,,"testCohort3,testCohort4,testCohort1,testCohort2,TestDataSourceID,COD_FARMACI_SPF,SPECIALISTICA,AP",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ADVANCE Coverage POC,,ADVANCE Coverage POC,ADVANCE POC Study Protocol - Testing new approaches to monitoring benefit/risk with pertussis vaccines as test case. Coverage rates of acellular and whole-cell pertussis-containing vaccines in preschool children,,,,SSI,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,testCohort1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -DRIVE 2019/20,,DRIVE 2019/20,"Brand-specific influenza vaccine effectiveness in Europe, season 2019/20",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -PASS,,PASS,A prospective observational study to assess effectiveness of the training and risk minimisation measures recommended for the usage of the diagnostic agent NeuraCeqTM in the post-authorisation clinical situation: A post-authorisation safety study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -DAHLIA,,DAHLIA,A retrospective nationwide cohort study to investigate the treatment of type 2 diabetic patients in Finland,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -FinACAF,,FinACAF,Finnish AntiCoagulation in Atrial Fibrillation,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -OPTI,,OPTI,"Non-interventional, cross-sectional, multicenter study to describe the exacerbations profile of COPD patients Treated with ICS in a real-life primary care population in Spain.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -IPF,,IPF,Observational Analysis on the Socio-economic Impact of Idiopathic Pulmonary Fibrosis in Spain.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -LEMS,,LEMS,Lambert-Eaton Myasthenic Syndrome (LEMS) Registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -FEIBA-GO,,FEIBA-GO,FEIBA NF GLOBAL OUTCOME STUDY,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ARISE,,ARISE,Aortic Replacement using Individualised Regenerative Allografts: Bridging the Therapeutic Gap,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,testCohort1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -INSPECT,,INSPECT,A retrospectIve chart review study evaluatiNg the longer-term effectiveneSs of darvadstrocel in PatiEnts who CompleTed ADMIRE-CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -LEONARDO,,LEONARDO,"Utilization patterns, access to healthcare facilities and economic assessment of JAKi drugs used in rheumatoid arthritis patients in Tuscany",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ACCESS,,ACCESS,vACcine Covid-19 monitoring readinESS,,,,UMCU,"PHARMO.I,UMCU,UM,LIPRE,JORDIGOL,UB","This listing includes the four different safety protocol templates to monitor COVID-19 vaccine safety. These protocols were prepared on request of EMA and have been reviewed by EMA and stakeholders. Protocols require finalization by the final users and are not conducted as such. This registration includes the following protocols: 1. Cohort event monitoring to assess safety of COVID-19 vaccines using patient reported events, a protocol template from the ACCESS project 2. Rapid assessment of COVID-19 vaccines safety concerns through electronic health records: a protocol template from the ACCESS project 3. Safety evaluation of COVID-19 vaccines through electronic health records: a protocol template from the ACCESS project 4. Safety Protocol for Hospital Case–Based Monitoring of Specific Adverse Events Following COVID-19 Vaccines: A Protocol Template from the ACCESS project Section 19 includes the template protocols. Word documents can be retrieved from study authors or PI. Section 19 includes the final ACCESS report with feasibility assessment",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,testCohort1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -THALIA,,THALIA,A retrospective cohort study to investigate the initiation and persistence of dual antiplatelet treatment after acute coronary syndrome in a Finnish setting,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,testCohort2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -PERSEUS,,PERSEUS,Risk of subsequent cardiovascular events in patients discharged after myocardial infarction,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -SSc-ILD,,SSc-ILD,A Phase I trial to investigate the effect of nintedanib on the pharmacokinetics of a combination of ethinylestradiol and levonorgestrel in female patients with Systemic Sclerosis associated Interstitial Lung Disease,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -EXE,,EXE,EXE,,,,,,Exemptions from copayment,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,It is collected for all residents of the catchment area.,,,,,,,,,,,,,,,,,,,,,,,,"The instance in which an NHS beneficiary from the catchment area is recorded as having a co-payment exemption, such as a chronic disease and poor socioeconomic status.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This table is considered to be complete: whenever an exemption is issued, it is recorded. However people with a chronic disease not necessarily request the corresponding exemption. +ELSPAC,,ELSPAC,ELSPAC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ENVIRONAGE,,ENVIRONAGE,ENVIRonmental influence ON early AGEing,,"air pollution, child, aging, newborn, exposome, telomere length, placenta, omics, cardiovascular, system cognition",https://www.uhasselt.be/Algemene-Informatie-Limburgs-Geboortecohort,UHASSELT,,Within the ongoing population-based prospective birth cohort study ENVIRONAGE we explore new dimensions in the current understanding of human ageing and its interaction with the environment,,Birth cohort,,Longitudinal,,,,"Retrospective,Prospective",,,2000,2000,Belgium,,,,,,,2010,,,,,,,Annually,"Due to ongoing recruitment and follow-up, annual updates are provided of the datasets",No,,health or medical or biomedical research,,Contact Tim Nawrot (tim.nawrot@uhasselt.be) or Michelle Plusquin (Michelle.plusquin@uhasselt.Be),,https://doi.org/10.1093/ije/dyw269,,,"The ENVIRONAGE birth cohort is supported by the European Research Council [ERC-2012-StG.310898], and by funds of the Flemish Scientific Research council [FWO, G.0.733.15.N, G.0.592.14].","The authors are extremely grateful to the participating women and neonates, as well as the staff of the maternity ward, midwives and the staff of the clinical laboratory of East-Limburg Hospital in Genk.",,Cohort study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +EUChildNetwork,,EUChildNetwork,The EU Child Cohort Network,,,https://lifecycle-project.eu/for-scientists/the-eu-child-cohort-network/,,,"The EU Child Cohort Network: A Europe-wide network of cohort studies started in early life Cohort studies started from pregnancy or childhood give the unique opportunity to relate early-life stressors with variation in development, health and disease throughout the life course. Moreover, advanced analytical approaches used in observational studies can help identify causality and potential for early-life interventions on factors that cannot be easily studied in experimental settings. These factors include socioeconomic circumstances, migration, urban environment as well as lifestyle-related determinants and will be given particular focus in our project. We will set up a European pregnancy and childhood cohort, the EU Child Cohort Network, which brings together extensive existing data from more than 250,000 European children and their parents. These cohorts enable studies in multiple generations because of their detailed phenotyping of both parents and children. The network will bring together existing successful multidisciplinary cohort studies, which all started before or during pregnancy or in childhood. Together, they span the full life course and contain detailed phenotypical information as well as biological samples. The EU Child Cohort Network will optimize exploitation of more than 40 available cohort resources in Europe and will enable innovative research on identification of novel markers of early-life stressors related to health trajectories throughout the full life cycle. Although LifeCycle partners and their cohorts have taken the initiative for this unique collaboration, the network is open to other partners with population-based cohorts started in early life, specifically those from Eastern and Southern Europe. To ensure that this will be a Europe-wide, open and sustainable network, which exceeds the LifeCycle Project duration, we will introduce a data sharing platform taking account of ethical, legal and societal implications, we will organize yearly meetings open to all European pregnancy and child cohort researchers and we will start a fellowship programme for exchange between these European cohorts.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,harmonization,,,,"NOMA,RS2,RS1,RS3,KANC,ALSPAC,GECKO,GenR","LifeCycle_CDM,LongITools_CDM","LifeCycle,ATHLETE,LongITools","LifeCycle,ATHLETE,LongITools,NOMA,RS2,RS1,RS3,KANC,ALSPAC,GECKO,GenR",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +OOM,,OOM,OOM,,,,"UMCU,GSK","PHARMO.I,UoD,LAREB,GSK,USWAN,UMCU,UMCG,ULST,UPP,UB,KUL,NP,SAN,FISABIO,LIPRE,DHL.I,BBMRI-ERIC,JP,CHUT,FERR,SIDIAP.I,TAK,CNR-IFC,ARS.TOSCANA,MLT.I,AU,AEMPS,OVGU,UM,UKZN,IHD,UCB,UiO","The main goal of OOM is to establish a trusted ecosystem that can efficiently, systematically, and in an ethically responsible manner, generate and disseminate reliable evidence-based information regarding effects of medications used during pregnancy and breastfeeding to women and their healthcare providers. This will be achieved by generating, cataloguing, linking, collecting and analysing data from pharmacovigilance, modelling, routine healthcare, breastmilk samples through a large network.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,,,"ABL,DHL,EUROCAT NNL","COD_FARMACI_SPF,AP,ARS_PS,EXE,PHT,SEA,SPA,VCN,SALM,MBRN,RMR","GECKO,GenR,RS1,RS2,RS3",OOM_CDM,"LifeCycle,ATHLETE","LifeCycle,ATHLETE,GECKO,GenR,RS1,RS2,RS3,ABL,DHL,EUROCAT NNL,COD_FARMACI_SPF,AP,ARS_PS,EXE,PHT,SEA,SPA,VCN,SALM,MBRN,RMR",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +LifeCycle,,LifeCycle,The LifeCycle Project,,,https://lifecycle-project.eu/,,,"A Europe-wide network of cohort studies started in early life Cohort studies started from pregnancy or childhood give the unique opportunity to relate early-life stressors with variation in development, health and disease throughout the life course. Moreover, advanced analytical approaches used in observational studies can help identify causality and potential for early-life interventions on factors that cannot be easily studied in experimental settings. These factors include socioeconomic circumstances, migration, urban environment as well as lifestyle-related determinants and will be given particular focus in our project. We will set up a European pregnancy and childhood cohort, the EU Child Cohort Network, which brings together extensive existing data from more than 250,000 European children and their parents. These cohorts enable studies in multiple generations because of their detailed phenotyping of both parents and children. The network will bring together existing successful multidisciplinary cohort studies, which all started before or during pregnancy or in childhood. Together, they span the full life course and contain detailed phenotypical information as well as biological samples. The EU Child Cohort Network will optimize exploitation of more than 40 available cohort resources in Europe and will enable innovative research on identification of novel markers of early-life stressors related to health trajectories throughout the full life cycle. Although LifeCycle partners and their cohorts have taken the initiative for this unique collaboration, the network is open to other partners with population-based cohorts started in early life, specifically those from Eastern and Southern Europe. To ensure that this will be a Europe-wide, open and sustainable network, which exceeds the LifeCycle Project duration, we will introduce a data sharing platform taking account of ethical, legal and societal implications, we will organize yearly meetings open to all European pregnancy and child cohort researchers and we will start a fellowship programme for exchange between these European cohorts.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,,,,,"ELFE,GECKO,ALSPAC",LifeCycle_CDM,,"ELFE,GECKO,ALSPAC",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ATHLETE,,ATHLETE,Advancing Tools for Human Early Lifecourse Exposome Research and Translation,,,https://athleteproject.eu/,,,"Children are particularly vulnerable to environmental hazards. The ATHLETE project will measure a wide range of environmental exposures (urban, chemical, lifestyle and social risk factors) during pregnancy, childhood, and adolescence. The project will then link this “early-life exposome” to children’s biological responses and cardiometabolic, respiratory, and mental health. The results will help us to better understand and prevent health damage from environmental agents from the earliest parts of the life course onward.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,h2020,,,,"DNBC,PELAGIE,G21,ELSPAC,BIB,GenR,Sepages,INMA,EDEN,MoBa,KANC,GenR Next",ATHLETE_CDM,,"DNBC,PELAGIE,G21,ELSPAC,BIB,GenR,Sepages,INMA,EDEN,MoBa,KANC,GenR Next",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +IPEC,,IPEC,International Psychosis Epidemiology Consortium,,,https://www.ipec-project.com/,UMCG,"UMCG,GGZ Drenthe,GGZ Friesland,Lentis Research,UCPH","There are many early psychosis cohorts in the world. Epidemiological research with these cohorts over the past decades has greatly increased the understanding of distribution and mechanisms of psychotic disorders. Carrying out cross-country comparisons on a larger scale is extremely costly. An alternative strategy is to pool the existing large amount of data from high-quality early psychosis studies at an individual patient level. This approach has multiple advantages: it allows for examining psychosis determinants with greater precision, also including rare exposures and outcomes, focusing on (long-term) follow-up, and making optimal use of already existing data. To achieve this, the International Psychosis Epidemiology Consortium (IPEC) has catalogued and harmonized data from early psychosis cohorts and set up a virtual databank. With this databank, multiple (epidemiological) studies within the scope of the following research question will be conducted: “What drives the course of functional, existential and clinical outcomes of (early) psychosis and how does the social and geographical context shape these patterns?”.",,,,,,,,,,,,,"Denmark,Netherlands (the)",,,,,,,2023,,,,,,,,,,,,,,,,,,"IPEC was supported by the 2020 SIRS Research Harmonization Group Award which included a grant in the amount of $5000 USD to Prof. Wim Veling and Prof. Craig Morgan; an internal MD-PhD research grant of the University Medical Center Groningen (grant number 18-41) to Vera Brink, MSc; a grant in the amount of 400,000 DKK of the Capital Regions Research council to Dr Nikolai Albert; and the participating institutions (Lentis Psychiatric Institute, GGZ Drenthe, GGZ Friesland, University Center Psychiatry of University Medical Center Groningen, Bispebjerg hospital, Psychiatric Hospital Risskov, and Psychiatric Centre Copenhagen).","IPEC wishes to acknowledge the services of all the study participants, staff, research groups, and institutions collaborating in IPEC, and of MOLGENIS and RoQua, who helped build and maintain the technical infrastructure.",,Network,harmonization,,,,PSYCONN,IPEC_CDM,,PSYCONN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +LongITools,,LongITools,LongITools health & environment dynamics,,,https://longitools.org/,,,"LongITools is a European research project studying the interactions between the environment, lifestyle and health in determining the risks of chronic cardiovascular and metabolic diseases.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Network,h2020,,,,"NFBC1986,G21,DFBC,ALSPAC,EDEN,NOMA,ELFE,RS2,RS1,ENVIRONAGE,GenR",,,"NFBC1986,G21,DFBC,ALSPAC,EDEN,NOMA,ELFE,RS2,RS1,ENVIRONAGE,GenR",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ADVANCE Coverage POC,,ADVANCE Coverage POC,ADVANCE POC Study Protocol - Testing new approaches to monitoring benefit/risk with pertussis vaccines as test case. Coverage rates of acellular and whole-cell pertussis-containing vaccines in preschool children,,,,SSI,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,testCohort1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +DRIVE 2019/20,,DRIVE 2019/20,"Brand-specific influenza vaccine effectiveness in Europe, season 2019/20",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +PASS,,PASS,A prospective observational study to assess effectiveness of the training and risk minimisation measures recommended for the usage of the diagnostic agent NeuraCeqTM in the post-authorisation clinical situation: A post-authorisation safety study,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +DAHLIA,,DAHLIA,A retrospective nationwide cohort study to investigate the treatment of type 2 diabetic patients in Finland,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +FinACAF,,FinACAF,Finnish AntiCoagulation in Atrial Fibrillation,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +OPTI,,OPTI,"Non-interventional, cross-sectional, multicenter study to describe the exacerbations profile of COPD patients Treated with ICS in a real-life primary care population in Spain.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +IPF,,IPF,Observational Analysis on the Socio-economic Impact of Idiopathic Pulmonary Fibrosis in Spain.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +LEMS,,LEMS,Lambert-Eaton Myasthenic Syndrome (LEMS) Registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +FEIBA-GO,,FEIBA-GO,FEIBA NF GLOBAL OUTCOME STUDY,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ARISE,,ARISE,Aortic Replacement using Individualised Regenerative Allografts: Bridging the Therapeutic Gap,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,testCohort1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +INSPECT,,INSPECT,A retrospectIve chart review study evaluatiNg the longer-term effectiveneSs of darvadstrocel in PatiEnts who CompleTed ADMIRE-CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +LEONARDO,,LEONARDO,"Utilization patterns, access to healthcare facilities and economic assessment of JAKi drugs used in rheumatoid arthritis patients in Tuscany",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ACCESS,,ACCESS,vACcine Covid-19 monitoring readinESS,,,,UMCU,"PHARMO.I,UMCU,UM,LIPRE,JORDIGOL,UB","This listing includes the four different safety protocol templates to monitor COVID-19 vaccine safety. These protocols were prepared on request of EMA and have been reviewed by EMA and stakeholders. Protocols require finalization by the final users and are not conducted as such. This registration includes the following protocols: 1. Cohort event monitoring to assess safety of COVID-19 vaccines using patient reported events, a protocol template from the ACCESS project 2. Rapid assessment of COVID-19 vaccines safety concerns through electronic health records: a protocol template from the ACCESS project 3. Safety evaluation of COVID-19 vaccines through electronic health records: a protocol template from the ACCESS project 4. Safety Protocol for Hospital Case–Based Monitoring of Specific Adverse Events Following COVID-19 Vaccines: A Protocol Template from the ACCESS project Section 19 includes the template protocols. Word documents can be retrieved from study authors or PI. Section 19 includes the final ACCESS report with feasibility assessment",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,"DHL,ABL,EUROCAT NNL",,testCohort1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +THALIA,,THALIA,A retrospective cohort study to investigate the initiation and persistence of dual antiplatelet treatment after acute coronary syndrome in a Finnish setting,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,testCohort2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +PERSEUS,,PERSEUS,Risk of subsequent cardiovascular events in patients discharged after myocardial infarction,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +SSc-ILD,,SSc-ILD,A Phase I trial to investigate the effect of nintedanib on the pharmacokinetics of a combination of ethinylestradiol and levonorgestrel in female patients with Systemic Sclerosis associated Interstitial Lung Disease,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other type,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +EXE,,EXE,EXE,,,,,,Exemptions from copayment,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,It is collected for all residents of the catchment area.,,,,,,,,,,,,,,,,,,,,,,,,"The instance in which an NHS beneficiary from the catchment area is recorded as having a co-payment exemption, such as a chronic disease and poor socioeconomic status.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This table is considered to be complete: whenever an exemption is issued, it is recorded. However people with a chronic disease not necessarily request the corresponding exemption. It may not be accurate for certain conditions, such as diabetes, which is an over-used and misused exemption code. It can be used as a proxy of some diseases which exempt NHS beneficiaries from co-payment, but it is not always requested by patients. For example, a person with movement disorders may not request a co-pay exemption because they may not need it and it's an administrative burden, or are afraid of stigma Another point to bear in mind is that some co-payment exemptions trump others; for example, a patient may have a rare disease and a poor socioeconomic status, but since the exemption for socioeconomic status is more economically advantageous, the patient may opt for the latter. Data on rare disease exemption would the","The lag time between collection of new data and availability of new data in house is usually 1 year at most. For exception technical reasons (change in data collection platform), we have not yet updated data to 2019. We expect to do this in the next 3-6 months.",,,,,,,,,,,,, -PHT,,PHT,PHT,,,,,,Treatment plan registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"It is collected for all population. +PHT,,PHT,PHT,,,,,,Treatment plan registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"It is collected for all population. Each treatment plan prescribed to a patient is registered.",,,,,,,,,,,,,,,,,,,,,,,,The prescription of specific drugs for a pathology.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The table is complete and reliable. Each record represents a therapeutic plan (prescription). The start and end date, the dosage and the posology are specified (number of drug units in the time interval).","The table currently contains data from 2010 to 2018. The lag time between collection of new data and availability of new data in house is usually 1 year at most. We expect to do this in the next 3-6 months.",,,,,,,,,,,,, -COD_FARMACI_SPF,,COD_FARMACI_SPF,COD_FARMACI_SPF,,,,,,Medicinal products,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,All products with marketing authorisation in Italy (even if expired or withdrawn).,,,,,,,,,,,,,,,,,,,,,,,,"Marketing authorisation by the Italian regulatory agency (AIFA) for a product is issued on the National Official Bullettin with some information. A company called Farmadati collects this information, and ARS purchases regular updates.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Complete,Every other month.,,,,,,,,,,,,, -SPECIALISTICA,,SPECIALISTICA,SPECIALISTICA,,,,,,Specialist visits and diagnostic tests,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"It is collected for all NHS beneficiaries in the catchment area, provided that the specialist visits and diagnostic tests are conducted within an NHS setting.",,,,,,,,,,,,,,,,,,,,,,,,The claim for a specialist practitioner visit or for a diagnostic test.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This is usually considered to have an acceptable level of quality. +COD_FARMACI_SPF,,COD_FARMACI_SPF,COD_FARMACI_SPF,,,,,,Medicinal products,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,All products with marketing authorisation in Italy (even if expired or withdrawn).,,,,,,,,,,,,,,,,,,,,,,,,"Marketing authorisation by the Italian regulatory agency (AIFA) for a product is issued on the National Official Bullettin with some information. A company called Farmadati collects this information, and ARS purchases regular updates.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Complete,Every other month.,,,,,,,,,,,,, +SPECIALISTICA,,SPECIALISTICA,SPECIALISTICA,,,,,,Specialist visits and diagnostic tests,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"It is collected for all NHS beneficiaries in the catchment area, provided that the specialist visits and diagnostic tests are conducted within an NHS setting.",,,,,,,,,,,,,,,,,,,,,,,,The claim for a specialist practitioner visit or for a diagnostic test.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This is usually considered to have an acceptable level of quality. Private services would not be recorded. We expect this occurs rarely but we are not able to quantify.","Services delivered outside of the Caserta LHU are captured with a delay. At present we are unable to quantify this delay. The lag time between collection of new data and availability of new data in house is usually 1 year at most. For exception technical reasons (change in data collection platform), we have not yet updated data to 2019. We expect to do this in the next 3-6 months.",,,,,,,,,,,,, -SEA,,SEA,SEA,,,,"ARS.TOSCANA,CNR-IFC",,Exemptions from copayment,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exemptions from co-payment,,,,,,,All the population in the database,,,,,,,,,,,,,,,,,,,,,,,,"Citizens are required to share in the cost of health care by paying a share of the value of certain services. Exemption from this duty is available for various reasons. Relevant to our purposes are income exemptions, which can provide an indication of socio-economic status, and pathology exemptions. The exemption database is coded using a system that, in the case of pathologies, can be mapped to the ICD-9-CM coding. +SEA,,SEA,SEA,,,,"ARS.TOSCANA,CNR-IFC",,Exemptions from copayment,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exemptions from co-payment,,,,,,,All the population in the database,,,,,,,,,,,,,,,,,,,,,,,,"Citizens are required to share in the cost of health care by paying a share of the value of certain services. Exemption from this duty is available for various reasons. Relevant to our purposes are income exemptions, which can provide an indication of socio-economic status, and pathology exemptions. The exemption database is coded using a system that, in the case of pathologies, can be mapped to the ICD-9-CM coding. Citizens under the age of six or over sixty-five are exempt, unless they are in a favourable income situation.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AP,,AP,AP,,,,ARS.TOSCANA,,Pathology registry,,,,,,,,,,,,,Italy,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Pathology registry,,,,,,All legal inhabitants of the Tuscany Region (Italy),,,,,,,,,,,,,,,,,,,,,,,,The analysis of a sample by a pathology ward in Tuscany.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,It is expected to be complete in the last years. Many coded fields are approximate.,The table exist since 2008. The table is updated every 3-4 months and is complete up to around 6 months before that date.,,,,,,,,,,,,, -ARS_ANAG_MED_RES_storico,,,ARS_ANAG_MED_RES_storico,,,,ARS.TOSCANA,,Inhabitant register,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Registration with healthcare system,,,,,,,"Every person legally resident in Tuscany is enttled to subscribe to this registry. This registry is what defines our datsource population: indeed being registered in this registry implies that all healthcare funded by the Healthcare System will be funded by the Tuscany Region, which will trigger records of all the other tables of ARS datas",,,,,,,,,,,,,,,,,,,,,,,,"This is the only table in our database that we truly build from scratch from original regional data. We create a history of our subjects based on the ANAGRAFE, that is, a regular sequence of cross-sectional depictions of who is in a given moment assisted in our Regional Heathcare Serice. The history is the sequence of records, with start and end validity of the time-dependent info (such as primary care physician, or residence). This impli +AP,,AP,AP,,,,ARS.TOSCANA,,Pathology registry,,,,,,,,,,,,,Italy,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Pathology registry,,,,,,All legal inhabitants of the Tuscany Region (Italy),,,,,,,,,,,,,,,,,,,,,,,,The analysis of a sample by a pathology ward in Tuscany.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,It is expected to be complete in the last years. Many coded fields are approximate.,The table exist since 2008. The table is updated every 3-4 months and is complete up to around 6 months before that date.,,,,,,,,,,,,, +ARS_ANAG_MED_RES_storico,,,ARS_ANAG_MED_RES_storico,,,,ARS.TOSCANA,,Inhabitant register,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Registration with healthcare system,,,,,,,"Every person legally resident in Tuscany is enttled to subscribe to this registry. This registry is what defines our datsource population: indeed being registered in this registry implies that all healthcare funded by the Healthcare System will be funded by the Tuscany Region, which will trigger records of all the other tables of ARS datas",,,,,,,,,,,,,,,,,,,,,,,,"This is the only table in our database that we truly build from scratch from original regional data. We create a history of our subjects based on the ANAGRAFE, that is, a regular sequence of cross-sectional depictions of who is in a given moment assisted in our Regional Heathcare Serice. The history is the sequence of records, with start and end validity of the time-dependent info (such as primary care physician, or residence). This impli A record of ANAGRAFE is created upon one of the following events: when a person asks registration with a primary care physician in Tuscany, something that every person legally resident in Tuscany is allowed to do (so, upon birth or immigration) when a person changes primary care physician or place of residence when the local health unit receives notification that a person is registered in another local health unit in Tuscany when the local health unit receives notification that a person is registered in another local en the local health unit receives notification by the municipality of residence or of death that a person is dead (this is the source of death date)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"People may fail to register out when they leave Tuscany to live abroad, this may happen more often to young people or to people who is not Italian citizen in the first place. Foreign women who change name due to marriage may be recorded twice (in Italy marriage does not cause a name change). Other cause for overestimation of the population is when death fails to be notified, something that has happened in the past and is responsible for large decrease of the total number of heads in January 2016. This implies that person time of ederly people before the end of 2016 is overestimated. Quality of the recording has dramatically improved in 2009, so for studies where long follow-ups are not necessary using data from 2009 onwards is safer.","The first cross-sectional images of the ANAGRAFE were obtained by ARS in 2003, although records may be older. We have received 1-2 cross-sectional images up to 2009. Since then we regularly receive images (every couple of months), with a negligible lag time.",,,,,,,,,,,,, -ARS_PS,,PS,ARS_PS,,,,,,Emergency admissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,Admission to the emergency room of a Tuscan hospital. The record is immediately transmitted to the Region without further control.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Diagnoses may be generic.,"The table started in 2009 and has been complete since 2012. It is updated every 3-4 months, and completeness is immediate.",,,,,,,,,,,,, -ANAGRAFICA,,ANAGRAFICA,ANAGRAFICA,,,,,,Inhabitant registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Population registry,,,,,,,"All the legal inhabitants of the area of the city of Caserta and of its Local Health Unit (around 1.2 million over the database follow-up, of which 923,445 are the residents that live in the city in 2018).",,,,,,,,,,,,,,,,,,,,,,,,The registration with a primary care physician of an NHS beneficiary in the Caserta catchment area.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This table is considered to have a high degree of completeness because it is mandatory. If young people immigrate, they may be delayed in registering.","This table started in 2005. +ARS_PS,,PS,ARS_PS,,,,,,Emergency admissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,Admission to the emergency room of a Tuscan hospital. The record is immediately transmitted to the Region without further control.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Diagnoses may be generic.,"The table started in 2009 and has been complete since 2012. It is updated every 3-4 months, and completeness is immediate.",,,,,,,,,,,,, +ANAGRAFICA,,ANAGRAFICA,ANAGRAFICA,,,,,,Inhabitant registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Population registry,,,,,,,"All the legal inhabitants of the area of the city of Caserta and of its Local Health Unit (around 1.2 million over the database follow-up, of which 923,445 are the residents that live in the city in 2018).",,,,,,,,,,,,,,,,,,,,,,,,The registration with a primary care physician of an NHS beneficiary in the Caserta catchment area.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This table is considered to have a high degree of completeness because it is mandatory. If young people immigrate, they may be delayed in registering.","This table started in 2005. University of Messina receives all the data of the LHU every February for the previous year, and is allowed to store it inhouse. The lag time between collection of new data and availability of new data in house is usually 1 year at most. For exception technical reasons (change in data collection platform), we have not yet updated data to 2019. We expect to do this in the next 3-6 months.",,,,,,,,,,,,, -EFEMERIS_PRESCRIPTION,,EFEMERIS_PRESCRIPTION,EFEMERIS_PRESCRIPTION,,,,CHUT,,Pharmacy dispensings registry,,,,,,,,,,,,,France,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The table is collected for all the population of EFEMERIS. +EFEMERIS_PRESCRIPTION,,EFEMERIS_PRESCRIPTION,EFEMERIS_PRESCRIPTION,,,,CHUT,,Pharmacy dispensings registry,,,,,,,,,,,,,France,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The table is collected for all the population of EFEMERIS. If a woman does not take any medication before or during pregnancy, she would still be captured as long as the pregnancy is recorded in the Health Insurance database.",,,,,,,"Clinical data,Dispensings included,Product information,Brand name,Batch number,Formulation,Strength,Package size,Administration vaccines,Population pregnancy and neonates",,,,,,,,,,,,,,,,,"A record is created by the Health Insurance system based on the information received by the pharmacy after a woman retrieved a reimbursable medication. The information is sent by Health Insurance to EFEMERIS database when a woman is labelled as pregnant at the time of dispensing or if she is known to be pregnant afterwards. The Health Insurance data cover the dispensing of medications from 3 months before the conception to the date of end of pregnancy. Moreover, a woman will be recorded in EFEMERIS only if there is an outcome that we can associate to the pregnancy. The woman must communicate to the Health Insurance that she is pregnant in order to obtain a full reimbursement of the medications from the 6th month of pregnancy. In France, women have to declare their pregnancy (mandatory at before 12 weeks) to have their health costs and medicines fully reimbursed (otherwise pay 30% etc.). If a woman requests an elective abortion, she needs to declare the pregnancy to be fully reimbursed.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The Health Insurance database is of very high quality and completeness. It records automatically the prescriptions dispensed at pharmacists. This electronic system is national even though we only have accessed to data at the Haute-Garonne area level.,"Currently, EFEMERIS is composed of pregnancies ending from July, 2004 to December, 2019. EFEMERIS is updated every year. Data year N available approximately in N+1.",,,,,,,,,,,,, -FARMACEUTICA,,FARMACEUTICA,FARMACEUTICA,,,,,,Drug dispensations,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"All the population in the database, provided that the drug is reimbursed by the NHS and is purchased with an NHS prescription.",,,,,,,,,,,,,,,,,,,,,,,,"The dispensing of a drug which is reimbursed by the NHS, from community pharmacy or from hospital pharmacies for outpatient use, to NHS beneficiaries, upon a prescription.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This table is generally considered to be complete. Data could be missing if patients opt to not request reimbursement for their medication. +FARMACEUTICA,,FARMACEUTICA,FARMACEUTICA,,,,,,Drug dispensations,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"All the population in the database, provided that the drug is reimbursed by the NHS and is purchased with an NHS prescription.",,,,,,,,,,,,,,,,,,,,,,,,"The dispensing of a drug which is reimbursed by the NHS, from community pharmacy or from hospital pharmacies for outpatient use, to NHS beneficiaries, upon a prescription.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"This table is generally considered to be complete. Data could be missing if patients opt to not request reimbursement for their medication. Dispensations occurring outside of the LHU of Caserta are likely to be captured with a delay of 1-2 years.","The lag time between collection of new data and availability of new data in house is usually 1 year at most. For exception technical reasons (change in data collection platform), we have not yet updated data to 2019. We expect to do this in the next 3-6 months.",,,,,,,,,,,,, -VCN,,VCN,VCN,,,,,,Vaccines,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,A vaccination administered by Local Health Units or by pediatricians.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Vaccinations administered by general practitioners are lacking, therefore the table is not well equipped for studies on adults. On children it is complete since 2017.","It is updated every 3-4 months, and completeness is immediate.",,,,,,,,,,,,, -DIAGNOSTIC,,DIAGNOSTIC,DIAGNOSTIC,,,,UB,,"Table with all inpatient stay diagnoses (ICD10 code + dates), long term disease / occupational diseases / work accident registration (ICD10 code + dates), pregnancy outcomes (specific BPE code + dates start/end of pregnancy) or 56 specific comorbidities annual indicators (specific BPE code + dates)",,,,,,,,,,,67000000,,France,,"All ages,Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65-79 years),Aged (80+ years)",,,,,,,,,,,,,CNAM,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other,"table containing: +VCN,,VCN,VCN,,,,,,Vaccines,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,A vaccination administered by Local Health Units or by pediatricians.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Vaccinations administered by general practitioners are lacking, therefore the table is not well equipped for studies on adults. On children it is complete since 2017.","It is updated every 3-4 months, and completeness is immediate.",,,,,,,,,,,,, +DIAGNOSTIC,,DIAGNOSTIC,DIAGNOSTIC,,,,UB,,"Table with all inpatient stay diagnoses (ICD10 code + dates), long term disease / occupational diseases / work accident registration (ICD10 code + dates), pregnancy outcomes (specific BPE code + dates start/end of pregnancy) or 56 specific comorbidities annual indicators (specific BPE code + dates)",,,,,,,,,,,67000000,,France,,"All ages,Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65-79 years),Aged (80+ years)",,,,,,,,,,,,,,,CNAM,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Other,"table containing: - all inpatient diagnoses (primary, related), with codes and dates - chronic diseases, occupational diseases, work accident and disability status, with codes and dates - annual comorbidities indicators Y/N (n=56: categories of cancer, cardiovascular diseases, diabetes...) according to CNAM algorithm based on diagnoses, chronic diseases and disability status, specific drugs and medical procedures, with dates @@ -227,17 +227,17 @@ Data are available in SNDS from: - Main scheme (77% of the population) = 2006 - Farmers and independent workers schemes (11%) = 2009 - Public servants and students schemes (11%) = 2012","Inpatient diagnosis are updated every month but data of year N are available for extraction only from the end of year N+1. Data from long term disease coverage, occupational diseases, work accident are updated monthly. Comorbidities indicators are updated yearly.",,,,,,,,,,ICD10,"ALD code (French chronic disease classification vocabulary), comorbidities indicators (Y/N), pregnancy outcome specific vocabulary",, -RMR,,RMR,RMR,,,,,,Death registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,For all deaths happened in Tuscany.,,,,,,,,,,,,,,,,,,,,,,,,The revision of the death certificate by the Regional Institute of Cancer.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Completeness and quality are thoroughly checked by the Regional Institute of Cancer.,The table was created in 1987. It has the longest lag time in ARS (more than 2 years).,,,,,,,,,,,,, -MBRN,,MBRN,MBRN,,,,UiO,,Medical Birth Registry,,,,,,,,,,,,,Norway,,,,,,,,,,,,,,,UiO,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Birth registry,,,,,,,"Any pregnancy of gestational age 12 weeks or beyond (live, miscarriage, elective abortion, stillbirth). Mandatory by law, all of Norway.",Birth,,"Death,Emigration",,,,"Mother-child,Father-child,Age,Sex,Gender,Tobacco use,Cause of death,Clinical measures,Patient-generated data,""Primary care - GP, community pharmacist level"",Population pregnancy and neonates",,,,,,,,,,,,True,,,,Norwegian,"Any pregnancy of gestational age 12 weeks or beyond (live, miscarriage, elective abortion, stillbirth).",,True,True,,,,,Not required,,,,,,,,,,,,,,,,,365,,,,,,,,"Validity of the registry has been investigated in previous studies by other research groups for some events of interest -for example preclampsia, folic acid use. See questionnaire filled out with info on validity of several of the variables. In our dataset, there are 179 variables in total from the MBRN (this includes ID for mother, father, child)","MBRN was started in 1967. The registry is updated on a monthly basis from the delivery wards. Furthermore, it is updated/synchronized regularly with NR for information on emigration and death. Information on malformations is updated until the child is two years old. The lag time is approximately one year - this is in order to ensure quality and completeness.",,,,,,,,,,,,, -SALM,,SALM,SALM,,,,,,Mental health services,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,When a patient is admitted to a treatment pathway in one of the regional Mental Health services.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Much of mental care is purchased by patients outside of the regional Mental Health services, for instance diagnoses of depression are almost never found. There are exceptions, for instance autism is expected to be fairly complete, and in general infant mental healthcare is well recorded because Tuscany has a national-level specialist center in infant mental health.","It was created in 2010. The table is updated every 3-4 months and is complete up to around 6 months before that date. At April of every year the final table is closed, except for record generated outside of the region which are obtained in September.",,,,,,,,,,,,, -SPA,,SPA,SPA,,,,,,outpatient activities,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,All the population.,,,,,,,,,,,,,,,,,,,,,,,,"Access to an ambulatory procedure belonging to the list of reimbursed procedures (Nomenclatore), provided it is prescribed by the primary care physician of the patient, or of a specialist employed by the National healthcare System. Nomeclatore is updated every few years, and contains laboratory and instrumental diagnostic tests, diagnostic and rehabilitation procedures, specialist encounters.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Many ambulatory services are purchased by patients to avoid waiting lists for instance around half of specialist visits, according to estimates of the National","The table is updated every 3-4 months and is complete up to around 6 months before that date. At April of every year the final table is closed, except for record generated outside of the region which are obtained in September.",,,,,,,,,,,,, -AVOHILMO,,AVOHILMO,Register of Primary Health Care Visits (AVOHILMO),,,,DHL.I,,Primary care administrative data,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Primary care medical records,,,,,,,National data.,"Birth,Immigration",,,,,,"""Primary care - GP, community pharmacist level""",,,,,,,,,,,,,,,,,"Real time data that comes every night, as soon as a person visits their primary care physician. You can access only primary care centers of your own region, you are appointed to a specific primary health center. Primary care makes referral to secondary care (also doctors working at private sector i.e. private health care and occupational care can make referrals).",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Since 2011 the data collection has covered outpatient primary health care delivered in Finland with more complete data 2013 onwards. Data collection is continuous and statistics are published on a monthly basis.,,,,,,,,,,"ICPC,ICD10",,, -SPF,,SPF,SPF,,,,"ARS.TOSCANA,CNR-IFC",,Dispensation of medicines in community pharmacies,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,For all the dispensations taking place in Tuscany or to Tuscan inhabitants in other Italian regions are recorded.,,,,,,,,,,,,,,,,,,,,,,,,"A dispensation by a community pharmacy of a medicine that belongs to the list of reimbursed drugs maintained by the Italian Regulatory Agency (AIFA), upon prescription by the primary care physician of the patient, or of a specialist employed by the National healthcare System. AIFA has indeed two roles: admission of drugs to the Italia market (mostly after European procedure) and admission to reimbursement (which may take place many months after admission to market). +RMR,,RMR,RMR,,,,,,Death registry,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,For all deaths happened in Tuscany.,,,,,,,,,,,,,,,,,,,,,,,,The revision of the death certificate by the Regional Institute of Cancer.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Completeness and quality are thoroughly checked by the Regional Institute of Cancer.,The table was created in 1987. It has the longest lag time in ARS (more than 2 years).,,,,,,,,,,,,, +MBRN,,MBRN,MBRN,,,,UiO,,Medical Birth Registry,,,,,,,,,,,,,Norway,,,,,,,,,,,,,,,,,UiO,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Birth registry,,,,,,,"Any pregnancy of gestational age 12 weeks or beyond (live, miscarriage, elective abortion, stillbirth). Mandatory by law, all of Norway.",Birth,,"Death,Emigration",,,,"Mother-child,Father-child,Age,Sex,Gender,Tobacco use,Cause of death,Clinical measures,Patient-generated data,""Primary care - GP, community pharmacist level"",Population pregnancy and neonates",,,,,,,,,,,,True,,,,Norwegian,"Any pregnancy of gestational age 12 weeks or beyond (live, miscarriage, elective abortion, stillbirth).",,True,True,,,,,Not required,,,,,,,,,,,,,,,,,365,,,,,,,,"Validity of the registry has been investigated in previous studies by other research groups for some events of interest -for example preclampsia, folic acid use. See questionnaire filled out with info on validity of several of the variables. In our dataset, there are 179 variables in total from the MBRN (this includes ID for mother, father, child)","MBRN was started in 1967. The registry is updated on a monthly basis from the delivery wards. Furthermore, it is updated/synchronized regularly with NR for information on emigration and death. Information on malformations is updated until the child is two years old. The lag time is approximately one year - this is in order to ensure quality and completeness.",,,,,,,,,,,,, +SALM,,SALM,SALM,,,,,,Mental health services,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,When a patient is admitted to a treatment pathway in one of the regional Mental Health services.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Much of mental care is purchased by patients outside of the regional Mental Health services, for instance diagnoses of depression are almost never found. There are exceptions, for instance autism is expected to be fairly complete, and in general infant mental healthcare is well recorded because Tuscany has a national-level specialist center in infant mental health.","It was created in 2010. The table is updated every 3-4 months and is complete up to around 6 months before that date. At April of every year the final table is closed, except for record generated outside of the region which are obtained in September.",,,,,,,,,,,,, +SPA,,SPA,SPA,,,,,,outpatient activities,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,All the population.,,,,,,,,,,,,,,,,,,,,,,,,"Access to an ambulatory procedure belonging to the list of reimbursed procedures (Nomenclatore), provided it is prescribed by the primary care physician of the patient, or of a specialist employed by the National healthcare System. Nomeclatore is updated every few years, and contains laboratory and instrumental diagnostic tests, diagnostic and rehabilitation procedures, specialist encounters.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Many ambulatory services are purchased by patients to avoid waiting lists for instance around half of specialist visits, according to estimates of the National","The table is updated every 3-4 months and is complete up to around 6 months before that date. At April of every year the final table is closed, except for record generated outside of the region which are obtained in September.",,,,,,,,,,,,, +AVOHILMO,,AVOHILMO,Register of Primary Health Care Visits (AVOHILMO),,,,DHL.I,,Primary care administrative data,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Primary care medical records,,,,,,,National data.,"Birth,Immigration",,,,,,"""Primary care - GP, community pharmacist level""",,,,,,,,,,,,,,,,,"Real time data that comes every night, as soon as a person visits their primary care physician. You can access only primary care centers of your own region, you are appointed to a specific primary health center. Primary care makes referral to secondary care (also doctors working at private sector i.e. private health care and occupational care can make referrals).",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Since 2011 the data collection has covered outpatient primary health care delivered in Finland with more complete data 2013 onwards. Data collection is continuous and statistics are published on a monthly basis.,,,,,,,,,,"ICPC,ICD10",,, +SPF,,SPF,SPF,,,,"ARS.TOSCANA,CNR-IFC",,Dispensation of medicines in community pharmacies,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Databank,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,For all the dispensations taking place in Tuscany or to Tuscan inhabitants in other Italian regions are recorded.,,,,,,,,,,,,,,,,,,,,,,,,"A dispensation by a community pharmacy of a medicine that belongs to the list of reimbursed drugs maintained by the Italian Regulatory Agency (AIFA), upon prescription by the primary care physician of the patient, or of a specialist employed by the National healthcare System. AIFA has indeed two roles: admission of drugs to the Italia market (mostly after European procedure) and admission to reimbursement (which may take place many months after admission to market). Records are transmitted to the Region by pharmacies to obtain reimbursement (medicines are free at the point of dispensation, except for a copayment). The table is compulsory upon national law and is transmitted yearly to the Ministry of Finance.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Cheap medicines, even if potentially reimbursed, may be bought out-of-the-counter to avoid queing to renew a prescription. Expensive medicines are recorded in FED.","The table started in 2003. The table is updated every 3-4 months and is complete up to around 5-6 months before that date. At April of every year the final table is closed, except for record generated outside of the region which are obtained in September.",,,,,,,,,,,,, -ABL,,ABL,ABL Region Administrative Databases,,,,ARS.TOSCANA,,"As is the case in every Italian region, the reason for entering the database is the registration with a primary care physician, which may happen upon immigration or upon birth; the reason for exiting the database is emigration or death. Beyond administrative databnls, for the same underlying population other data banks are collected by the Tuscany Region or by other Tuscan organizations: the birth registry, the spontaneous abortions and induced terminations registry, the death registry, the vaccine registry, the pathology registry, the registry of primary care community centers, the COVID registry, the congenital anomaly registry and the rare disease registry. Medical records and/or laboratory results are collected by local organizations, such as hospital, on subsets o teh underlying Tuscan population.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -EUROCAT NNL,,EUROCAT NNL,EUROCAT NNL,,,,UMCG,,"EUROCAT NNL registers information about all children/fetuses born with a congenital anomaly whose mothers are residing in the provinces of Groningen, Friesland or Drenthe. The data collection started in 1981 and is ongoing. EUROCAT NNL is part of EUROmediCAT.",,,,,,,,,,,,,Netherlands (the),"Groningen,Friesland,Drenthe",,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ABL,,ABL,ABL Region Administrative Databases,,,,ARS.TOSCANA,,"As is the case in every Italian region, the reason for entering the database is the registration with a primary care physician, which may happen upon immigration or upon birth; the reason for exiting the database is emigration or death. Beyond administrative databnls, for the same underlying population other data banks are collected by the Tuscany Region or by other Tuscan organizations: the birth registry, the spontaneous abortions and induced terminations registry, the death registry, the vaccine registry, the pathology registry, the registry of primary care community centers, the COVID registry, the congenital anomaly registry and the rare disease registry. Medical records and/or laboratory results are collected by local organizations, such as hospital, on subsets o teh underlying Tuscan population.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +EUROCAT NNL,,EUROCAT NNL,EUROCAT NNL,,,,UMCG,,"EUROCAT NNL registers information about all children/fetuses born with a congenital anomaly whose mothers are residing in the provinces of Groningen, Friesland or Drenthe. The data collection started in 1981 and is ongoing. EUROCAT NNL is part of EUROmediCAT.",,,,,,,,,,,,,Netherlands (the),"Groningen,Friesland,Drenthe",,,,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, DHL,,DHL,Dutch institute for health and welfare,,,,DHL.I,,"Currently, the Netherlands has multisource financing of healthcare. Universal health insurance coverage is accessible for all citizens and permanent residents in the country, with a range of comprehensive health services. Municipalities (currently around 300) are responsible for arranging and funding health care. Health services are divided into primary health care and specialized medical care. Primary health care refers to the municipally arranged services provided at municipal health centres. Specialised medical care refers to secondary and tertiary health care, provided by experts on medical specialities largely provided in hospitals. Municipalities or joint municipal authorities may also procure health care services from private service providers. Employers are responsible for preventive health care of their employees. On a voluntary basis, some also provide medical care. Medical care provided by employers and private healthcare also receive some public funding. Finnish Instititute for Health and Welfare (THL) collects information and produces a range of statistics in the field of social welfare and health care. As a statistical authority, THL is responsible for the maintenance and development of statistical and register resources. THL is hosting the Drugs and Pregnancy research project, a joint project of the THL, the Finnish Medicines Agency (FIMEA) and the Social Insurance Institution of Finland (Kela). The project aims to secure safe medical drug use during pregnancy. @@ -251,5 +251,5 @@ https://thl.fi/en/web/thlfi-en/statistics/information-on-statistics/quality-desc Information on Drugs and Pregnancy research project can be found from: https://thl.fi/en/web/thlfi-en/research-and-development/research-and-projects/drugs-and-pregnancy?redirect=%2Fen%2Fweb%2Fthlfi-en%2Fresearch-and-development%2Fresearch-and-projects%2Fcurrent-research-and-projects -Data is stored on an individual level and can be linked by the personal identification number assigned to all citizens and permanent residents in Finland at birth or upon immigration. The provision on private medical services, particularly those provided by employers, has grown steadily over the years which may reflect particularly to the completeness of primary care data.",,,,,,,,,,,2061601,,Finland,,"Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years)",,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"""Primary care - GP, community pharmacist level"",Primary care - specialist level (e.g. paediatricians),Secondary care - specialist level (ambulatory),Hospital inpatient care,Hospital outpatient care",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -TestDataSourceID,https://pid-for-testdatasource.org,TESTDATASOURCE,Test Data Source,local test data source name,test,https://www.molgenis.org,AMC,"INSERM,UCL",Description field for test data source - not all fields have been filled in but this can be done at a later date when we do thorough testing of data sources,,,,,,,,,,,3000,248,"Andorra,Bolivia (Plurinational State of),Grenada","Meurthe-et-Moselle,Lapland",Prenatal,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Population registry,,description field for data collection for test data source,2012-05-21,2016-05-24,2024-05-14,test description for time span for test data source,,"Birth,Immigration",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Data is stored on an individual level and can be linked by the personal identification number assigned to all citizens and permanent residents in Finland at birth or upon immigration. The provision on private medical services, particularly those provided by employers, has grown steadily over the years which may reflect particularly to the completeness of primary care data.",,,,,,,,,,,2061601,,Finland,,"Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years)",,,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"""Primary care - GP, community pharmacist level"",Primary care - specialist level (e.g. paediatricians),Secondary care - specialist level (ambulatory),Hospital inpatient care,Hospital outpatient care",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +TestDataSourceID,https://pid-for-testdatasource.org,TESTDATASOURCE,Test Data Source,local test data source name,test,https://www.molgenis.org,AMC,"INSERM,UCL",Description field for test data source - not all fields have been filled in but this can be done at a later date when we do thorough testing of data sources,,,,,,,,,,,3000,248,"Andorra,Bolivia (Plurinational State of),Grenada","Meurthe-et-Moselle,Lapland",Prenatal,,,,,,,,,,,,,,,,,,,,,,,,,,Data source,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Population registry,,description field for data collection for test data source,2012-05-21,2016-05-24,2024-05-14,test description for time span for test data source,,"Birth,Immigration",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/_demodata/applications/datacatalogue/Subpopulations.csv b/data/_demodata/applications/datacatalogue/Subpopulations.csv index 878a5ab2a5..5c3a2ac280 100644 --- a/data/_demodata/applications/datacatalogue/Subpopulations.csv +++ b/data/_demodata/applications/datacatalogue/Subpopulations.csv @@ -1,45 +1,45 @@ -resource,name,description,number of participants,inclusion start,inclusion end,age groups,main medical condition,comorbidity,countries,regions,inclusion criteria,supplementary information -FORCE-NEN collections,AvL,,,,,,,,,,, -FORCE-NEN collections,EMC,,,,,,,,,,, -FORCE-NEN collections,Amsterdam UMC,,,,,,,,,,, -FORCE-NEN collections,UMCU,,,,,,,,,,, -FORCE-NEN collections,MUMC,,,,,,,,,,, -FORCE-NEN collections,Maxima MC,,,,,,,,,,, -FORCE-NEN collections,AvL/UMCU,,,,,,,,,,, -FORCE-NEN collections,Maxima MC/MUMC,,,,,,,,,,, -BIB,Children,,,,,,,,,Bradford,, -ALSPAC,Mothers,,14541,,,,,,United Kingdom of Great Britain and Northern Ireland (the),,, -ALSPAC,Partners,,,,,,,,United Kingdom of Great Britain and Northern Ireland (the),,, -ALSPAC,Children,,,,,,,,United Kingdom of Great Britain and Northern Ireland (the),,, -Sepages,infants,children aged between 0 and 3 years,,,,,,,,,, -BIB,Mothers,,12453,,,,,,,Bradford,Baseline (26-28 weeks gestation) with various follow-ups, -BIB,Partners,,3353,,,,,,,Bradford,, -CON,Prognosis study,,,,,,,,,,, -CSC,Age stratification 30-49,Women aged 30 to 49 years old,,,,,,,,,, -CSC,Age stratification 50-70,Women aged 50 to 70,,,,,,,,,, -CSC,Age stratification 23-29,Women aged 23 to 29 years,,,,,,,,,, -DFBC,follow-up at: 74/75,,,,,,,,Netherlands (the),,, -DFBC,follow-up at: 58,,,,,,,,Netherlands (the),,, -DFBC,follow-up at: 73,,,,,,,,Netherlands (the),,, -DFBC,Baseline (50 years of age),,912,,,Middle-aged (45-64 years),,,Netherlands (the),,, -DFBC,follow-up at: 77,,,,,,,,Netherlands (the),,, -DFBC,follow-up at: 68,,,,,,,,Netherlands (the),,, -DFBC,follow-up at: 63,,,,,,,,Netherlands (the),,, -DNBC,children,,96825,,,,,,Denmark,,, -DNBC,pregnancies,,100410,,,,,,Denmark,,, -EDEN,children,,1400,,,,,,,Vienne,, -EDEN,fathers,,,,,,,,,Vienne,, -EDEN,mothers,,1900,,,,,,,Vienne,, -ELFE,children,,18329,,,,,,France,,, -ELFE,mothers,,,,,,,,France,,, -ELFE,fathers,,,,,,,,France,,, -MoBa,children,,114500,,,,,,Norway,,, -MoBa,fathers,,75000,,,,,,Norway,,, -mtFIT study,mtFIT study,,13300,,,,,,,,, +resource,name,description,number of participants,inclusion start,inclusion end,age groups,main medical condition,comorbidity,countries,regions,inclusion criteria,other inclusion criteria,exclusion criteria,other exclusion criteria,supplementary information +FORCE-NEN collections,AvL,,,,,,,,,,,,,, +FORCE-NEN collections,EMC,,,,,,,,,,,,,, +FORCE-NEN collections,Amsterdam UMC,,,,,,,,,,,,,, +FORCE-NEN collections,UMCU,,,,,,,,,,,,,, +FORCE-NEN collections,MUMC,,,,,,,,,,,,,, +FORCE-NEN collections,Maxima MC,,,,,,,,,,,,,, +FORCE-NEN collections,AvL/UMCU,,,,,,,,,,,,,, +FORCE-NEN collections,Maxima MC/MUMC,,,,,,,,,,,,,, +BIB,Children,,,,,,,,,Bradford,,,,, +ALSPAC,Mothers,,14541,,,,,,United Kingdom of Great Britain and Northern Ireland (the),,,,,, +ALSPAC,Partners,,,,,,,,United Kingdom of Great Britain and Northern Ireland (the),,,,,, +ALSPAC,Children,,,,,,,,United Kingdom of Great Britain and Northern Ireland (the),,,,,, +Sepages,infants,children aged between 0 and 3 years,,,,,,,,,,,,, +BIB,Mothers,,12453,,,,,,,Bradford,,,,, +BIB,Partners,,3353,,,,,,,Bradford,,,,, +CON,Prognosis study,,,,,,,,,,,,,, +CSC,Age stratification 30-49,Women aged 30 to 49 years old,,,,,,,,,,,,, +CSC,Age stratification 50-70,Women aged 50 to 70,,,,,,,,,,,,, +CSC,Age stratification 23-29,Women aged 23 to 29 years,,,,,,,,,,,,, +DFBC,follow-up at: 74/75,,,,,,,,Netherlands (the),,,,,, +DFBC,follow-up at: 58,,,,,,,,Netherlands (the),,,,,, +DFBC,follow-up at: 73,,,,,,,,Netherlands (the),,,,,, +DFBC,Baseline (50 years of age),,912,,,Middle-aged (45-64 years),,,Netherlands (the),,,,,, +DFBC,follow-up at: 77,,,,,,,,Netherlands (the),,,,,, +DFBC,follow-up at: 68,,,,,,,,Netherlands (the),,,,,, +DFBC,follow-up at: 63,,,,,,,,Netherlands (the),,,,,, +DNBC,children,,96825,,,,,,Denmark,,,,,, +DNBC,pregnancies,,100410,,,,,,Denmark,,,,,, +EDEN,children,,1400,,,,,,,Vienne,,,,, +EDEN,fathers,,,,,,,,,Vienne,,,,, +EDEN,mothers,,1900,,,,,,,Vienne,,,,, +ELFE,children,,18329,,,,,,France,,,Baseline (26-28 weeks gestation) with various follow-ups,,, +ELFE,mothers,,,,,,,,France,,,,,, +ELFE,fathers,,,,,,,,France,,,,,, +MoBa,children,,114500,,,,,,Norway,,,,,, +MoBa,fathers,,75000,,,,,,Norway,,,,,, +mtFIT study,mtFIT study,,13300,,,,,,,,,,,, PSYCONN,RQ-MIS,"RoQua Management Information System. Health care consumption, socio-demographic, and diagnosis data. -PSYCONN baseline and outcome data is collected from RQ-MIS.",,,,,,,,,, -FORCE-NEN,FORCE-NEN intensive,,,2022,,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","Duodenal neuroendocrine tumor,Functioning neuroendocrine tumor of pancreas,Gastroenteropancreatic neuroendocrine neoplasm,Ileal neuroendocrine tumor,Jejunal neuroendocrine tumor,Neuroendocrine carcinoma of pancreas,Neuroendocrine neoplasm,Neuroendocrine neoplasm of appendix,Neuroendocrine neoplasm of esophagus,Neuroendocrine neoplasm of pancreas,Neuroendocrine tumor of pancreas,Neuroendocrine tumor of the small intestine,Non-functioning neuroendocrine tumor of pancreas",,Netherlands (the),,"Pancreatic or Small intestine neuroendocrine tumor with a Ki-67 more than 10%, gastro-entero-pancreatic neuroendocrine carcinoma +PSYCONN baseline and outcome data is collected from RQ-MIS.",,,,,,,,,,,,, +FORCE-NEN,FORCE-NEN intensive,,,2022,,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","Duodenal neuroendocrine tumor,Functioning neuroendocrine tumor of pancreas,Gastroenteropancreatic neuroendocrine neoplasm,Ileal neuroendocrine tumor,Jejunal neuroendocrine tumor,Neuroendocrine carcinoma of pancreas,Neuroendocrine neoplasm,Neuroendocrine neoplasm of appendix,Neuroendocrine neoplasm of esophagus,Neuroendocrine neoplasm of pancreas,Neuroendocrine tumor of pancreas,Neuroendocrine tumor of the small intestine,Non-functioning neuroendocrine tumor of pancreas",,Netherlands (the),,,"Pancreatic or Small intestine neuroendocrine tumor with a Ki-67 more than 10%, gastro-entero-pancreatic neuroendocrine carcinoma Age 18 years and older Able to provide broad consent RECIST measurable disease at baseline @@ -48,8 +48,8 @@ Exclusion criteria: (history of) other malignancy at baseline Hereditary syndrome as cause of the neuroendocrine neoplasm Mixed neuroendocrine / non-neuroendocrine neoplasm -Unable to provide consent", -FORCE-NEN,FORCE-NEN Regular,,,2022,,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","C17.0 Malignant neoplasm of small intestine - Duodenum,C17.1 Malignant neoplasm of small intestine - Jejunum,C17.2 Malignant neoplasm of small intestine - Ileum,C25.4 Malignant neoplasm of pancreas - Endocrine pancreas,Carcinoid syndrome,Duodenal neuroendocrine tumor,Functioning neuroendocrine tumor of pancreas,Ileal neuroendocrine tumor,Jejunal neuroendocrine tumor,Neuroendocrine tumor of pancreas,Non-functioning neuroendocrine tumor of pancreas",,Netherlands (the),,"Pancreatic or Small intestine neuroendocrine tumor with a Ki-67 up to 10% +Unable to provide consent",,, +FORCE-NEN,FORCE-NEN Regular,,,2022,,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","C17.0 Malignant neoplasm of small intestine - Duodenum,C17.1 Malignant neoplasm of small intestine - Jejunum,C17.2 Malignant neoplasm of small intestine - Ileum,C25.4 Malignant neoplasm of pancreas - Endocrine pancreas,Carcinoid syndrome,Duodenal neuroendocrine tumor,Functioning neuroendocrine tumor of pancreas,Ileal neuroendocrine tumor,Jejunal neuroendocrine tumor,Neuroendocrine tumor of pancreas,Non-functioning neuroendocrine tumor of pancreas",,Netherlands (the),,,"Pancreatic or Small intestine neuroendocrine tumor with a Ki-67 up to 10% Age 18 years and older Able to provide broad consent RECIST measurable disease at baseline @@ -58,38 +58,38 @@ Exclusion criteria: (history of) other malignancy at baseline Hereditary syndrome as cause of the neuroendocrine neoplasm Mixed neuroendocrine / non-neuroendocrine neoplasm -Unable to provide consent", -HPV,Follow-Up at age 18,,,,,,,,,,, -HPV,Follow-Up at age 28,,,,,,,,,,, -HPV,Initial at age 14,,,,,,,,,,, -HPV,Follow-Up at age 22,,,,,,,,,,, -HPV,Follow-Up at age 25,,,,,,,,,,, -INMA,Children,,1580,,,"Prenatal,Newborn (0-1 months),Infants and toddlers (2-23 months),Infant (0-23 months),Child (2-12 years),Adolescent (13-17 years)",,,Spain,,"Criteria for inclusion of the mothers were: (i) to be resident in one of the study areas, (ii) to be at least 16 years old, (iii) to have a singleton pregnancy, (iv) to not have followed any programme of assisted reproduction, (v) to wish to deliver in the reference hospital and (vi) to have no communication problems.", -INMA,Mothers,,1600,,,,,,Spain,,"Criteria for inclusion of the mothers were: (i) to be resident in one of the study areas, (ii) to be at least 16 years old, (iii) to have a singleton pregnancy, (iv) to not have followed any programme of assisted reproduction, (v) to wish to deliver in the reference hospital and (vi) to have no communication problems.", -LSC,Intermittent fasting with ketogenic supplement,,,,,,,,,,, -LSC,Intermittent fasting without ketogenic supplement,,,,,,,,,,, -LSC,Smoking cessation,,,,,,,,,,, -MoBa,mothers,,95000,,,,,,Norway,,, +Unable to provide consent",,, +HPV,Follow-Up at age 18,,,,,,,,,,,,,, +HPV,Follow-Up at age 28,,,,,,,,,,,,,, +HPV,Initial at age 14,,,,,,,,,,,,,, +HPV,Follow-Up at age 22,,,,,,,,,,,,,, +HPV,Follow-Up at age 25,,,,,,,,,,,,,, +INMA,Children,,1580,,,"Prenatal,Newborn (0-1 months),Infants and toddlers (2-23 months),Infant (0-23 months),Child (2-12 years),Adolescent (13-17 years)",,,Spain,,,"Criteria for inclusion of the mothers were: (i) to be resident in one of the study areas, (ii) to be at least 16 years old, (iii) to have a singleton pregnancy, (iv) to not have followed any programme of assisted reproduction, (v) to wish to deliver in the reference hospital and (vi) to have no communication problems.",,, +INMA,Mothers,,1600,,,,,,Spain,,,"Criteria for inclusion of the mothers were: (i) to be resident in one of the study areas, (ii) to be at least 16 years old, (iii) to have a singleton pregnancy, (iv) to not have followed any programme of assisted reproduction, (v) to wish to deliver in the reference hospital and (vi) to have no communication problems.",,, +LSC,Intermittent fasting with ketogenic supplement,,,,,,,,,,,,,, +LSC,Intermittent fasting without ketogenic supplement,,,,,,,,,,,,,, +LSC,Smoking cessation,,,,,,,,,,,,,, +MoBa,mothers,,95000,,,,,,Norway,,,,,, PSYCONN,PHAMOUS,"Pharmacotherapy Outcome and Monitoring Survey -PSYCONN outcome data is collected from PHAMOUS.",650,2006,2022,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","F20 Schizophrenia,""F20-F29 Schizophrenia, schizotypal and delusional disorders"",F20.0 Paranoid schizophrenia,F20.1 Hebephrenic schizophrenia,F20.2 Catatonic schizophrenia,F20.3 Undifferentiated schizophrenia,F20.4 Schizophrenia - Post-schizophrenic depression,F20.5 Residual schizophrenia,F20.6 Simple schizophrenia,F20.8 Other schizophrenia,""F20.9 Schizophrenia, unspecified"",F21 Schizotypal disorder,F22 Persistent delusional disorders,F22.0 Delusional disorder,F22.8 Other persistent delusional disorders,""F22.9 Persistent delusional disorder, unspecified"",F23 Acute and transient psychotic disorders,F23.0 Acute polymorphic psychotic disorder without symptoms of schizophrenia,F23.1 Acute polymorphic psychotic disorder with symptoms of schizophrenia,F23.2 Acute schizophrenia-like psychotic disorder,F23.3 Other acute predominantly delusional psychotic disorders,F23.8 Other acute and transient psychotic disorders,""F23.9 Acute and transient psychotic disorder, unspecified"",F24 Induced delusional disorder,F25 Schizoaffective disorders,""F25.0 Schizoaffective disorder, manic type"",""F25.1 Schizoaffective disorder, depressive type"",""F25.2 Schizoaffective disorder, mixed type"",F25.8 Other schizoaffective disorders,""F25.9 Schizoaffective disorder, unspecified"",F28 Other nonorganic psychotic disorders,F29 Unspecified nonorganic psychosis,""F31.2 Bipolar affective disorder, current episode manic with psychotic symptoms"",""F31.5 Bipolar affective disorder, current episode severe depression with psychotic symptoms"",F32.3 Severe depressive episode with psychotic symptoms,""F33.3 Recurrent depressive disorder, current episode severe with psychotic symptoms""",,Netherlands (the),"Groningen,Friesland,Drenthe","Patients ≥18 years of age with a psychotic disorder who receive care from mental health care institutions in the northern part of the Netherlands (University Medical Center Groningen (UMCG)/University Center for Psychiatry (UCP), Lentis, GGZ Drenthe or GGZ Friesland)",https://umcgresearchdatacatalogue.nl/UMCG/ssr-catalogue/cohorts/MindLines +PSYCONN outcome data is collected from PHAMOUS.",650,2006,2022,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","F20 Schizophrenia,""F20-F29 Schizophrenia, schizotypal and delusional disorders"",F20.0 Paranoid schizophrenia,F20.1 Hebephrenic schizophrenia,F20.2 Catatonic schizophrenia,F20.3 Undifferentiated schizophrenia,F20.4 Schizophrenia - Post-schizophrenic depression,F20.5 Residual schizophrenia,F20.6 Simple schizophrenia,F20.8 Other schizophrenia,""F20.9 Schizophrenia, unspecified"",F21 Schizotypal disorder,F22 Persistent delusional disorders,F22.0 Delusional disorder,F22.8 Other persistent delusional disorders,""F22.9 Persistent delusional disorder, unspecified"",F23 Acute and transient psychotic disorders,F23.0 Acute polymorphic psychotic disorder without symptoms of schizophrenia,F23.1 Acute polymorphic psychotic disorder with symptoms of schizophrenia,F23.2 Acute schizophrenia-like psychotic disorder,F23.3 Other acute predominantly delusional psychotic disorders,F23.8 Other acute and transient psychotic disorders,""F23.9 Acute and transient psychotic disorder, unspecified"",F24 Induced delusional disorder,F25 Schizoaffective disorders,""F25.0 Schizoaffective disorder, manic type"",""F25.1 Schizoaffective disorder, depressive type"",""F25.2 Schizoaffective disorder, mixed type"",F25.8 Other schizoaffective disorders,""F25.9 Schizoaffective disorder, unspecified"",F28 Other nonorganic psychotic disorders,F29 Unspecified nonorganic psychosis,""F31.2 Bipolar affective disorder, current episode manic with psychotic symptoms"",""F31.5 Bipolar affective disorder, current episode severe depression with psychotic symptoms"",F32.3 Severe depressive episode with psychotic symptoms,""F33.3 Recurrent depressive disorder, current episode severe with psychotic symptoms""",,Netherlands (the),"Groningen,Friesland,Drenthe",,"Patients ≥18 years of age with a psychotic disorder who receive care from mental health care institutions in the northern part of the Netherlands (University Medical Center Groningen (UMCG)/University Center for Psychiatry (UCP), Lentis, GGZ Drenthe or GGZ Friesland)",,,https://umcgresearchdatacatalogue.nl/UMCG/ssr-catalogue/cohorts/MindLines PSYCONN,PROGR-S,"Psychosis Recent Onset GRoningen Survey -PSYCONN baseline data is collected from PROGR-S.",1000,1998,2018,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","F20 Schizophrenia,""F20-F29 Schizophrenia, schizotypal and delusional disorders"",F20.0 Paranoid schizophrenia,F20.1 Hebephrenic schizophrenia,F20.2 Catatonic schizophrenia,F20.3 Undifferentiated schizophrenia,F20.4 Schizophrenia - Post-schizophrenic depression,F20.5 Residual schizophrenia,F20.6 Simple schizophrenia,F20.8 Other schizophrenia,""F20.9 Schizophrenia, unspecified"",F21 Schizotypal disorder,F22 Persistent delusional disorders,F22.0 Delusional disorder,F22.8 Other persistent delusional disorders,""F22.9 Persistent delusional disorder, unspecified"",F23 Acute and transient psychotic disorders,F23.0 Acute polymorphic psychotic disorder without symptoms of schizophrenia,F23.1 Acute polymorphic psychotic disorder with symptoms of schizophrenia,F23.2 Acute schizophrenia-like psychotic disorder,F23.3 Other acute predominantly delusional psychotic disorders,F23.8 Other acute and transient psychotic disorders,""F23.9 Acute and transient psychotic disorder, unspecified"",F24 Induced delusional disorder,F25 Schizoaffective disorders,""F25.0 Schizoaffective disorder, manic type"",""F25.1 Schizoaffective disorder, depressive type"",""F25.2 Schizoaffective disorder, mixed type"",F25.8 Other schizoaffective disorders,""F25.9 Schizoaffective disorder, unspecified"",F28 Other nonorganic psychotic disorders,F29 Unspecified nonorganic psychosis,F30.2 Manic episode - Mania with psychotic symptoms,""F31.2 Bipolar affective disorder, current episode manic with psychotic symptoms"",""F31.5 Bipolar affective disorder, current episode severe depression with psychotic symptoms"",F32.3 Severe depressive episode with psychotic symptoms,""F33.3 Recurrent depressive disorder, current episode severe with psychotic symptoms""",,Netherlands (the),Groningen,Patients with a suspected recent-onset psychotic episode or recurrent psychotic episode not diagnosed as such before.,https://umcgresearchdatacatalogue.nl/UMCG/ssr-catalogue/cohorts/MindLines -RS1,2018,,750,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS1,1993,,6315,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS1,1997,,4797,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS1,2014,,1153,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS1,2002,,3550,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS1,2009,,2147,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS1,baseline,,7983,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS2,2015,,1408,,,"Aged (65+ years),Middle-aged (45-64 years)",,,Netherlands (the),,≥ 55 years, -RS2,baseline,,3011,,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS2,2011,,1893,,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years, -RS2,2004,,2469,0,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,≥ 55 years at inclusion, -RS3,baseline,,3932,2006,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),Rotterdam,≥ 45 years, -RS3,2012,,3122,2012,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),Rotterdam,≥ 45 years at inclusion, -Sepages,pregnant women,pregnant women,,,,,,,,,, -Sepages,mothers,from the time of delivery,,,,,,,,,, -Sepages,fathers,biological father,,,,,,,,,, -testCohort1,test subcohort 1A,description for test subcohort 1A,956,1954,2010,Prenatal,"H26.4 After-cataract,H25-H28 Disorders of lens,VII Diseases of the eye and adnexa,H40 Glaucoma,H40-H42 Glaucoma,""H54.4 Blindness, monocular"",H53-H54 Visual disturbances and blindness,H11.3 Conjunctival haemorrhage,H10-H13 Disorders of conjunctiva,H26.1 Traumatic cataract,H26.2 Complicated cataract,H26.3 Drug-induced cataract,H26.8 Other specified cataract,""H26.9 Cataract, unspecified"",H01 Other inflammation of eyelid,""H00-H06 Disorders of eyelid, lacrimal system and orbit"",H00 Hordeolum and chalazion,H00.1 Chalazion,H01.0 Other inflammation of eyelid - Blepharitis,H01.1 Noninfectious dermatoses of eyelid,H01.8 Other specified inflammation of eyelid,""H01.9 Inflammation of eyelid, unspecified"",H02 Other disorders of eyelid,H02.0 Entropion and trichiasis of eyelid,H02.1 Ectropion of eyelid,H02.2 Other disorders of eyelid - Lagophthalmos,H02.3 Other disorders of eyelid - Blepharochalasis,H02.4 Ptosis of eyelid,H02.5 Other disorders affecting eyelid function,H02.6 Xanthelasma of eyelid,H02.7 Other degenerative disorders of eyelid and periocular area,H02.8 Other specified disorders of eyelid,""H02.9 Disorder of eyelid, unspecified"",H03 Disorders of eyelid in diseases classified elsewhere,H03.0 Parasitic infestation of eyelid in diseases classified elsewhere,H03.1 Involvement of eyelid in other infectious diseases classified elsewhere,H11.2 Conjunctival scars,H03.8 Involvement of eyelid in other diseases classified elsewhere,H04 Disorders of lacrimal system,H04.0 Disorders of lacrimal system - Dacryoadenitis,H04.1 Other disorders of lacrimal gland,H04.2 Disorders of lacrimal system - Epiphora,H04.3 Acute and unspecified inflammation of lacrimal passages,H04.4 Chronic inflammation of lacrimal passages,H04.5 Stenosis and insufficiency of lacrimal passages,H04.6 Other changes in lacrimal passages,H04.8 Other disorders of lacrimal system,""H04.9 Disorder of lacrimal system, unspecified"",H05 Disorders of orbit,H05.0 Acute inflammation of orbit,H05.1 Chronic inflammatory disorders of orbit,H05.2 Disorders of orbit - Exophthalmic conditions,H05.3 Deformity of orbit,H05.4 Disorders of orbit - Enophthalmos,H05.5 Retained (old) foreign body following penetrating wound of orbit,H05.8 Other disorders of orbit,""H05.9 Disorder of orbit, unspecified"",H06 Disorders of lacrimal system and orbit in diseases classified elsewhere,H06.0 Disorders of lacrimal system in diseases classified elsewhere,H06.1 Parasitic infestation of orbit in diseases classified elsewhere,H06.2 Disorders of lacrimal system and orbit in diseases classified elsewhere - Dysthyroid exophthalmos,H06.3 Other disorders of orbit in diseases classified elsewhere,H10 Conjunctivitis,H10.0 Mucopurulent conjunctivitis,H10.1 Acute atopic conjunctivitis,H10.2 Other acute conjunctivitis,""H10.3 Acute conjunctivitis, unspecified"",H10.4 Chronic conjunctivitis,H10.5 Blepharoconjunctivitis,H10.8 Other conjunctivitis,""H10.9 Conjunctivitis, unspecified"",H11 Other disorders of conjunctiva,H11.0 Other disorders of conjunctiva - Pterygium,H11.1 Conjunctival degenerations and deposits,H11.4 Other conjunctival vascular disorders and cysts,H11.8 Other specified disorders of conjunctiva,""H11.9 Disorder of conjunctiva, unspecified"",H13 Disorders of conjunctiva in diseases classified elsewhere,H13.0 Filarial infection of conjunctiva,H13.1 Conjunctivitis in infectious and parasitic diseases classified elsewhere,H13.2 Conjunctivitis in other diseases classified elsewhere,H13.3 Disorders of conjunctiva in diseases classified elsewhere - Ocular pemphigoid,H13.8 Other disorders of conjunctiva in diseases classified elsewhere,""H15-H22 Disorders of sclera, cornea, iris and ciliary body"",H15 Disorders of sclera,H15.0 Disorders of sclera - Scleritis,H15.1 Disorders of sclera - Episcleritis,H15.8 Other disorders of sclera,""H15.9 Disorder of sclera, unspecified"",H16 Keratitis,H16.0 Keratitis - Corneal ulcer,H16.1 Other superficial keratitis without conjunctivitis,H16.2 Keratitis - Keratoconjunctivitis,H16.3 Interstitial and deep keratitis,H16.4 Keratitis - Corneal neovascularization,H16.8 Other keratitis,H17 Corneal scars and opacities,H17.0 Corneal scars and opacities - Adherent leukoma,H17.1 Other central corneal opacity,H17.8 Other corneal scars and opacities,""H17.9 Corneal scar and opacity, unspecified"",H18 Other disorders of cornea,H18.0 Corneal pigmentations and deposits,H18.1 Other disorders of cornea - Bullous keratopathy,H18.2 Other corneal oedema,H18.3 Changes in corneal membranes,H18.4 Corneal degeneration,H18.5 Hereditary corneal dystrophies,H18.6 Other disorders of cornea - Keratoconus,H18.7 Other corneal deformities,H18.8 Other specified disorders of cornea,""H18.9 Disorder of cornea, unspecified"",H19 Disorders of sclera and cornea in diseases classified elsewhere,H19.0 Scleritis and episcleritis in diseases classified elsewhere,H19.1 Herpesviral keratitis and keratoconjunctivitis,H19.2 Keratitis and keratoconjunctivitis in other infectious and parasitic diseases classified elsewhere,H19.3 Keratitis and keratoconjunctivitis in other diseases classified elsewhere,H19.8 Other disorders of sclera and cornea in diseases classified elsewhere,H20 Iridocyclitis,H20.0 Acute and subacute iridocyclitis,H20.1 Chronic iridocyclitis,H20.2 Lens-induced iridocyclitis,H20.8 Other iridocyclitis,""H20.9 Iridocyclitis, unspecified"",H21 Other disorders of iris and ciliary body,H21.0 Other disorders of iris and ciliary body - Hyphaema,H21.1 Other vascular disorders of iris and ciliary body,H21.2 Degeneration of iris and ciliary body,""H21.3 Cyst of iris, ciliary body and anterior chamber"",H21.4 Other disorders of iris and ciliary body - Pupillary membranes,H21.5 Other adhesions and disruptions of iris and ciliary body,H00.0 Hordeolum and other deep inflammation of eyelid,H21.8 Other specified disorders of iris and ciliary body,""H21.9 Disorder of iris and ciliary body, unspecified"",H22 Disorders of iris and ciliary body in diseases classified elsewhere,H22.0 Iridocyclitis in infectious and parasitic diseases classified elsewhere,H22.1 Iridocyclitis in other diseases classified elsewhere,H22.8 Other disorders of iris and ciliary body in diseases classified elsewhere,H25 Senile cataract,H25.0 Senile incipient cataract,H25.1 Senile nuclear cataract,""H25.2 Senile cataract, morgagnian type"",H25.8 Other senile cataract,""H25.9 Senile cataract, unspecified"",H26 Other cataract,""H26.0 Infantile, juvenile and presenile cataract"",H27 Other disorders of lens,H27.0 Other disorders of lens - Aphakia,H27.1 Dislocation of lens,H27.8 Other specified disorders of lens,""H27.9 Disorder of lens, unspecified"",H28 Cataract and other disorders of lens in diseases classified elsewhere,H28.0 Diabetic cataract,""H28.1 Cataract in other endocrine, nutritional and metabolic diseases"",H28.2 Cataract in other diseases classified elsewhere,H28.8 Other disorders of lens in diseases classified elsewhere,H30 Chorioretinal inflammation,H30-H36 Disorders of choroid and retina,H30.0 Focal chorioretinal inflammation,H30.1 Disseminated chorioretinal inflammation,H30.2 Chorioretinal inflammation - Posterior cyclitis,H30.8 Other chorioretinal inflammations,""H30.9 Chorioretinal inflammation, unspecified"",H31 Other disorders of choroid,H31.0 Other disorders of choroid - Chorioretinal scars,H31.1 Choroidal degeneration,H31.2 Hereditary choroidal dystrophy,H31.3 Choroidal haemorrhage and rupture,H31.4 Choroidal detachment,H31.8 Other specified disorders of choroid,""H31.9 Disorder of choroid, unspecified"",H32 Chorioretinal disorders in diseases classified elsewhere,H32.0 Chorioretinal inflammation in infectious and parasitic diseases classified elsewhere,H32.8 Other chorioretinal disorders in diseases classified elsewhere,H33 Retinal detachments and breaks,H33.0 Retinal detachment with retinal break,H33.1 Retinoschisis and retinal cysts,H33.2 Serous retinal detachment,H33.3 Retinal breaks without detachment,H33.4 Retinal detachments and breaks - Traction detachment of retina,H33.5 Other retinal detachments,H34 Retinal vascular occlusions,H34.0 Transient retinal artery occlusion,H34.1 Central retinal artery occlusion,H34.2 Other retinal artery occlusions,H40.1 Primary open-angle glaucoma,H34.8 Other retinal vascular occlusions,""H34.9 Retinal vascular occlusion, unspecified"",H35 Other retinal disorders,H35.0 Background retinopathy and retinal vascular changes,H35.1 Other retinal disorders - Retinopathy of prematurity,H35.2 Other proliferative retinopathy,H35.3 Other retinal disorders - Degeneration of macula and posterior pole,H35.4 Peripheral retinal degeneration,H35.5 Hereditary retinal dystrophy,H35.6 Retinal haemorrhage,H35.7 Separation of retinal layers,H35.8 Other specified retinal disorders,""H35.9 Retinal disorder, unspecified"",H36 Retinal disorders in diseases classified elsewhere,H36.0 Diabetic retinopathy,H36.8 Other retinal disorders in diseases classified elsewhere,H40.0 Glaucoma suspect,H40.2 Primary angle-closure glaucoma,H40.3 Glaucoma secondary to eye trauma,H40.4 Glaucoma secondary to eye inflammation,H40.5 Glaucoma secondary to other eye disorders,H40.6 Glaucoma secondary to drugs,H40.8 Other glaucoma,""H40.9 Glaucoma, unspecified"",H42 Glaucoma in diseases classified elsewhere,""H42.0 Glaucoma in endocrine, nutritional and metabolic diseases"",H42.8 Glaucoma in other diseases classified elsewhere,H43-H45 Disorders of vitreous body and globe,H43 Disorders of vitreous body,H43.0 Vitreous prolapse,H43.1 Vitreous haemorrhage,H43.2 Crystalline deposits in vitreous body,H43.3 Other vitreous opacities,H43.8 Other disorders of vitreous body,""H43.9 Disorder of vitreous body, unspecified"",H44 Disorders of globe,H44.0 Disorders of globe - Purulent endophthalmitis,H44.1 Disorders of globe - Other endophthalmitis,H44.2 Disorders of globe - Degenerative myopia,H44.3 Other degenerative disorders of globe,H44.4 Hypotony of eye,H44.5 Degenerated conditions of globe,""H44.6 Disorders of globe - Retained (old) intraocular foreign body, magnetic"",""H44.7 Disorders of globe - Retained (old) intraocular foreign body, nonmagnetic"",H44.8 Other disorders of globe,""H44.9 Disorder of globe, unspecified"",H45 Disorders of vitreous body and globe in diseases classified elsewhere,H45.0 Vitreous haemorrhage in diseases classified elsewhere,H45.1 Endophthalmitis in diseases classified elsewhere,H45.8 Other disorders of vitreous body and globe in diseases classified elsewhere,H46-H48 Disorders of optic nerve and visual pathways,H46 Optic neuritis,H47 Other disorders of optic [2nd] nerve and visual pathways,""H47.0 Disorders of optic nerve, not elsewhere classified"",""H47.1 Other disorders of optic [2nd] nerve and visual pathways - Papilloedema, unspecified"",H47.2 Optic atrophy,H47.3 Other disorders of optic disc,H47.4 Disorders of optic chiasm,H47.5 Disorders of other visual pathways,H47.6 Disorders of visual cortex,""H47.7 Disorder of visual pathways, unspecified"",H48 Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere,H48.0 Optic atrophy in diseases classified elsewhere,H48.1 Retrobulbar neuritis in diseases classified elsewhere,H48.8 Other disorders of optic nerve and visual pathways in diseases classified elsewhere,""H49-H52 Disorders of ocular muscles, binocular movement, accommodation and refraction"",H49 Paralytic strabismus,H49.0 Paralytic strabismus - Third [oculomotor] nerve palsy,H49.1 Paralytic strabismus - Fourth [trochlear] nerve palsy,H49.2 Paralytic strabismus - Sixth [abducent] nerve palsy,H49.3 Paralytic strabismus - Total (external) ophthalmoplegia,H49.4 Paralytic strabismus - Progressive external ophthalmoplegia,H49.8 Other paralytic strabismus,""H49.9 Paralytic strabismus, unspecified"",H50 Other strabismus,H50.0 Convergent concomitant strabismus,H50.1 Divergent concomitant strabismus,H50.2 Vertical strabismus,H50.3 Other strabismus - Intermittent heterotropia,H50.4 Other and unspecified heterotropia,H50.5 Other strabismus - Heterophoria,H50.8 Other specified strabismus,""H50.9 Strabismus, unspecified"",H51 Other disorders of binocular movement,H51.0 Palsy of conjugate gaze,H51.1 Other disorders of binocular movement - Convergence insufficiency and excess,H51.2 Other disorders of binocular movement - Internuclear ophthalmoplegia,H51.8 Other specified disorders of binocular movement,""H51.9 Disorder of binocular movement, unspecified"",H52 Disorders of refraction and accommodation,H52.0 Disorders of refraction and accommodation - Hypermetropia,H52.1 Disorders of refraction and accommodation - Myopia,H52.2 Disorders of refraction and accommodation - Astigmatism,H52.3 Anisometropia and aniseikonia,H52.4 Disorders of refraction and accommodation - Presbyopia,H52.5 Disorders of accommodation,H52.6 Other disorders of refraction,""H52.7 Disorder of refraction, unspecified"",H53 Visual disturbances,H53.0 Visual disturbances - Amblyopia ex anopsia,H53.1 Subjective visual disturbances,H53.2 Visual disturbances - Diplopia,H53.3 Visual disturbances - Other disorders of binocular vision,H53.4 Visual field defects,H53.5 Visual disturbances - Colour vision deficiencies,H53.6 Visual disturbances - Night blindness,H53.8 Other visual disturbances,""H53.9 Visual disturbance, unspecified"",H54 Visual impairment including blindness (binocular or monocular),""H54.0 Blindness, binocular"",""H54.1 Severe visual impairment, binocular"",""H54.2 Moderate visual impairment, binocular"",""H54.3 Mild or no visual impairment, binocular"",""H54.5 Severe visual impairment, monocular"",""H54.6 Moderate visual impairment, monocular"",H54.9 Unspecified visual impairment (binocular),H55-H59 Other disorders of eye and adnexa,H55 Nystagmus and other irregular eye movements,H57 Other disorders of eye and adnexa,H57.0 Anomalies of pupillary function,H57.1 Other disorders of eye and adnexa - Ocular pain,H57.8 Other specified disorders of eye and adnexa,""H57.9 Disorder of eye and adnexa, unspecified"",H58 Other disorders of eye and adnexa in diseases classified elsewhere,H58.0 Anomalies of pupillary function in diseases classified elsewhere,H58.1 Visual disturbances in diseases classified elsewhere,H58.8 Other specified disorders of eye and adnexa in diseases classified elsewhere,""H59 Postprocedural disorders of eye and adnexa, not elsewhere classified"",""H59.0 Postprocedural disorders of eye and adnexa, not elsewhere classified - Keratopathy (bullous aphakic) following cataract surgery"",H59.8 Other postprocedural disorders of eye and adnexa,""H59.9 Postprocedural disorder of eye and adnexa, unspecified"",""H16.9 Keratitis, unspecified"",H50.6 Mechanical strabismus","L50 Urticaria,L50-L54 Urticaria and erythema,L28.1 Prurigo nodularis,L20-L30 Dermatitis and eczema,L68 Hypertrichosis,L60-L75 Disorders of skin appendages,L80-L99 Other disorders of the skin and subcutaneous tissue,XII Diseases of the skin and subcutaneous tissue,L01 Impetigo,L00-L08 Infections of the skin and subcutaneous tissue,L00 Staphylococcal scalded skin syndrome,L01.0 Impetigo [any organism] [any site],L01.1 Impetigo - Impetiginization of other dermatoses,""L02 Cutaneous abscess, furuncle and carbuncle"",""L02.0 Cutaneous abscess, furuncle and carbuncle of face"",""L02.1 Cutaneous abscess, furuncle and carbuncle of neck"",""L02.2 Cutaneous abscess, furuncle and carbuncle of trunk"",""L02.3 Cutaneous abscess, furuncle and carbuncle of buttock"",""L02.4 Cutaneous abscess, furuncle and carbuncle of limb"",""L02.8 Cutaneous abscess, furuncle and carbuncle of other sites"",""L02.9 Cutaneous abscess, furuncle and carbuncle, unspecified"",L03 Cellulitis,L03.0 Cellulitis of finger and toe,L03.1 Cellulitis of other parts of limb,L03.2 Cellulitis of face,L03.3 Cellulitis of trunk,L03.8 Cellulitis of other sites,""L03.9 Cellulitis, unspecified"",L04 Acute lymphadenitis,L10.3 Brazilian pemphigus [fogo selvagem],L10-L14 Bullous disorders,""L04.0 Acute lymphadenitis of face, head and neck"",L04.1 Acute lymphadenitis of trunk,L04.2 Acute lymphadenitis of upper limb,L04.3 Acute lymphadenitis of lower limb,L04.8 Acute lymphadenitis of other sites,""L04.9 Acute lymphadenitis, unspecified"",L05 Pilonidal cyst,L05.0 Pilonidal cyst with abscess,L05.9 Pilonidal cyst without abscess,L08 Other local infections of skin and subcutaneous tissue,L08.0 Other local infections of skin and subcutaneous tissue - Pyoderma,L08.1 Other local infections of skin and subcutaneous tissue - Erythrasma,L08.8 Other specified local infections of skin and subcutaneous tissue,""L08.9 Local infection of skin and subcutaneous tissue, unspecified"",L10 Pemphigus,L10.0 Pemphigus vulgaris,L10.1 Pemphigus vegetans,L10.2 Pemphigus foliaceus,L10.4 Pemphigus erythematosus,L10.5 Drug-induced pemphigus,L10.8 Other pemphigus,""L10.9 Pemphigus, unspecified"",L11 Other acantholytic disorders,L11.1 Transient acantholytic dermatosis [Grover],L11.8 Other specified acantholytic disorders,""L11.9 Acantholytic disorder, unspecified"",L12 Pemphigoid,L12.0 Bullous pemphigoid,L12.1 Cicatricial pemphigoid,L12.2 Pemphigoid - Chronic bullous disease of childhood,L12.3 Pemphigoid - Acquired epidermolysis bullosa,L12.8 Other pemphigoid,""L12.9 Pemphigoid, unspecified"",L13 Other bullous disorders,L13.0 Other bullous disorders - Dermatitis herpetiformis,L13.1 Other bullous disorders - Subcorneal pustular dermatitis,L13.8 Other specified bullous disorders,""L13.9 Bullous disorder, unspecified"",L14 Bullous disorders in diseases classified elsewhere,L20 Atopic dermatitis,L20.0 Atopic dermatitis - Besnier prurigo,L20.8 Other atopic dermatitis,""L20.9 Atopic dermatitis, unspecified"",L21 Seborrhoeic dermatitis,L21.0 Seborrhoeic dermatitis - Seborrhoea capitis,L21.1 Seborrhoeic infantile dermatitis,L21.8 Other seborrhoeic dermatitis,""L21.9 Seborrhoeic dermatitis, unspecified"",L23 Allergic contact dermatitis,L23.0 Allergic contact dermatitis due to metals,L23.1 Allergic contact dermatitis due to adhesives,L23.2 Allergic contact dermatitis due to cosmetics,L23.3 Allergic contact dermatitis due to drugs in contact with skin,L23.4 Allergic contact dermatitis due to dyes,L23.5 Allergic contact dermatitis due to other chemical products,L23.6 Allergic contact dermatitis due to food in contact with skin,""L23.7 Allergic contact dermatitis due to plants, except food"",L23.8 Allergic contact dermatitis due to other agents,""L23.9 Allergic contact dermatitis, unspecified cause"",L24 Irritant contact dermatitis,L24.0 Irritant contact dermatitis due to detergents,L24.1 Irritant contact dermatitis due to oils and greases,L24.2 Irritant contact dermatitis due to solvents,L24.3 Irritant contact dermatitis due to cosmetics,L24.4 Irritant contact dermatitis due to drugs in contact with skin,L24.5 Irritant contact dermatitis due to other chemical products,L24.6 Irritant contact dermatitis due to food in contact with skin,""L24.7 Irritant contact dermatitis due to plants, except food"",L24.8 Irritant contact dermatitis due to other agents,""L24.9 Irritant contact dermatitis, unspecified cause"",L25 Unspecified contact dermatitis,L25.0 Unspecified contact dermatitis due to cosmetics,L25.1 Unspecified contact dermatitis due to drugs in contact with skin,L25.2 Unspecified contact dermatitis due to dyes,L25.3 Unspecified contact dermatitis due to other chemical products,L25.4 Unspecified contact dermatitis due to food in contact with skin,""L25.5 Unspecified contact dermatitis due to plants, except food"",L25.8 Unspecified contact dermatitis due to other agents,""L25.9 Unspecified contact dermatitis, unspecified cause"",L26 Exfoliative dermatitis,L27 Dermatitis due to substances taken internally,L27.0 Generalized skin eruption due to drugs and medicaments,L27.1 Localized skin eruption due to drugs and medicaments,L27.2 Dermatitis due to ingested food,L27.8 Dermatitis due to other substances taken internally,L27.9 Dermatitis due to unspecified substance taken internally,L28 Lichen simplex chronicus and prurigo,L28.0 Lichen simplex chronicus,L28.2 Other prurigo,L29 Pruritus,L29.0 Pruritus ani,L29.1 Pruritus scroti,L29.2 Pruritus vulvae,""L29.3 Anogenital pruritus, unspecified"",L29.8 Other pruritus,""L29.9 Pruritus, unspecified"",L30.0 Nummular dermatitis,L30.1 Other dermatitis - Dyshidrosis [pompholyx],L30.2 Other dermatitis - Cutaneous autosensitization,L30.3 Infective dermatitis,L30.4 Other dermatitis - Erythema intertrigo,L30.5 Other dermatitis - Pityriasis alba,L30.8 Other specified dermatitis,""L30.9 Dermatitis, unspecified"",L40-L45 Papulosquamous disorders,L40 Psoriasis,L40.0 Psoriasis vulgaris,L40.1 Generalized pustular psoriasis,L40.2 Psoriasis - Acrodermatitis continua,L40.3 Psoriasis - Pustulosis palmaris et plantaris,L40.4 Guttate psoriasis,L40.5 Arthropathic psoriasis,L40.8 Other psoriasis,""L40.9 Psoriasis, unspecified"",L41 Parapsoriasis,L41.0 Parapsoriasis - Pityriasis lichenoides et varioliformis acuta,L41.1 Parapsoriasis - Pityriasis lichenoides chronica,L41.3 Small plaque parapsoriasis,L41.4 Large plaque parapsoriasis,L41.5 Retiform parapsoriasis,L41.8 Other parapsoriasis,""L41.9 Parapsoriasis, unspecified"",L42 Pityriasis rosea,L43 Lichen planus,L43.0 Hypertrophic lichen planus,L43.1 Bullous lichen planus,L43.2 Lichenoid drug reaction,L43.3 Subacute (active) lichen planus,L43.8 Other lichen planus,""L43.9 Lichen planus, unspecified"",L44 Other papulosquamous disorders,L44.0 Other papulosquamous disorders - Pityriasis rubra pilaris,L44.1 Other papulosquamous disorders - Lichen nitidus,L44.2 Other papulosquamous disorders - Lichen striatus,L44.3 Other papulosquamous disorders - Lichen ruber moniliformis,L44.4 Other papulosquamous disorders - Infantile papular acrodermatitis [Giannotti-Crosti],L44.8 Other specified papulosquamous disorders,""L44.9 Papulosquamous disorder, unspecified"",L45 Papulosquamous disorders in diseases classified elsewhere,L50.0 Allergic urticaria,L50.1 Idiopathic urticaria,L50.2 Urticaria due to cold and heat,L50.3 Dermatographic urticaria,L50.4 Vibratory urticaria,L50.5 Cholinergic urticaria,L50.6 Contact urticaria,L50.8 Other urticaria,""L50.9 Urticaria, unspecified"",L51.0 Nonbullous erythema multiforme,L51.1 Bullous erythema multiforme,L51.2 Erythema multiforme - Toxic epidermal necrolysis [Lyell],L51.8 Other erythema multiforme,""L51.9 Erythema multiforme, unspecified"",L52 Erythema nodosum,L53 Other erythematous conditions,L53.0 Other erythematous conditions - Toxic erythema,L53.1 Other erythematous conditions - Erythema annulare centrifugum,L53.2 Other erythematous conditions - Erythema marginatum,L53.3 Other chronic figurate erythema,L22 Diaper [napkin] dermatitis,L53.8 Other specified erythematous conditions,""L53.9 Erythematous condition, unspecified"",L54 Erythema in diseases classified elsewhere,L54.0 Erythema marginatum in acute rheumatic fever,L54.8 Erythema in other diseases classified elsewhere,L55-L59 Radiation-related disorders of the skin and subcutaneous tissue,L55 Sunburn,L55.0 Sunburn of first degree,L55.1 Sunburn of second degree,L55.2 Sunburn of third degree,L55.8 Other sunburn,""L55.9 Sunburn, unspecified"",L56 Other acute skin changes due to ultraviolet radiation,L56.0 Drug phototoxic response,L56.1 Drug photoallergic response,L56.2 Photocontact dermatitis [berloque dermatitis],L56.3 Other acute skin changes due to ultraviolet radiation - Solar urticaria,L56.4 Other acute skin changes due to ultraviolet radiation - Polymorphous light eruption,L56.8 Other specified acute skin changes due to ultraviolet radiation,""L56.9 Acute skin change due to ultraviolet radiation, unspecified"",L57 Skin changes due to chronic exposure to nonionizing radiation,L57.0 Actinic keratosis,L57.1 Skin changes due to chronic exposure to nonionizing radiation - Actinic reticuloid,L57.2 Skin changes due to chronic exposure to nonionizing radiation - Cutis rhomboidalis nuchae,L57.3 Skin changes due to chronic exposure to nonionizing radiation - Poikiloderma of Civatte,L57.4 Skin changes due to chronic exposure to nonionizing radiation - Cutis laxa senilis,L57.5 Skin changes due to chronic exposure to nonionizing radiation - Actinic granuloma,L57.8 Other skin changes due to chronic exposure to nonionizing radiation,""L57.9 Skin changes due to chronic exposure to nonionizing radiation, unspecified"",L58 Radiodermatitis,L58.0 Acute radiodermatitis,L58.1 Chronic radiodermatitis,""L58.9 Radiodermatitis, unspecified"",L70.4 Infantile acne,L59 Other disorders of skin and subcutaneous tissue related to radiation,L59.0 Other disorders of skin and subcutaneous tissue related to radiation - Erythema ab igne [dermatitis ab igne],L59.8 Other specified disorders of skin and subcutaneous tissue related to radiation,""L59.9 Disorder of skin and subcutaneous tissue related to radiation, unspecified"",L60 Nail disorders,L60.0 Ingrowing nail,L60.1 Nail disorders - Onycholysis,L60.3 Nail dystrophy,L60.4 Nail disorders - Beau lines,L60.5 Yellow nail syndrome,L60.8 Other nail disorders,""L60.9 Nail disorder, unspecified"",L62 Nail disorders in diseases classified elsewhere,L62.0 Clubbed nail pachydermoperiostosis,L62.8 Nail disorders in other diseases classified elsewhere,L63 Alopecia areata,L63.0 Alopecia (capitis) totalis,L63.1 Alopecia universalis,L63.2 Alopecia areata - Ophiasis,L63.8 Other alopecia areata,""L63.9 Alopecia areata, unspecified"",L64 Androgenic alopecia,L64.0 Drug-induced androgenic alopecia,L64.8 Other androgenic alopecia,""L64.9 Androgenic alopecia, unspecified"",L65 Other nonscarring hair loss,L65.0 Other nonscarring hair loss - Telogen effluvium,L65.1 Other nonscarring hair loss - Anagen effluvium,L65.2 Other nonscarring hair loss - Alopecia mucinosa,L65.8 Other specified nonscarring hair loss,""L65.9 Nonscarring hair loss, unspecified"",L66 Cicatricial alopecia [scarring hair loss],L66.0 Cicatricial alopecia [scarring hair loss] - Pseudopelade,L66.1 Cicatricial alopecia [scarring hair loss] - Lichen planopilaris,L66.2 Cicatricial alopecia [scarring hair loss] - Folliculitis decalvans,L66.3 Cicatricial alopecia [scarring hair loss] - Perifolliculitis capitis abscedens,L66.4 Cicatricial alopecia [scarring hair loss] - Folliculitis ulerythematosa reticulata,L66.8 Other cicatricial alopecia,""L66.9 Cicatricial alopecia, unspecified"",L67 Hair colour and hair shaft abnormalities,L67.0 Hair colour and hair shaft abnormalities - Trichorrhexis nodosa,L67.1 Variations in hair colour,L67.8 Other hair colour and hair shaft abnormalities,""L67.9 Hair colour and hair shaft abnormality, unspecified"",L68.0 Hypertrichosis - Hirsutism,L68.1 Acquired hypertrichosis lanuginosa,L68.2 Localized hypertrichosis,L68.3 Hypertrichosis - Polytrichia,L68.8 Other hypertrichosis,""L68.9 Hypertrichosis, unspecified"",L70 Acne,L70.0 Acne vulgaris,L70.1 Acne conglobata,L70.2 Acne varioliformis,L70.3 Acne tropica,L70.5 Acné excori,L70.8 Other acne,""L70.9 Acne, unspecified"",L71 Rosacea,L71.0 Rosacea - Perioral dermatitis,L71.1 Rosacea - Rhinophyma,L71.8 Other rosacea,""L71.9 Rosacea, unspecified"",L72 Follicular cysts of skin and subcutaneous tissue,L72.0 Follicular cysts of skin and subcutaneous tissue - Epidermal cyst,L72.1 Follicular cysts of skin and subcutaneous tissue - Trichilemmal cyst,L72.2 Follicular cysts of skin and subcutaneous tissue - Steatocystoma multiplex,L72.8 Other follicular cysts of skin and subcutaneous tissue,""L72.9 Follicular cyst of skin and subcutaneous tissue, unspecified"",L73 Other follicular disorders,L73.0 Other follicular disorders - Acne keloid,L73.1 Other follicular disorders - Pseudofolliculitis barbae,L73.2 Other follicular disorders - Hidradenitis suppurativa,L73.8 Other specified follicular disorders,""L73.9 Follicular disorder, unspecified"",L74 Eccrine sweat disorders,L74.0 Eccrine sweat disorders - Miliaria rubra,L74.1 Eccrine sweat disorders - Miliaria crystallina,L74.2 Eccrine sweat disorders - Miliaria profunda,""L74.3 Eccrine sweat disorders - Miliaria, unspecified"",L74.4 Eccrine sweat disorders - Anhidrosis,L74.8 Other eccrine sweat disorders,""L74.9 Eccrine sweat disorder, unspecified"",L75 Apocrine sweat disorders,L75.0 Apocrine sweat disorders - Bromhidrosis,L75.1 Apocrine sweat disorders - Chromhidrosis,L75.2 Apocrine miliaria,L75.8 Other apocrine sweat disorders,L11.0 Other acantholytic disorders - Acquired keratosis follicularis,""L75.9 Apocrine sweat disorder, unspecified"",L80 Vitiligo,L81 Other disorders of pigmentation,L81.0 Postinflammatory hyperpigmentation,L81.1 Other disorders of pigmentation - Chloasma,L81.2 Other disorders of pigmentation - Freckles,L81.3 Café au lait spot,L81.4 Other melanin hyperpigmentation,""L81.5 Other disorders of pigmentation - Leukoderma, not elsewhere classified"",L81.6 Other disorders of diminished melanin formation,L81.7 Other disorders of pigmentation - Pigmented purpuric dermatosis,L81.8 Other specified disorders of pigmentation,""L81.9 Disorder of pigmentation, unspecified"",L82 Seborrhoeic keratosis,L83 Acanthosis nigricans,L84 Corns and callosities,L85 Other epidermal thickening,L85.0 Other epidermal thickening - Acquired ichthyosis,L85.1 Other epidermal thickening - Acquired keratosis [keratoderma] palmaris et plantaris,L85.2 Other epidermal thickening - Keratosis punctata (palmaris et plantaris),L85.3 Other epidermal thickening - Xerosis cutis,L85.8 Other specified epidermal thickening,""L85.9 Epidermal thickening, unspecified"",L86 Keratoderma in diseases classified elsewhere,L87 Transepidermal elimination disorders,L87.0 Transepidermal elimination disorders - Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle],L87.1 Transepidermal elimination disorders - Reactive perforating collagenosis,L87.2 Transepidermal elimination disorders - Elastosis perforans serpiginosa,L87.8 Other transepidermal elimination disorders,""L87.9 Transepidermal elimination disorder, unspecified"",L88 Pyoderma gangrenosum,L89 Decubitus ulcer and pressure area,L89.0 Stage I decubitus ulcer and pressure area,L89.1 Stage II decubitus ulcer,L89.2 Stage III decubitus ulcer,L89.3 Stage IV decubitus ulcer,""L89.9 Decubitus ulcer and pressure area, unspecified"",L90 Atrophic disorders of skin,L90.0 Lichen sclerosus et atrophicus,L90.1 Anetoderma of Schweninger-Buzzi,L90.2 Anetoderma of Jadassohn-Pellizzari,L90.3 Atrophoderma of Pasini and Pierini,L90.4 Acrodermatitis chronica atrophicans,L90.5 Scar conditions and fibrosis of skin,L90.6 Striae atrophicae,L90.8 Other atrophic disorders of skin,""L90.9 Atrophic disorder of skin, unspecified"",L91 Hypertrophic disorders of skin,L91.0 Hypertrophic scar,L91.8 Other hypertrophic disorders of skin,""L91.9 Hypertrophic disorder of skin, unspecified"",L92 Granulomatous disorders of skin and subcutaneous tissue,L92.0 Granulomatous disorders of skin and subcutaneous tissue - Granuloma annulare,""L92.1 Granulomatous disorders of skin and subcutaneous tissue - Necrobiosis lipoidica, not elsewhere classified"",L92.2 Granuloma faciale [eosinophilic granuloma of skin],L92.3 Foreign body granuloma of skin and subcutaneous tissue,L30 Other dermatitis,L92.8 Other granulomatous disorders of skin and subcutaneous tissue,""L92.9 Granulomatous disorder of skin and subcutaneous tissue, unspecified"",L93 Lupus erythematosus,L93.0 Discoid lupus erythematosus,L93.1 Subacute cutaneous lupus erythematosus,L93.2 Other local lupus erythematosus,L94 Other localized connective tissue disorders,L94.0 Localized scleroderma [morphea],L94.1 Other localized connective tissue disorders - Linear scleroderma,L94.2 Other localized connective tissue disorders - Calcinosis cutis,L94.3 Other localized connective tissue disorders - Sclerodactyly,L94.4 Other localized connective tissue disorders - Gottron papules,L94.5 Other localized connective tissue disorders - Poikiloderma vasculare atrophicans,L94.6 Other localized connective tissue disorders - Ainhum,L94.8 Other specified localized connective tissue disorders,""L94.9 Localized connective tissue disorder, unspecified"",""L95 Vasculitis limited to skin, not elsewhere classified"",L95.0 Livedoid vasculitis,""L95.1 Vasculitis limited to skin, not elsewhere classified - Erythema elevatum diutinum"",L95.8 Other vasculitis limited to skin,""L95.9 Vasculitis limited to skin, unspecified"",""L97 Ulcer of lower limb, not elsewhere classified"",""L98 Other disorders of skin and subcutaneous tissue, not elsewhere classified"",""L98.0 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Pyogenic granuloma"",""L98.1 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Factitial dermatitis"",""L98.2 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Febrile neutrophilic dermatosis [Sweet]"",""L98.3 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Eosinophilic cellulitis [Wells]"",""L98.4 Chronic ulcer of skin, not elsewhere classified"",L98.5 Mucinosis of skin,L98.6 Other infiltrative disorders of skin and subcutaneous tissue,L98.7 Excessive and redundant skin and subcutaneous tissue,L98.8 Other specified disorders of skin and subcutaneous tissue,""L98.9 Disorder of skin and subcutaneous tissue, unspecified"",L51 Erythema multiforme,L99 Other disorders of skin and subcutaneous tissue in diseases classified elsewhere,L99.0 Amyloidosis of skin,L99.8 Other specified disorders of skin and subcutaneous tissue in diseases classified elsewhere,L60.2 Nail disorders - Onychogryphosis","Antigua and Barbuda,Argentina,Armenia","Amsterdam,Auvergne-Rhône-Alpes",test inclusion criteria for subcohort 1A,"supplementary information for subcohort 1A - look for ""until now"" blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah UNTIL NOW" -testCohort1,test subcohort 1B,description for test subcohort 1B,23487,1959,1975,"All ages,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","H60-H62 Diseases of external ear,H60 Otitis externa,H60.0 Abscess of external ear,H60.1 Cellulitis of external ear,H60.2 Malignant otitis externa,H60.3 Other infective otitis externa,H60.4 Cholesteatoma of external ear,""H60.5 Acute otitis externa, noninfective"",H60.8 Other otitis externa,""H60.9 Otitis externa, unspecified"",H61 Other disorders of external ear,H61.0 Perichondritis of external ear,H61.1 Noninfective disorders of pinna,H61.2 Other disorders of external ear - Impacted cerumen,H61.3 Acquired stenosis of external ear canal,H61.8 Other specified disorders of external ear,""H61.9 Disorder of external ear, unspecified"",H62 Disorders of external ear in diseases classified elsewhere,H62.0 Otitis externa in bacterial diseases classified elsewhere,H62.1 Otitis externa in viral diseases classified elsewhere,H62.2 Otitis externa in mycoses,H62.3 Otitis externa in other infectious and parasitic diseases classified elsewhere,H62.4 Otitis externa in other diseases classified elsewhere,H62.8 Other disorders of external ear in diseases classified elsewhere",I30 Acute pericarditis,"Bermuda,Bhutan,Bolivia (Plurinational State of)","Bradford,Barcelona,Bretagne",inclusion criteria for subcohort 1B,supplementary information for subcohort 1B blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah UNTIL NOW -testCohort2,test subcohort 2A,description for test subcohort 2A,3874,1950,,Adolescent (13-17 years),"H60-H62 Diseases of external ear,VIII Diseases of the ear and mastoid process,H91 Other hearing loss,H90-H95 Other disorders of ear,H81.2 Vestibular neuronitis,H80-H83 Diseases of inner ear,H60 Otitis externa,H60.0 Abscess of external ear,H60.1 Cellulitis of external ear,H60.2 Malignant otitis externa,H60.3 Other infective otitis externa,H60.4 Cholesteatoma of external ear,""H60.5 Acute otitis externa, noninfective"",H60.8 Other otitis externa,""H60.9 Otitis externa, unspecified"",H61 Other disorders of external ear,H61.0 Perichondritis of external ear,H61.1 Noninfective disorders of pinna,H61.2 Other disorders of external ear - Impacted cerumen,H61.3 Acquired stenosis of external ear canal,H61.8 Other specified disorders of external ear,""H61.9 Disorder of external ear, unspecified"",H62 Disorders of external ear in diseases classified elsewhere,H62.0 Otitis externa in bacterial diseases classified elsewhere,H62.1 Otitis externa in viral diseases classified elsewhere,H62.2 Otitis externa in mycoses,H62.3 Otitis externa in other infectious and parasitic diseases classified elsewhere,H62.4 Otitis externa in other diseases classified elsewhere,H62.8 Other disorders of external ear in diseases classified elsewhere,H65-H75 Diseases of middle ear and mastoid,H65 Nonsuppurative otitis media,H65.0 Acute serous otitis media,H65.1 Other acute nonsuppurative otitis media,H65.2 Chronic serous otitis media,H65.3 Chronic mucoid otitis media,H65.4 Other chronic nonsuppurative otitis media,""H65.9 Nonsuppurative otitis media, unspecified"",H66 Suppurative and unspecified otitis media,H66.0 Acute suppurative otitis media,H66.1 Chronic tubotympanic suppurative otitis media,H66.2 Chronic atticoantral suppurative otitis media,H66.3 Other chronic suppurative otitis media,""H66.4 Suppurative otitis media, unspecified"",""H66.9 Otitis media, unspecified"",H67 Otitis media in diseases classified elsewhere,H67.0 Otitis media in bacterial diseases classified elsewhere,H67.1 Otitis media in viral diseases classified elsewhere,H67.8 Otitis media in other diseases classified elsewhere,H68 Eustachian salpingitis and obstruction,H68.0 Eustachian salpingitis,H68.1 Obstruction of Eustachian tube,H69 Other disorders of Eustachian tube,H69.0 Patulous Eustachian tube,H69.8 Other specified disorders of Eustachian tube,""H69.9 Eustachian tube disorder, unspecified"",H70 Mastoiditis and related conditions,H70.0 Acute mastoiditis,H70.1 Chronic mastoiditis,H70.2 Mastoiditis and related conditions - Petrositis,H70.8 Other mastoiditis and related conditions,""H70.9 Mastoiditis, unspecified"",H71 Cholesteatoma of middle ear,H72 Perforation of tympanic membrane,H72.0 Central perforation of tympanic membrane,H72.1 Attic perforation of tympanic membrane,H72.2 Other marginal perforations of tympanic membrane,H72.8 Other perforations of tympanic membrane,""H72.9 Perforation of tympanic membrane, unspecified"",H73 Other disorders of tympanic membrane,H73.0 Other disorders of tympanic membrane - Acute myringitis,H73.1 Other disorders of tympanic membrane - Chronic myringitis,H73.8 Other specified disorders of tympanic membrane,""H73.9 Disorder of tympanic membrane, unspecified"",H74 Other disorders of middle ear and mastoid,H74.0 Other disorders of middle ear and mastoid - Tympanosclerosis,H74.1 Adhesive middle ear disease,H74.2 Discontinuity and dislocation of ear ossicles,H74.3 Other acquired abnormalities of ear ossicles,H74.4 Polyp of middle ear,H74.8 Other specified disorders of middle ear and mastoid,""H74.9 Disorder of middle ear and mastoid, unspecified"",H75 Other disorders of middle ear and mastoid in diseases classified elsewhere,H75.0 Mastoiditis in infectious and parasitic diseases classified elsewhere,H75.8 Other specified disorders of middle ear and mastoid in diseases classified elsewhere,H80 Otosclerosis,""H80.0 Otosclerosis involving oval window, nonobliterative"",""H80.1 Otosclerosis involving oval window, obliterative"",H80.2 Cochlear otosclerosis,H80.8 Other otosclerosis,""H80.9 Otosclerosis, unspecified"",H81 Disorders of vestibular function,H81.0 Ménière disea,H81.1 Disorders of vestibular function - Benign paroxysmal vertigo,H81.3 Disorders of vestibular function - Other peripheral vertigo,H81.4 Vertigo of central origin,H81.8 Other disorders of vestibular function,""H81.9 Disorder of vestibular function, unspecified"",H82 Vertiginous syndromes in diseases classified elsewhere,H83 Other diseases of inner ear,H83.0 Other diseases of inner ear - Labyrinthitis,H83.1 Other diseases of inner ear - Labyrinthine fistula,H83.2 Other diseases of inner ear - Labyrinthine dysfunction,H83.3 Noise effects on inner ear,H83.8 Other specified diseases of inner ear,""H83.9 Disease of inner ear, unspecified"",H90 Conductive and sensorineural hearing loss,""H90.0 Conductive hearing loss, bilateral"",""H90.1 Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side"",""H90.2 Conductive hearing loss, unspecified"",""H90.3 Sensorineural hearing loss, bilateral"",""H90.4 Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side"",""H90.5 Sensorineural hearing loss, unspecified"",""H90.6 Mixed conductive and sensorineural hearing loss, bilateral"",""H90.7 Mixed conductive and sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side"",""H90.8 Mixed conductive and sensorineural hearing loss, unspecified"",H91.0 Ototoxic hearing loss,H91.1 Other hearing loss - Presbycusis,H91.2 Sudden idiopathic hearing loss,""H91.3 Other hearing loss - Deaf mutism, not elsewhere classified"",H91.8 Other specified hearing loss,""H91.9 Hearing loss, unspecified"",H92 Otalgia and effusion of ear,H92.0 Otalgia,H92.1 Otalgia and effusion of ear - Otorrhoea,H92.2 Otalgia and effusion of ear - Otorrhagia,""H93 Other disorders of ear, not elsewhere classified"",H93.0 Degenerative and vascular disorders of ear,""H93.1 Other disorders of ear, not elsewhere classified - Tinnitus"",H93.2 Other abnormal auditory perceptions,H93.3 Disorders of acoustic nerve,H93.8 Other specified disorders of ear,""H93.9 Disorder of ear, unspecified"",H94 Other disorders of ear in diseases classified elsewhere,H94.0 Acoustic neuritis in infectious and parasitic diseases classified elsewhere,H94.8 Other specified disorders of ear in diseases classified elsewhere,""H95 Postprocedural disorders of ear and mastoid process, not elsewhere classified"",H95.0 Recurrent cholesteatoma of postmastoidectomy cavity,H95.1 Other disorders following mastoidectomy,H95.8 Other postprocedural disorders of ear and mastoid process,""H95.9 Postprocedural disorder of ear and mastoid process, unspecified""","L50 Urticaria,L50-L54 Urticaria and erythema,L28.1 Prurigo nodularis,L20-L30 Dermatitis and eczema,L68 Hypertrichosis,L60-L75 Disorders of skin appendages,L80-L99 Other disorders of the skin and subcutaneous tissue,XII Diseases of the skin and subcutaneous tissue,L01 Impetigo,L00-L08 Infections of the skin and subcutaneous tissue,L00 Staphylococcal scalded skin syndrome,L01.0 Impetigo [any organism] [any site],L01.1 Impetigo - Impetiginization of other dermatoses,""L02 Cutaneous abscess, furuncle and carbuncle"",""L02.0 Cutaneous abscess, furuncle and carbuncle of face"",""L02.1 Cutaneous abscess, furuncle and carbuncle of neck"",""L02.2 Cutaneous abscess, furuncle and carbuncle of trunk"",""L02.3 Cutaneous abscess, furuncle and carbuncle of buttock"",""L02.4 Cutaneous abscess, furuncle and carbuncle of limb"",""L02.8 Cutaneous abscess, furuncle and carbuncle of other sites"",""L02.9 Cutaneous abscess, furuncle and carbuncle, unspecified"",L03 Cellulitis,L03.0 Cellulitis of finger and toe,L03.1 Cellulitis of other parts of limb,L03.2 Cellulitis of face,L03.3 Cellulitis of trunk,L03.8 Cellulitis of other sites,""L03.9 Cellulitis, unspecified"",L04 Acute lymphadenitis,L10.3 Brazilian pemphigus [fogo selvagem],L10-L14 Bullous disorders,""L04.0 Acute lymphadenitis of face, head and neck"",L04.1 Acute lymphadenitis of trunk,L04.2 Acute lymphadenitis of upper limb,L04.3 Acute lymphadenitis of lower limb,L04.8 Acute lymphadenitis of other sites,""L04.9 Acute lymphadenitis, unspecified"",L05 Pilonidal cyst,L05.0 Pilonidal cyst with abscess,L05.9 Pilonidal cyst without abscess,L08 Other local infections of skin and subcutaneous tissue,L08.0 Other local infections of skin and subcutaneous tissue - Pyoderma,L08.1 Other local infections of skin and subcutaneous tissue - Erythrasma,L08.8 Other specified local infections of skin and subcutaneous tissue,""L08.9 Local infection of skin and subcutaneous tissue, unspecified"",L10 Pemphigus,L10.0 Pemphigus vulgaris,L10.1 Pemphigus vegetans,L10.2 Pemphigus foliaceus,L10.4 Pemphigus erythematosus,L10.5 Drug-induced pemphigus,L10.8 Other pemphigus,""L10.9 Pemphigus, unspecified"",L11 Other acantholytic disorders,L11.1 Transient acantholytic dermatosis [Grover],L11.8 Other specified acantholytic disorders,""L11.9 Acantholytic disorder, unspecified"",L12 Pemphigoid,L12.0 Bullous pemphigoid,L12.1 Cicatricial pemphigoid,L12.2 Pemphigoid - Chronic bullous disease of childhood,L12.3 Pemphigoid - Acquired epidermolysis bullosa,L12.8 Other pemphigoid,""L12.9 Pemphigoid, unspecified"",L13 Other bullous disorders,L13.0 Other bullous disorders - Dermatitis herpetiformis,L13.1 Other bullous disorders - Subcorneal pustular dermatitis,L13.8 Other specified bullous disorders,""L13.9 Bullous disorder, unspecified"",L14 Bullous disorders in diseases classified elsewhere,L20 Atopic dermatitis,L20.0 Atopic dermatitis - Besnier prurigo,L20.8 Other atopic dermatitis,""L20.9 Atopic dermatitis, unspecified"",L21 Seborrhoeic dermatitis,L21.0 Seborrhoeic dermatitis - Seborrhoea capitis,L21.1 Seborrhoeic infantile dermatitis,L21.8 Other seborrhoeic dermatitis,""L21.9 Seborrhoeic dermatitis, unspecified"",L23 Allergic contact dermatitis,L23.0 Allergic contact dermatitis due to metals,L23.1 Allergic contact dermatitis due to adhesives,L23.2 Allergic contact dermatitis due to cosmetics,L23.3 Allergic contact dermatitis due to drugs in contact with skin,L23.4 Allergic contact dermatitis due to dyes,L23.5 Allergic contact dermatitis due to other chemical products,L23.6 Allergic contact dermatitis due to food in contact with skin,""L23.7 Allergic contact dermatitis due to plants, except food"",L23.8 Allergic contact dermatitis due to other agents,""L23.9 Allergic contact dermatitis, unspecified cause"",L24 Irritant contact dermatitis,L24.0 Irritant contact dermatitis due to detergents,L24.1 Irritant contact dermatitis due to oils and greases,L24.2 Irritant contact dermatitis due to solvents,L24.3 Irritant contact dermatitis due to cosmetics,L24.4 Irritant contact dermatitis due to drugs in contact with skin,L24.5 Irritant contact dermatitis due to other chemical products,L24.6 Irritant contact dermatitis due to food in contact with skin,""L24.7 Irritant contact dermatitis due to plants, except food"",L24.8 Irritant contact dermatitis due to other agents,""L24.9 Irritant contact dermatitis, unspecified cause"",L25 Unspecified contact dermatitis,L25.0 Unspecified contact dermatitis due to cosmetics,L25.1 Unspecified contact dermatitis due to drugs in contact with skin,L25.2 Unspecified contact dermatitis due to dyes,L25.3 Unspecified contact dermatitis due to other chemical products,L25.4 Unspecified contact dermatitis due to food in contact with skin,""L25.5 Unspecified contact dermatitis due to plants, except food"",L25.8 Unspecified contact dermatitis due to other agents,""L25.9 Unspecified contact dermatitis, unspecified cause"",L26 Exfoliative dermatitis,L27 Dermatitis due to substances taken internally,L27.0 Generalized skin eruption due to drugs and medicaments,L27.1 Localized skin eruption due to drugs and medicaments,L27.2 Dermatitis due to ingested food,L27.8 Dermatitis due to other substances taken internally,L27.9 Dermatitis due to unspecified substance taken internally,L28 Lichen simplex chronicus and prurigo,L28.0 Lichen simplex chronicus,L28.2 Other prurigo,L29 Pruritus,L29.0 Pruritus ani,L29.1 Pruritus scroti,L29.2 Pruritus vulvae,""L29.3 Anogenital pruritus, unspecified"",L29.8 Other pruritus,""L29.9 Pruritus, unspecified"",L30.0 Nummular dermatitis,L30.1 Other dermatitis - Dyshidrosis [pompholyx],L30.2 Other dermatitis - Cutaneous autosensitization,L30.3 Infective dermatitis,L30.4 Other dermatitis - Erythema intertrigo,L30.5 Other dermatitis - Pityriasis alba,L30.8 Other specified dermatitis,""L30.9 Dermatitis, unspecified"",L40-L45 Papulosquamous disorders,L40 Psoriasis,L40.0 Psoriasis vulgaris,L40.1 Generalized pustular psoriasis,L40.2 Psoriasis - Acrodermatitis continua,L40.3 Psoriasis - Pustulosis palmaris et plantaris,L40.4 Guttate psoriasis,L40.5 Arthropathic psoriasis,L40.8 Other psoriasis,""L40.9 Psoriasis, unspecified"",L41 Parapsoriasis,L41.0 Parapsoriasis - Pityriasis lichenoides et varioliformis acuta,L41.1 Parapsoriasis - Pityriasis lichenoides chronica,L41.3 Small plaque parapsoriasis,L41.4 Large plaque parapsoriasis,L41.5 Retiform parapsoriasis,L41.8 Other parapsoriasis,""L41.9 Parapsoriasis, unspecified"",L42 Pityriasis rosea,L43 Lichen planus,L43.0 Hypertrophic lichen planus,L43.1 Bullous lichen planus,L43.2 Lichenoid drug reaction,L43.3 Subacute (active) lichen planus,L43.8 Other lichen planus,""L43.9 Lichen planus, unspecified"",L44 Other papulosquamous disorders,L44.0 Other papulosquamous disorders - Pityriasis rubra pilaris,L44.1 Other papulosquamous disorders - Lichen nitidus,L44.2 Other papulosquamous disorders - Lichen striatus,L44.3 Other papulosquamous disorders - Lichen ruber moniliformis,L44.4 Other papulosquamous disorders - Infantile papular acrodermatitis [Giannotti-Crosti],L44.8 Other specified papulosquamous disorders,""L44.9 Papulosquamous disorder, unspecified"",L45 Papulosquamous disorders in diseases classified elsewhere,L50.0 Allergic urticaria,L50.1 Idiopathic urticaria,L50.2 Urticaria due to cold and heat,L50.3 Dermatographic urticaria,L50.4 Vibratory urticaria,L50.5 Cholinergic urticaria,L50.6 Contact urticaria,L50.8 Other urticaria,""L50.9 Urticaria, unspecified"",L51.0 Nonbullous erythema multiforme,L51.1 Bullous erythema multiforme,L51.2 Erythema multiforme - Toxic epidermal necrolysis [Lyell],L51.8 Other erythema multiforme,""L51.9 Erythema multiforme, unspecified"",L52 Erythema nodosum,L53 Other erythematous conditions,L53.0 Other erythematous conditions - Toxic erythema,L53.1 Other erythematous conditions - Erythema annulare centrifugum,L53.2 Other erythematous conditions - Erythema marginatum,L53.3 Other chronic figurate erythema,L22 Diaper [napkin] dermatitis,L53.8 Other specified erythematous conditions,""L53.9 Erythematous condition, unspecified"",L54 Erythema in diseases classified elsewhere,L54.0 Erythema marginatum in acute rheumatic fever,L54.8 Erythema in other diseases classified elsewhere,L55-L59 Radiation-related disorders of the skin and subcutaneous tissue,L55 Sunburn,L55.0 Sunburn of first degree,L55.1 Sunburn of second degree,L55.2 Sunburn of third degree,L55.8 Other sunburn,""L55.9 Sunburn, unspecified"",L56 Other acute skin changes due to ultraviolet radiation,L56.0 Drug phototoxic response,L56.1 Drug photoallergic response,L56.2 Photocontact dermatitis [berloque dermatitis],L56.3 Other acute skin changes due to ultraviolet radiation - Solar urticaria,L56.4 Other acute skin changes due to ultraviolet radiation - Polymorphous light eruption,L56.8 Other specified acute skin changes due to ultraviolet radiation,""L56.9 Acute skin change due to ultraviolet radiation, unspecified"",L57 Skin changes due to chronic exposure to nonionizing radiation,L57.0 Actinic keratosis,L57.1 Skin changes due to chronic exposure to nonionizing radiation - Actinic reticuloid,L57.2 Skin changes due to chronic exposure to nonionizing radiation - Cutis rhomboidalis nuchae,L57.3 Skin changes due to chronic exposure to nonionizing radiation - Poikiloderma of Civatte,L57.4 Skin changes due to chronic exposure to nonionizing radiation - Cutis laxa senilis,L57.5 Skin changes due to chronic exposure to nonionizing radiation - Actinic granuloma,L57.8 Other skin changes due to chronic exposure to nonionizing radiation,""L57.9 Skin changes due to chronic exposure to nonionizing radiation, unspecified"",L58 Radiodermatitis,L58.0 Acute radiodermatitis,L58.1 Chronic radiodermatitis,""L58.9 Radiodermatitis, unspecified"",L70.4 Infantile acne,L59 Other disorders of skin and subcutaneous tissue related to radiation,L59.0 Other disorders of skin and subcutaneous tissue related to radiation - Erythema ab igne [dermatitis ab igne],L59.8 Other specified disorders of skin and subcutaneous tissue related to radiation,""L59.9 Disorder of skin and subcutaneous tissue related to radiation, unspecified"",L60 Nail disorders,L60.0 Ingrowing nail,L60.1 Nail disorders - Onycholysis,L60.3 Nail dystrophy,L60.4 Nail disorders - Beau lines,L60.5 Yellow nail syndrome,L60.8 Other nail disorders,""L60.9 Nail disorder, unspecified"",L62 Nail disorders in diseases classified elsewhere,L62.0 Clubbed nail pachydermoperiostosis,L62.8 Nail disorders in other diseases classified elsewhere,L63 Alopecia areata,L63.0 Alopecia (capitis) totalis,L63.1 Alopecia universalis,L63.2 Alopecia areata - Ophiasis,L63.8 Other alopecia areata,""L63.9 Alopecia areata, unspecified"",L64 Androgenic alopecia,L64.0 Drug-induced androgenic alopecia,L64.8 Other androgenic alopecia,""L64.9 Androgenic alopecia, unspecified"",L65 Other nonscarring hair loss,L65.0 Other nonscarring hair loss - Telogen effluvium,L65.1 Other nonscarring hair loss - Anagen effluvium,L65.2 Other nonscarring hair loss - Alopecia mucinosa,L65.8 Other specified nonscarring hair loss,""L65.9 Nonscarring hair loss, unspecified"",L66 Cicatricial alopecia [scarring hair loss],L66.0 Cicatricial alopecia [scarring hair loss] - Pseudopelade,L66.1 Cicatricial alopecia [scarring hair loss] - Lichen planopilaris,L66.2 Cicatricial alopecia [scarring hair loss] - Folliculitis decalvans,L66.3 Cicatricial alopecia [scarring hair loss] - Perifolliculitis capitis abscedens,L66.4 Cicatricial alopecia [scarring hair loss] - Folliculitis ulerythematosa reticulata,L66.8 Other cicatricial alopecia,""L66.9 Cicatricial alopecia, unspecified"",L67 Hair colour and hair shaft abnormalities,L67.0 Hair colour and hair shaft abnormalities - Trichorrhexis nodosa,L67.1 Variations in hair colour,L67.8 Other hair colour and hair shaft abnormalities,""L67.9 Hair colour and hair shaft abnormality, unspecified"",L68.0 Hypertrichosis - Hirsutism,L68.1 Acquired hypertrichosis lanuginosa,L68.2 Localized hypertrichosis,L68.3 Hypertrichosis - Polytrichia,L68.8 Other hypertrichosis,""L68.9 Hypertrichosis, unspecified"",L70 Acne,L70.0 Acne vulgaris,L70.1 Acne conglobata,L70.2 Acne varioliformis,L70.3 Acne tropica,L70.5 Acné excori,L70.8 Other acne,""L70.9 Acne, unspecified"",L71 Rosacea,L71.0 Rosacea - Perioral dermatitis,L71.1 Rosacea - Rhinophyma,L71.8 Other rosacea,""L71.9 Rosacea, unspecified"",L72 Follicular cysts of skin and subcutaneous tissue,L72.0 Follicular cysts of skin and subcutaneous tissue - Epidermal cyst,L72.1 Follicular cysts of skin and subcutaneous tissue - Trichilemmal cyst,L72.2 Follicular cysts of skin and subcutaneous tissue - Steatocystoma multiplex,L72.8 Other follicular cysts of skin and subcutaneous tissue,""L72.9 Follicular cyst of skin and subcutaneous tissue, unspecified"",L73 Other follicular disorders,L73.0 Other follicular disorders - Acne keloid,L73.1 Other follicular disorders - Pseudofolliculitis barbae,L73.2 Other follicular disorders - Hidradenitis suppurativa,L73.8 Other specified follicular disorders,""L73.9 Follicular disorder, unspecified"",L74 Eccrine sweat disorders,L74.0 Eccrine sweat disorders - Miliaria rubra,L74.1 Eccrine sweat disorders - Miliaria crystallina,L74.2 Eccrine sweat disorders - Miliaria profunda,""L74.3 Eccrine sweat disorders - Miliaria, unspecified"",L74.4 Eccrine sweat disorders - Anhidrosis,L74.8 Other eccrine sweat disorders,""L74.9 Eccrine sweat disorder, unspecified"",L75 Apocrine sweat disorders,L75.0 Apocrine sweat disorders - Bromhidrosis,L75.1 Apocrine sweat disorders - Chromhidrosis,L75.2 Apocrine miliaria,L75.8 Other apocrine sweat disorders,L11.0 Other acantholytic disorders - Acquired keratosis follicularis,""L75.9 Apocrine sweat disorder, unspecified"",L80 Vitiligo,L81 Other disorders of pigmentation,L81.0 Postinflammatory hyperpigmentation,L81.1 Other disorders of pigmentation - Chloasma,L81.2 Other disorders of pigmentation - Freckles,L81.3 Café au lait spot,L81.4 Other melanin hyperpigmentation,""L81.5 Other disorders of pigmentation - Leukoderma, not elsewhere classified"",L81.6 Other disorders of diminished melanin formation,L81.7 Other disorders of pigmentation - Pigmented purpuric dermatosis,L81.8 Other specified disorders of pigmentation,""L81.9 Disorder of pigmentation, unspecified"",L82 Seborrhoeic keratosis,L83 Acanthosis nigricans,L84 Corns and callosities,L85 Other epidermal thickening,L85.0 Other epidermal thickening - Acquired ichthyosis,L85.1 Other epidermal thickening - Acquired keratosis [keratoderma] palmaris et plantaris,L85.2 Other epidermal thickening - Keratosis punctata (palmaris et plantaris),L85.3 Other epidermal thickening - Xerosis cutis,L85.8 Other specified epidermal thickening,""L85.9 Epidermal thickening, unspecified"",L86 Keratoderma in diseases classified elsewhere,L87 Transepidermal elimination disorders,L87.0 Transepidermal elimination disorders - Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle],L87.1 Transepidermal elimination disorders - Reactive perforating collagenosis,L87.2 Transepidermal elimination disorders - Elastosis perforans serpiginosa,L87.8 Other transepidermal elimination disorders,""L87.9 Transepidermal elimination disorder, unspecified"",L88 Pyoderma gangrenosum,L89 Decubitus ulcer and pressure area,L89.0 Stage I decubitus ulcer and pressure area,L89.1 Stage II decubitus ulcer,L89.2 Stage III decubitus ulcer,L89.3 Stage IV decubitus ulcer,""L89.9 Decubitus ulcer and pressure area, unspecified"",L90 Atrophic disorders of skin,L90.0 Lichen sclerosus et atrophicus,L90.1 Anetoderma of Schweninger-Buzzi,L90.2 Anetoderma of Jadassohn-Pellizzari,L90.3 Atrophoderma of Pasini and Pierini,L90.4 Acrodermatitis chronica atrophicans,L90.5 Scar conditions and fibrosis of skin,L90.6 Striae atrophicae,L90.8 Other atrophic disorders of skin,""L90.9 Atrophic disorder of skin, unspecified"",L91 Hypertrophic disorders of skin,L91.0 Hypertrophic scar,L91.8 Other hypertrophic disorders of skin,""L91.9 Hypertrophic disorder of skin, unspecified"",L92 Granulomatous disorders of skin and subcutaneous tissue,L92.0 Granulomatous disorders of skin and subcutaneous tissue - Granuloma annulare,""L92.1 Granulomatous disorders of skin and subcutaneous tissue - Necrobiosis lipoidica, not elsewhere classified"",L92.2 Granuloma faciale [eosinophilic granuloma of skin],L92.3 Foreign body granuloma of skin and subcutaneous tissue,L30 Other dermatitis,L92.8 Other granulomatous disorders of skin and subcutaneous tissue,""L92.9 Granulomatous disorder of skin and subcutaneous tissue, unspecified"",L93 Lupus erythematosus,L93.0 Discoid lupus erythematosus,L93.1 Subacute cutaneous lupus erythematosus,L93.2 Other local lupus erythematosus,L94 Other localized connective tissue disorders,L94.0 Localized scleroderma [morphea],L94.1 Other localized connective tissue disorders - Linear scleroderma,L94.2 Other localized connective tissue disorders - Calcinosis cutis,L94.3 Other localized connective tissue disorders - Sclerodactyly,L94.4 Other localized connective tissue disorders - Gottron papules,L94.5 Other localized connective tissue disorders - Poikiloderma vasculare atrophicans,L94.6 Other localized connective tissue disorders - Ainhum,L94.8 Other specified localized connective tissue disorders,""L94.9 Localized connective tissue disorder, unspecified"",""L95 Vasculitis limited to skin, not elsewhere classified"",L95.0 Livedoid vasculitis,""L95.1 Vasculitis limited to skin, not elsewhere classified - Erythema elevatum diutinum"",L95.8 Other vasculitis limited to skin,""L95.9 Vasculitis limited to skin, unspecified"",""L97 Ulcer of lower limb, not elsewhere classified"",""L98 Other disorders of skin and subcutaneous tissue, not elsewhere classified"",""L98.0 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Pyogenic granuloma"",""L98.1 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Factitial dermatitis"",""L98.2 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Febrile neutrophilic dermatosis [Sweet]"",""L98.3 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Eosinophilic cellulitis [Wells]"",""L98.4 Chronic ulcer of skin, not elsewhere classified"",L98.5 Mucinosis of skin,L98.6 Other infiltrative disorders of skin and subcutaneous tissue,L98.7 Excessive and redundant skin and subcutaneous tissue,L98.8 Other specified disorders of skin and subcutaneous tissue,""L98.9 Disorder of skin and subcutaneous tissue, unspecified"",L51 Erythema multiforme,L99 Other disorders of skin and subcutaneous tissue in diseases classified elsewhere,L99.0 Amyloidosis of skin,L99.8 Other specified disorders of skin and subcutaneous tissue in diseases classified elsewhere,L60.2 Nail disorders - Onychogryphosis",United Kingdom of Great Britain and Northern Ireland (the),"Valencia,Amsterdam",test inclusion criteria for subcohort 2A,supplementary information for subcohort 2A blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah UNTIL NOW +PSYCONN baseline data is collected from PROGR-S.",1000,1998,2018,"Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","F20 Schizophrenia,""F20-F29 Schizophrenia, schizotypal and delusional disorders"",F20.0 Paranoid schizophrenia,F20.1 Hebephrenic schizophrenia,F20.2 Catatonic schizophrenia,F20.3 Undifferentiated schizophrenia,F20.4 Schizophrenia - Post-schizophrenic depression,F20.5 Residual schizophrenia,F20.6 Simple schizophrenia,F20.8 Other schizophrenia,""F20.9 Schizophrenia, unspecified"",F21 Schizotypal disorder,F22 Persistent delusional disorders,F22.0 Delusional disorder,F22.8 Other persistent delusional disorders,""F22.9 Persistent delusional disorder, unspecified"",F23 Acute and transient psychotic disorders,F23.0 Acute polymorphic psychotic disorder without symptoms of schizophrenia,F23.1 Acute polymorphic psychotic disorder with symptoms of schizophrenia,F23.2 Acute schizophrenia-like psychotic disorder,F23.3 Other acute predominantly delusional psychotic disorders,F23.8 Other acute and transient psychotic disorders,""F23.9 Acute and transient psychotic disorder, unspecified"",F24 Induced delusional disorder,F25 Schizoaffective disorders,""F25.0 Schizoaffective disorder, manic type"",""F25.1 Schizoaffective disorder, depressive type"",""F25.2 Schizoaffective disorder, mixed type"",F25.8 Other schizoaffective disorders,""F25.9 Schizoaffective disorder, unspecified"",F28 Other nonorganic psychotic disorders,F29 Unspecified nonorganic psychosis,F30.2 Manic episode - Mania with psychotic symptoms,""F31.2 Bipolar affective disorder, current episode manic with psychotic symptoms"",""F31.5 Bipolar affective disorder, current episode severe depression with psychotic symptoms"",F32.3 Severe depressive episode with psychotic symptoms,""F33.3 Recurrent depressive disorder, current episode severe with psychotic symptoms""",,Netherlands (the),Groningen,,Patients with a suspected recent-onset psychotic episode or recurrent psychotic episode not diagnosed as such before.,,,https://umcgresearchdatacatalogue.nl/UMCG/ssr-catalogue/cohorts/MindLines +RS1,2018,,750,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS1,1993,,6315,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS1,1997,,4797,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS1,2014,,1153,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS1,2002,,3550,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS1,2009,,2147,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS1,baseline,,7983,1989,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS2,2015,,1408,,,"Aged (65+ years),Middle-aged (45-64 years)",,,Netherlands (the),,,≥ 55 years,,, +RS2,baseline,,3011,,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS2,2011,,1893,,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years,,, +RS2,2004,,2469,0,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),,,≥ 55 years at inclusion,,, +RS3,baseline,,3932,2006,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),Rotterdam,,≥ 45 years,,, +RS3,2012,,3122,2012,,"Middle-aged (45-64 years),Aged (65+ years)",,,Netherlands (the),Rotterdam,,≥ 45 years at inclusion,,, +Sepages,pregnant women,pregnant women,,,,,,,,,,,,, +Sepages,mothers,from the time of delivery,,,,,,,,,,,,, +Sepages,fathers,biological father,,,,,,,,,,,,, +testCohort1,test subcohort 1A,description for test subcohort 1A,956,1954,2010,Prenatal,"H26.4 After-cataract,H25-H28 Disorders of lens,VII Diseases of the eye and adnexa,H40 Glaucoma,H40-H42 Glaucoma,""H54.4 Blindness, monocular"",H53-H54 Visual disturbances and blindness,H11.3 Conjunctival haemorrhage,H10-H13 Disorders of conjunctiva,H26.1 Traumatic cataract,H26.2 Complicated cataract,H26.3 Drug-induced cataract,H26.8 Other specified cataract,""H26.9 Cataract, unspecified"",H01 Other inflammation of eyelid,""H00-H06 Disorders of eyelid, lacrimal system and orbit"",H00 Hordeolum and chalazion,H00.1 Chalazion,H01.0 Other inflammation of eyelid - Blepharitis,H01.1 Noninfectious dermatoses of eyelid,H01.8 Other specified inflammation of eyelid,""H01.9 Inflammation of eyelid, unspecified"",H02 Other disorders of eyelid,H02.0 Entropion and trichiasis of eyelid,H02.1 Ectropion of eyelid,H02.2 Other disorders of eyelid - Lagophthalmos,H02.3 Other disorders of eyelid - Blepharochalasis,H02.4 Ptosis of eyelid,H02.5 Other disorders affecting eyelid function,H02.6 Xanthelasma of eyelid,H02.7 Other degenerative disorders of eyelid and periocular area,H02.8 Other specified disorders of eyelid,""H02.9 Disorder of eyelid, unspecified"",H03 Disorders of eyelid in diseases classified elsewhere,H03.0 Parasitic infestation of eyelid in diseases classified elsewhere,H03.1 Involvement of eyelid in other infectious diseases classified elsewhere,H11.2 Conjunctival scars,H03.8 Involvement of eyelid in other diseases classified elsewhere,H04 Disorders of lacrimal system,H04.0 Disorders of lacrimal system - Dacryoadenitis,H04.1 Other disorders of lacrimal gland,H04.2 Disorders of lacrimal system - Epiphora,H04.3 Acute and unspecified inflammation of lacrimal passages,H04.4 Chronic inflammation of lacrimal passages,H04.5 Stenosis and insufficiency of lacrimal passages,H04.6 Other changes in lacrimal passages,H04.8 Other disorders of lacrimal system,""H04.9 Disorder of lacrimal system, unspecified"",H05 Disorders of orbit,H05.0 Acute inflammation of orbit,H05.1 Chronic inflammatory disorders of orbit,H05.2 Disorders of orbit - Exophthalmic conditions,H05.3 Deformity of orbit,H05.4 Disorders of orbit - Enophthalmos,H05.5 Retained (old) foreign body following penetrating wound of orbit,H05.8 Other disorders of orbit,""H05.9 Disorder of orbit, unspecified"",H06 Disorders of lacrimal system and orbit in diseases classified elsewhere,H06.0 Disorders of lacrimal system in diseases classified elsewhere,H06.1 Parasitic infestation of orbit in diseases classified elsewhere,H06.2 Disorders of lacrimal system and orbit in diseases classified elsewhere - Dysthyroid exophthalmos,H06.3 Other disorders of orbit in diseases classified elsewhere,H10 Conjunctivitis,H10.0 Mucopurulent conjunctivitis,H10.1 Acute atopic conjunctivitis,H10.2 Other acute conjunctivitis,""H10.3 Acute conjunctivitis, unspecified"",H10.4 Chronic conjunctivitis,H10.5 Blepharoconjunctivitis,H10.8 Other conjunctivitis,""H10.9 Conjunctivitis, unspecified"",H11 Other disorders of conjunctiva,H11.0 Other disorders of conjunctiva - Pterygium,H11.1 Conjunctival degenerations and deposits,H11.4 Other conjunctival vascular disorders and cysts,H11.8 Other specified disorders of conjunctiva,""H11.9 Disorder of conjunctiva, unspecified"",H13 Disorders of conjunctiva in diseases classified elsewhere,H13.0 Filarial infection of conjunctiva,H13.1 Conjunctivitis in infectious and parasitic diseases classified elsewhere,H13.2 Conjunctivitis in other diseases classified elsewhere,H13.3 Disorders of conjunctiva in diseases classified elsewhere - Ocular pemphigoid,H13.8 Other disorders of conjunctiva in diseases classified elsewhere,""H15-H22 Disorders of sclera, cornea, iris and ciliary body"",H15 Disorders of sclera,H15.0 Disorders of sclera - Scleritis,H15.1 Disorders of sclera - Episcleritis,H15.8 Other disorders of sclera,""H15.9 Disorder of sclera, unspecified"",H16 Keratitis,H16.0 Keratitis - Corneal ulcer,H16.1 Other superficial keratitis without conjunctivitis,H16.2 Keratitis - Keratoconjunctivitis,H16.3 Interstitial and deep keratitis,H16.4 Keratitis - Corneal neovascularization,H16.8 Other keratitis,H17 Corneal scars and opacities,H17.0 Corneal scars and opacities - Adherent leukoma,H17.1 Other central corneal opacity,H17.8 Other corneal scars and opacities,""H17.9 Corneal scar and opacity, unspecified"",H18 Other disorders of cornea,H18.0 Corneal pigmentations and deposits,H18.1 Other disorders of cornea - Bullous keratopathy,H18.2 Other corneal oedema,H18.3 Changes in corneal membranes,H18.4 Corneal degeneration,H18.5 Hereditary corneal dystrophies,H18.6 Other disorders of cornea - Keratoconus,H18.7 Other corneal deformities,H18.8 Other specified disorders of cornea,""H18.9 Disorder of cornea, unspecified"",H19 Disorders of sclera and cornea in diseases classified elsewhere,H19.0 Scleritis and episcleritis in diseases classified elsewhere,H19.1 Herpesviral keratitis and keratoconjunctivitis,H19.2 Keratitis and keratoconjunctivitis in other infectious and parasitic diseases classified elsewhere,H19.3 Keratitis and keratoconjunctivitis in other diseases classified elsewhere,H19.8 Other disorders of sclera and cornea in diseases classified elsewhere,H20 Iridocyclitis,H20.0 Acute and subacute iridocyclitis,H20.1 Chronic iridocyclitis,H20.2 Lens-induced iridocyclitis,H20.8 Other iridocyclitis,""H20.9 Iridocyclitis, unspecified"",H21 Other disorders of iris and ciliary body,H21.0 Other disorders of iris and ciliary body - Hyphaema,H21.1 Other vascular disorders of iris and ciliary body,H21.2 Degeneration of iris and ciliary body,""H21.3 Cyst of iris, ciliary body and anterior chamber"",H21.4 Other disorders of iris and ciliary body - Pupillary membranes,H21.5 Other adhesions and disruptions of iris and ciliary body,H00.0 Hordeolum and other deep inflammation of eyelid,H21.8 Other specified disorders of iris and ciliary body,""H21.9 Disorder of iris and ciliary body, unspecified"",H22 Disorders of iris and ciliary body in diseases classified elsewhere,H22.0 Iridocyclitis in infectious and parasitic diseases classified elsewhere,H22.1 Iridocyclitis in other diseases classified elsewhere,H22.8 Other disorders of iris and ciliary body in diseases classified elsewhere,H25 Senile cataract,H25.0 Senile incipient cataract,H25.1 Senile nuclear cataract,""H25.2 Senile cataract, morgagnian type"",H25.8 Other senile cataract,""H25.9 Senile cataract, unspecified"",H26 Other cataract,""H26.0 Infantile, juvenile and presenile cataract"",H27 Other disorders of lens,H27.0 Other disorders of lens - Aphakia,H27.1 Dislocation of lens,H27.8 Other specified disorders of lens,""H27.9 Disorder of lens, unspecified"",H28 Cataract and other disorders of lens in diseases classified elsewhere,H28.0 Diabetic cataract,""H28.1 Cataract in other endocrine, nutritional and metabolic diseases"",H28.2 Cataract in other diseases classified elsewhere,H28.8 Other disorders of lens in diseases classified elsewhere,H30 Chorioretinal inflammation,H30-H36 Disorders of choroid and retina,H30.0 Focal chorioretinal inflammation,H30.1 Disseminated chorioretinal inflammation,H30.2 Chorioretinal inflammation - Posterior cyclitis,H30.8 Other chorioretinal inflammations,""H30.9 Chorioretinal inflammation, unspecified"",H31 Other disorders of choroid,H31.0 Other disorders of choroid - Chorioretinal scars,H31.1 Choroidal degeneration,H31.2 Hereditary choroidal dystrophy,H31.3 Choroidal haemorrhage and rupture,H31.4 Choroidal detachment,H31.8 Other specified disorders of choroid,""H31.9 Disorder of choroid, unspecified"",H32 Chorioretinal disorders in diseases classified elsewhere,H32.0 Chorioretinal inflammation in infectious and parasitic diseases classified elsewhere,H32.8 Other chorioretinal disorders in diseases classified elsewhere,H33 Retinal detachments and breaks,H33.0 Retinal detachment with retinal break,H33.1 Retinoschisis and retinal cysts,H33.2 Serous retinal detachment,H33.3 Retinal breaks without detachment,H33.4 Retinal detachments and breaks - Traction detachment of retina,H33.5 Other retinal detachments,H34 Retinal vascular occlusions,H34.0 Transient retinal artery occlusion,H34.1 Central retinal artery occlusion,H34.2 Other retinal artery occlusions,H40.1 Primary open-angle glaucoma,H34.8 Other retinal vascular occlusions,""H34.9 Retinal vascular occlusion, unspecified"",H35 Other retinal disorders,H35.0 Background retinopathy and retinal vascular changes,H35.1 Other retinal disorders - Retinopathy of prematurity,H35.2 Other proliferative retinopathy,H35.3 Other retinal disorders - Degeneration of macula and posterior pole,H35.4 Peripheral retinal degeneration,H35.5 Hereditary retinal dystrophy,H35.6 Retinal haemorrhage,H35.7 Separation of retinal layers,H35.8 Other specified retinal disorders,""H35.9 Retinal disorder, unspecified"",H36 Retinal disorders in diseases classified elsewhere,H36.0 Diabetic retinopathy,H36.8 Other retinal disorders in diseases classified elsewhere,H40.0 Glaucoma suspect,H40.2 Primary angle-closure glaucoma,H40.3 Glaucoma secondary to eye trauma,H40.4 Glaucoma secondary to eye inflammation,H40.5 Glaucoma secondary to other eye disorders,H40.6 Glaucoma secondary to drugs,H40.8 Other glaucoma,""H40.9 Glaucoma, unspecified"",H42 Glaucoma in diseases classified elsewhere,""H42.0 Glaucoma in endocrine, nutritional and metabolic diseases"",H42.8 Glaucoma in other diseases classified elsewhere,H43-H45 Disorders of vitreous body and globe,H43 Disorders of vitreous body,H43.0 Vitreous prolapse,H43.1 Vitreous haemorrhage,H43.2 Crystalline deposits in vitreous body,H43.3 Other vitreous opacities,H43.8 Other disorders of vitreous body,""H43.9 Disorder of vitreous body, unspecified"",H44 Disorders of globe,H44.0 Disorders of globe - Purulent endophthalmitis,H44.1 Disorders of globe - Other endophthalmitis,H44.2 Disorders of globe - Degenerative myopia,H44.3 Other degenerative disorders of globe,H44.4 Hypotony of eye,H44.5 Degenerated conditions of globe,""H44.6 Disorders of globe - Retained (old) intraocular foreign body, magnetic"",""H44.7 Disorders of globe - Retained (old) intraocular foreign body, nonmagnetic"",H44.8 Other disorders of globe,""H44.9 Disorder of globe, unspecified"",H45 Disorders of vitreous body and globe in diseases classified elsewhere,H45.0 Vitreous haemorrhage in diseases classified elsewhere,H45.1 Endophthalmitis in diseases classified elsewhere,H45.8 Other disorders of vitreous body and globe in diseases classified elsewhere,H46-H48 Disorders of optic nerve and visual pathways,H46 Optic neuritis,H47 Other disorders of optic [2nd] nerve and visual pathways,""H47.0 Disorders of optic nerve, not elsewhere classified"",""H47.1 Other disorders of optic [2nd] nerve and visual pathways - Papilloedema, unspecified"",H47.2 Optic atrophy,H47.3 Other disorders of optic disc,H47.4 Disorders of optic chiasm,H47.5 Disorders of other visual pathways,H47.6 Disorders of visual cortex,""H47.7 Disorder of visual pathways, unspecified"",H48 Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere,H48.0 Optic atrophy in diseases classified elsewhere,H48.1 Retrobulbar neuritis in diseases classified elsewhere,H48.8 Other disorders of optic nerve and visual pathways in diseases classified elsewhere,""H49-H52 Disorders of ocular muscles, binocular movement, accommodation and refraction"",H49 Paralytic strabismus,H49.0 Paralytic strabismus - Third [oculomotor] nerve palsy,H49.1 Paralytic strabismus - Fourth [trochlear] nerve palsy,H49.2 Paralytic strabismus - Sixth [abducent] nerve palsy,H49.3 Paralytic strabismus - Total (external) ophthalmoplegia,H49.4 Paralytic strabismus - Progressive external ophthalmoplegia,H49.8 Other paralytic strabismus,""H49.9 Paralytic strabismus, unspecified"",H50 Other strabismus,H50.0 Convergent concomitant strabismus,H50.1 Divergent concomitant strabismus,H50.2 Vertical strabismus,H50.3 Other strabismus - Intermittent heterotropia,H50.4 Other and unspecified heterotropia,H50.5 Other strabismus - Heterophoria,H50.8 Other specified strabismus,""H50.9 Strabismus, unspecified"",H51 Other disorders of binocular movement,H51.0 Palsy of conjugate gaze,H51.1 Other disorders of binocular movement - Convergence insufficiency and excess,H51.2 Other disorders of binocular movement - Internuclear ophthalmoplegia,H51.8 Other specified disorders of binocular movement,""H51.9 Disorder of binocular movement, unspecified"",H52 Disorders of refraction and accommodation,H52.0 Disorders of refraction and accommodation - Hypermetropia,H52.1 Disorders of refraction and accommodation - Myopia,H52.2 Disorders of refraction and accommodation - Astigmatism,H52.3 Anisometropia and aniseikonia,H52.4 Disorders of refraction and accommodation - Presbyopia,H52.5 Disorders of accommodation,H52.6 Other disorders of refraction,""H52.7 Disorder of refraction, unspecified"",H53 Visual disturbances,H53.0 Visual disturbances - Amblyopia ex anopsia,H53.1 Subjective visual disturbances,H53.2 Visual disturbances - Diplopia,H53.3 Visual disturbances - Other disorders of binocular vision,H53.4 Visual field defects,H53.5 Visual disturbances - Colour vision deficiencies,H53.6 Visual disturbances - Night blindness,H53.8 Other visual disturbances,""H53.9 Visual disturbance, unspecified"",H54 Visual impairment including blindness (binocular or monocular),""H54.0 Blindness, binocular"",""H54.1 Severe visual impairment, binocular"",""H54.2 Moderate visual impairment, binocular"",""H54.3 Mild or no visual impairment, binocular"",""H54.5 Severe visual impairment, monocular"",""H54.6 Moderate visual impairment, monocular"",H54.9 Unspecified visual impairment (binocular),H55-H59 Other disorders of eye and adnexa,H55 Nystagmus and other irregular eye movements,H57 Other disorders of eye and adnexa,H57.0 Anomalies of pupillary function,H57.1 Other disorders of eye and adnexa - Ocular pain,H57.8 Other specified disorders of eye and adnexa,""H57.9 Disorder of eye and adnexa, unspecified"",H58 Other disorders of eye and adnexa in diseases classified elsewhere,H58.0 Anomalies of pupillary function in diseases classified elsewhere,H58.1 Visual disturbances in diseases classified elsewhere,H58.8 Other specified disorders of eye and adnexa in diseases classified elsewhere,""H59 Postprocedural disorders of eye and adnexa, not elsewhere classified"",""H59.0 Postprocedural disorders of eye and adnexa, not elsewhere classified - Keratopathy (bullous aphakic) following cataract surgery"",H59.8 Other postprocedural disorders of eye and adnexa,""H59.9 Postprocedural disorder of eye and adnexa, unspecified"",""H16.9 Keratitis, unspecified"",H50.6 Mechanical strabismus","L50 Urticaria,L50-L54 Urticaria and erythema,L28.1 Prurigo nodularis,L20-L30 Dermatitis and eczema,L68 Hypertrichosis,L60-L75 Disorders of skin appendages,L80-L99 Other disorders of the skin and subcutaneous tissue,XII Diseases of the skin and subcutaneous tissue,L01 Impetigo,L00-L08 Infections of the skin and subcutaneous tissue,L00 Staphylococcal scalded skin syndrome,L01.0 Impetigo [any organism] [any site],L01.1 Impetigo - Impetiginization of other dermatoses,""L02 Cutaneous abscess, furuncle and carbuncle"",""L02.0 Cutaneous abscess, furuncle and carbuncle of face"",""L02.1 Cutaneous abscess, furuncle and carbuncle of neck"",""L02.2 Cutaneous abscess, furuncle and carbuncle of trunk"",""L02.3 Cutaneous abscess, furuncle and carbuncle of buttock"",""L02.4 Cutaneous abscess, furuncle and carbuncle of limb"",""L02.8 Cutaneous abscess, furuncle and carbuncle of other sites"",""L02.9 Cutaneous abscess, furuncle and carbuncle, unspecified"",L03 Cellulitis,L03.0 Cellulitis of finger and toe,L03.1 Cellulitis of other parts of limb,L03.2 Cellulitis of face,L03.3 Cellulitis of trunk,L03.8 Cellulitis of other sites,""L03.9 Cellulitis, unspecified"",L04 Acute lymphadenitis,L10.3 Brazilian pemphigus [fogo selvagem],L10-L14 Bullous disorders,""L04.0 Acute lymphadenitis of face, head and neck"",L04.1 Acute lymphadenitis of trunk,L04.2 Acute lymphadenitis of upper limb,L04.3 Acute lymphadenitis of lower limb,L04.8 Acute lymphadenitis of other sites,""L04.9 Acute lymphadenitis, unspecified"",L05 Pilonidal cyst,L05.0 Pilonidal cyst with abscess,L05.9 Pilonidal cyst without abscess,L08 Other local infections of skin and subcutaneous tissue,L08.0 Other local infections of skin and subcutaneous tissue - Pyoderma,L08.1 Other local infections of skin and subcutaneous tissue - Erythrasma,L08.8 Other specified local infections of skin and subcutaneous tissue,""L08.9 Local infection of skin and subcutaneous tissue, unspecified"",L10 Pemphigus,L10.0 Pemphigus vulgaris,L10.1 Pemphigus vegetans,L10.2 Pemphigus foliaceus,L10.4 Pemphigus erythematosus,L10.5 Drug-induced pemphigus,L10.8 Other pemphigus,""L10.9 Pemphigus, unspecified"",L11 Other acantholytic disorders,L11.1 Transient acantholytic dermatosis [Grover],L11.8 Other specified acantholytic disorders,""L11.9 Acantholytic disorder, unspecified"",L12 Pemphigoid,L12.0 Bullous pemphigoid,L12.1 Cicatricial pemphigoid,L12.2 Pemphigoid - Chronic bullous disease of childhood,L12.3 Pemphigoid - Acquired epidermolysis bullosa,L12.8 Other pemphigoid,""L12.9 Pemphigoid, unspecified"",L13 Other bullous disorders,L13.0 Other bullous disorders - Dermatitis herpetiformis,L13.1 Other bullous disorders - Subcorneal pustular dermatitis,L13.8 Other specified bullous disorders,""L13.9 Bullous disorder, unspecified"",L14 Bullous disorders in diseases classified elsewhere,L20 Atopic dermatitis,L20.0 Atopic dermatitis - Besnier prurigo,L20.8 Other atopic dermatitis,""L20.9 Atopic dermatitis, unspecified"",L21 Seborrhoeic dermatitis,L21.0 Seborrhoeic dermatitis - Seborrhoea capitis,L21.1 Seborrhoeic infantile dermatitis,L21.8 Other seborrhoeic dermatitis,""L21.9 Seborrhoeic dermatitis, unspecified"",L23 Allergic contact dermatitis,L23.0 Allergic contact dermatitis due to metals,L23.1 Allergic contact dermatitis due to adhesives,L23.2 Allergic contact dermatitis due to cosmetics,L23.3 Allergic contact dermatitis due to drugs in contact with skin,L23.4 Allergic contact dermatitis due to dyes,L23.5 Allergic contact dermatitis due to other chemical products,L23.6 Allergic contact dermatitis due to food in contact with skin,""L23.7 Allergic contact dermatitis due to plants, except food"",L23.8 Allergic contact dermatitis due to other agents,""L23.9 Allergic contact dermatitis, unspecified cause"",L24 Irritant contact dermatitis,L24.0 Irritant contact dermatitis due to detergents,L24.1 Irritant contact dermatitis due to oils and greases,L24.2 Irritant contact dermatitis due to solvents,L24.3 Irritant contact dermatitis due to cosmetics,L24.4 Irritant contact dermatitis due to drugs in contact with skin,L24.5 Irritant contact dermatitis due to other chemical products,L24.6 Irritant contact dermatitis due to food in contact with skin,""L24.7 Irritant contact dermatitis due to plants, except food"",L24.8 Irritant contact dermatitis due to other agents,""L24.9 Irritant contact dermatitis, unspecified cause"",L25 Unspecified contact dermatitis,L25.0 Unspecified contact dermatitis due to cosmetics,L25.1 Unspecified contact dermatitis due to drugs in contact with skin,L25.2 Unspecified contact dermatitis due to dyes,L25.3 Unspecified contact dermatitis due to other chemical products,L25.4 Unspecified contact dermatitis due to food in contact with skin,""L25.5 Unspecified contact dermatitis due to plants, except food"",L25.8 Unspecified contact dermatitis due to other agents,""L25.9 Unspecified contact dermatitis, unspecified cause"",L26 Exfoliative dermatitis,L27 Dermatitis due to substances taken internally,L27.0 Generalized skin eruption due to drugs and medicaments,L27.1 Localized skin eruption due to drugs and medicaments,L27.2 Dermatitis due to ingested food,L27.8 Dermatitis due to other substances taken internally,L27.9 Dermatitis due to unspecified substance taken internally,L28 Lichen simplex chronicus and prurigo,L28.0 Lichen simplex chronicus,L28.2 Other prurigo,L29 Pruritus,L29.0 Pruritus ani,L29.1 Pruritus scroti,L29.2 Pruritus vulvae,""L29.3 Anogenital pruritus, unspecified"",L29.8 Other pruritus,""L29.9 Pruritus, unspecified"",L30.0 Nummular dermatitis,L30.1 Other dermatitis - Dyshidrosis [pompholyx],L30.2 Other dermatitis - Cutaneous autosensitization,L30.3 Infective dermatitis,L30.4 Other dermatitis - Erythema intertrigo,L30.5 Other dermatitis - Pityriasis alba,L30.8 Other specified dermatitis,""L30.9 Dermatitis, unspecified"",L40-L45 Papulosquamous disorders,L40 Psoriasis,L40.0 Psoriasis vulgaris,L40.1 Generalized pustular psoriasis,L40.2 Psoriasis - Acrodermatitis continua,L40.3 Psoriasis - Pustulosis palmaris et plantaris,L40.4 Guttate psoriasis,L40.5 Arthropathic psoriasis,L40.8 Other psoriasis,""L40.9 Psoriasis, unspecified"",L41 Parapsoriasis,L41.0 Parapsoriasis - Pityriasis lichenoides et varioliformis acuta,L41.1 Parapsoriasis - Pityriasis lichenoides chronica,L41.3 Small plaque parapsoriasis,L41.4 Large plaque parapsoriasis,L41.5 Retiform parapsoriasis,L41.8 Other parapsoriasis,""L41.9 Parapsoriasis, unspecified"",L42 Pityriasis rosea,L43 Lichen planus,L43.0 Hypertrophic lichen planus,L43.1 Bullous lichen planus,L43.2 Lichenoid drug reaction,L43.3 Subacute (active) lichen planus,L43.8 Other lichen planus,""L43.9 Lichen planus, unspecified"",L44 Other papulosquamous disorders,L44.0 Other papulosquamous disorders - Pityriasis rubra pilaris,L44.1 Other papulosquamous disorders - Lichen nitidus,L44.2 Other papulosquamous disorders - Lichen striatus,L44.3 Other papulosquamous disorders - Lichen ruber moniliformis,L44.4 Other papulosquamous disorders - Infantile papular acrodermatitis [Giannotti-Crosti],L44.8 Other specified papulosquamous disorders,""L44.9 Papulosquamous disorder, unspecified"",L45 Papulosquamous disorders in diseases classified elsewhere,L50.0 Allergic urticaria,L50.1 Idiopathic urticaria,L50.2 Urticaria due to cold and heat,L50.3 Dermatographic urticaria,L50.4 Vibratory urticaria,L50.5 Cholinergic urticaria,L50.6 Contact urticaria,L50.8 Other urticaria,""L50.9 Urticaria, unspecified"",L51.0 Nonbullous erythema multiforme,L51.1 Bullous erythema multiforme,L51.2 Erythema multiforme - Toxic epidermal necrolysis [Lyell],L51.8 Other erythema multiforme,""L51.9 Erythema multiforme, unspecified"",L52 Erythema nodosum,L53 Other erythematous conditions,L53.0 Other erythematous conditions - Toxic erythema,L53.1 Other erythematous conditions - Erythema annulare centrifugum,L53.2 Other erythematous conditions - Erythema marginatum,L53.3 Other chronic figurate erythema,L22 Diaper [napkin] dermatitis,L53.8 Other specified erythematous conditions,""L53.9 Erythematous condition, unspecified"",L54 Erythema in diseases classified elsewhere,L54.0 Erythema marginatum in acute rheumatic fever,L54.8 Erythema in other diseases classified elsewhere,L55-L59 Radiation-related disorders of the skin and subcutaneous tissue,L55 Sunburn,L55.0 Sunburn of first degree,L55.1 Sunburn of second degree,L55.2 Sunburn of third degree,L55.8 Other sunburn,""L55.9 Sunburn, unspecified"",L56 Other acute skin changes due to ultraviolet radiation,L56.0 Drug phototoxic response,L56.1 Drug photoallergic response,L56.2 Photocontact dermatitis [berloque dermatitis],L56.3 Other acute skin changes due to ultraviolet radiation - Solar urticaria,L56.4 Other acute skin changes due to ultraviolet radiation - Polymorphous light eruption,L56.8 Other specified acute skin changes due to ultraviolet radiation,""L56.9 Acute skin change due to ultraviolet radiation, unspecified"",L57 Skin changes due to chronic exposure to nonionizing radiation,L57.0 Actinic keratosis,L57.1 Skin changes due to chronic exposure to nonionizing radiation - Actinic reticuloid,L57.2 Skin changes due to chronic exposure to nonionizing radiation - Cutis rhomboidalis nuchae,L57.3 Skin changes due to chronic exposure to nonionizing radiation - Poikiloderma of Civatte,L57.4 Skin changes due to chronic exposure to nonionizing radiation - Cutis laxa senilis,L57.5 Skin changes due to chronic exposure to nonionizing radiation - Actinic granuloma,L57.8 Other skin changes due to chronic exposure to nonionizing radiation,""L57.9 Skin changes due to chronic exposure to nonionizing radiation, unspecified"",L58 Radiodermatitis,L58.0 Acute radiodermatitis,L58.1 Chronic radiodermatitis,""L58.9 Radiodermatitis, unspecified"",L70.4 Infantile acne,L59 Other disorders of skin and subcutaneous tissue related to radiation,L59.0 Other disorders of skin and subcutaneous tissue related to radiation - Erythema ab igne [dermatitis ab igne],L59.8 Other specified disorders of skin and subcutaneous tissue related to radiation,""L59.9 Disorder of skin and subcutaneous tissue related to radiation, unspecified"",L60 Nail disorders,L60.0 Ingrowing nail,L60.1 Nail disorders - Onycholysis,L60.3 Nail dystrophy,L60.4 Nail disorders - Beau lines,L60.5 Yellow nail syndrome,L60.8 Other nail disorders,""L60.9 Nail disorder, unspecified"",L62 Nail disorders in diseases classified elsewhere,L62.0 Clubbed nail pachydermoperiostosis,L62.8 Nail disorders in other diseases classified elsewhere,L63 Alopecia areata,L63.0 Alopecia (capitis) totalis,L63.1 Alopecia universalis,L63.2 Alopecia areata - Ophiasis,L63.8 Other alopecia areata,""L63.9 Alopecia areata, unspecified"",L64 Androgenic alopecia,L64.0 Drug-induced androgenic alopecia,L64.8 Other androgenic alopecia,""L64.9 Androgenic alopecia, unspecified"",L65 Other nonscarring hair loss,L65.0 Other nonscarring hair loss - Telogen effluvium,L65.1 Other nonscarring hair loss - Anagen effluvium,L65.2 Other nonscarring hair loss - Alopecia mucinosa,L65.8 Other specified nonscarring hair loss,""L65.9 Nonscarring hair loss, unspecified"",L66 Cicatricial alopecia [scarring hair loss],L66.0 Cicatricial alopecia [scarring hair loss] - Pseudopelade,L66.1 Cicatricial alopecia [scarring hair loss] - Lichen planopilaris,L66.2 Cicatricial alopecia [scarring hair loss] - Folliculitis decalvans,L66.3 Cicatricial alopecia [scarring hair loss] - Perifolliculitis capitis abscedens,L66.4 Cicatricial alopecia [scarring hair loss] - Folliculitis ulerythematosa reticulata,L66.8 Other cicatricial alopecia,""L66.9 Cicatricial alopecia, unspecified"",L67 Hair colour and hair shaft abnormalities,L67.0 Hair colour and hair shaft abnormalities - Trichorrhexis nodosa,L67.1 Variations in hair colour,L67.8 Other hair colour and hair shaft abnormalities,""L67.9 Hair colour and hair shaft abnormality, unspecified"",L68.0 Hypertrichosis - Hirsutism,L68.1 Acquired hypertrichosis lanuginosa,L68.2 Localized hypertrichosis,L68.3 Hypertrichosis - Polytrichia,L68.8 Other hypertrichosis,""L68.9 Hypertrichosis, unspecified"",L70 Acne,L70.0 Acne vulgaris,L70.1 Acne conglobata,L70.2 Acne varioliformis,L70.3 Acne tropica,L70.5 Acné excori,L70.8 Other acne,""L70.9 Acne, unspecified"",L71 Rosacea,L71.0 Rosacea - Perioral dermatitis,L71.1 Rosacea - Rhinophyma,L71.8 Other rosacea,""L71.9 Rosacea, unspecified"",L72 Follicular cysts of skin and subcutaneous tissue,L72.0 Follicular cysts of skin and subcutaneous tissue - Epidermal cyst,L72.1 Follicular cysts of skin and subcutaneous tissue - Trichilemmal cyst,L72.2 Follicular cysts of skin and subcutaneous tissue - Steatocystoma multiplex,L72.8 Other follicular cysts of skin and subcutaneous tissue,""L72.9 Follicular cyst of skin and subcutaneous tissue, unspecified"",L73 Other follicular disorders,L73.0 Other follicular disorders - Acne keloid,L73.1 Other follicular disorders - Pseudofolliculitis barbae,L73.2 Other follicular disorders - Hidradenitis suppurativa,L73.8 Other specified follicular disorders,""L73.9 Follicular disorder, unspecified"",L74 Eccrine sweat disorders,L74.0 Eccrine sweat disorders - Miliaria rubra,L74.1 Eccrine sweat disorders - Miliaria crystallina,L74.2 Eccrine sweat disorders - Miliaria profunda,""L74.3 Eccrine sweat disorders - Miliaria, unspecified"",L74.4 Eccrine sweat disorders - Anhidrosis,L74.8 Other eccrine sweat disorders,""L74.9 Eccrine sweat disorder, unspecified"",L75 Apocrine sweat disorders,L75.0 Apocrine sweat disorders - Bromhidrosis,L75.1 Apocrine sweat disorders - Chromhidrosis,L75.2 Apocrine miliaria,L75.8 Other apocrine sweat disorders,L11.0 Other acantholytic disorders - Acquired keratosis follicularis,""L75.9 Apocrine sweat disorder, unspecified"",L80 Vitiligo,L81 Other disorders of pigmentation,L81.0 Postinflammatory hyperpigmentation,L81.1 Other disorders of pigmentation - Chloasma,L81.2 Other disorders of pigmentation - Freckles,L81.3 Café au lait spot,L81.4 Other melanin hyperpigmentation,""L81.5 Other disorders of pigmentation - Leukoderma, not elsewhere classified"",L81.6 Other disorders of diminished melanin formation,L81.7 Other disorders of pigmentation - Pigmented purpuric dermatosis,L81.8 Other specified disorders of pigmentation,""L81.9 Disorder of pigmentation, unspecified"",L82 Seborrhoeic keratosis,L83 Acanthosis nigricans,L84 Corns and callosities,L85 Other epidermal thickening,L85.0 Other epidermal thickening - Acquired ichthyosis,L85.1 Other epidermal thickening - Acquired keratosis [keratoderma] palmaris et plantaris,L85.2 Other epidermal thickening - Keratosis punctata (palmaris et plantaris),L85.3 Other epidermal thickening - Xerosis cutis,L85.8 Other specified epidermal thickening,""L85.9 Epidermal thickening, unspecified"",L86 Keratoderma in diseases classified elsewhere,L87 Transepidermal elimination disorders,L87.0 Transepidermal elimination disorders - Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle],L87.1 Transepidermal elimination disorders - Reactive perforating collagenosis,L87.2 Transepidermal elimination disorders - Elastosis perforans serpiginosa,L87.8 Other transepidermal elimination disorders,""L87.9 Transepidermal elimination disorder, unspecified"",L88 Pyoderma gangrenosum,L89 Decubitus ulcer and pressure area,L89.0 Stage I decubitus ulcer and pressure area,L89.1 Stage II decubitus ulcer,L89.2 Stage III decubitus ulcer,L89.3 Stage IV decubitus ulcer,""L89.9 Decubitus ulcer and pressure area, unspecified"",L90 Atrophic disorders of skin,L90.0 Lichen sclerosus et atrophicus,L90.1 Anetoderma of Schweninger-Buzzi,L90.2 Anetoderma of Jadassohn-Pellizzari,L90.3 Atrophoderma of Pasini and Pierini,L90.4 Acrodermatitis chronica atrophicans,L90.5 Scar conditions and fibrosis of skin,L90.6 Striae atrophicae,L90.8 Other atrophic disorders of skin,""L90.9 Atrophic disorder of skin, unspecified"",L91 Hypertrophic disorders of skin,L91.0 Hypertrophic scar,L91.8 Other hypertrophic disorders of skin,""L91.9 Hypertrophic disorder of skin, unspecified"",L92 Granulomatous disorders of skin and subcutaneous tissue,L92.0 Granulomatous disorders of skin and subcutaneous tissue - Granuloma annulare,""L92.1 Granulomatous disorders of skin and subcutaneous tissue - Necrobiosis lipoidica, not elsewhere classified"",L92.2 Granuloma faciale [eosinophilic granuloma of skin],L92.3 Foreign body granuloma of skin and subcutaneous tissue,L30 Other dermatitis,L92.8 Other granulomatous disorders of skin and subcutaneous tissue,""L92.9 Granulomatous disorder of skin and subcutaneous tissue, unspecified"",L93 Lupus erythematosus,L93.0 Discoid lupus erythematosus,L93.1 Subacute cutaneous lupus erythematosus,L93.2 Other local lupus erythematosus,L94 Other localized connective tissue disorders,L94.0 Localized scleroderma [morphea],L94.1 Other localized connective tissue disorders - Linear scleroderma,L94.2 Other localized connective tissue disorders - Calcinosis cutis,L94.3 Other localized connective tissue disorders - Sclerodactyly,L94.4 Other localized connective tissue disorders - Gottron papules,L94.5 Other localized connective tissue disorders - Poikiloderma vasculare atrophicans,L94.6 Other localized connective tissue disorders - Ainhum,L94.8 Other specified localized connective tissue disorders,""L94.9 Localized connective tissue disorder, unspecified"",""L95 Vasculitis limited to skin, not elsewhere classified"",L95.0 Livedoid vasculitis,""L95.1 Vasculitis limited to skin, not elsewhere classified - Erythema elevatum diutinum"",L95.8 Other vasculitis limited to skin,""L95.9 Vasculitis limited to skin, unspecified"",""L97 Ulcer of lower limb, not elsewhere classified"",""L98 Other disorders of skin and subcutaneous tissue, not elsewhere classified"",""L98.0 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Pyogenic granuloma"",""L98.1 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Factitial dermatitis"",""L98.2 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Febrile neutrophilic dermatosis [Sweet]"",""L98.3 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Eosinophilic cellulitis [Wells]"",""L98.4 Chronic ulcer of skin, not elsewhere classified"",L98.5 Mucinosis of skin,L98.6 Other infiltrative disorders of skin and subcutaneous tissue,L98.7 Excessive and redundant skin and subcutaneous tissue,L98.8 Other specified disorders of skin and subcutaneous tissue,""L98.9 Disorder of skin and subcutaneous tissue, unspecified"",L51 Erythema multiforme,L99 Other disorders of skin and subcutaneous tissue in diseases classified elsewhere,L99.0 Amyloidosis of skin,L99.8 Other specified disorders of skin and subcutaneous tissue in diseases classified elsewhere,L60.2 Nail disorders - Onychogryphosis","Antigua and Barbuda,Argentina,Armenia","Amsterdam,Auvergne-Rhône-Alpes",Age group inclusion criterion,test inclusion criteria for subcohort 1A,Age group inclusion criterion,test exclusion criteria for subcohort 1A,"supplementary information for subcohort 1A - look for ""until now"" blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah UNTIL NOW" +testCohort1,test subcohort 1B,description for test subcohort 1B,23487,1959,1975,"All ages,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years),Adult (18+ years),Young adult (18-24 years),Adult (25-44 years),Middle-aged (45-64 years),Aged (65+ years),Aged (65-79 years),Aged (80+ years)","H60-H62 Diseases of external ear,H60 Otitis externa,H60.0 Abscess of external ear,H60.1 Cellulitis of external ear,H60.2 Malignant otitis externa,H60.3 Other infective otitis externa,H60.4 Cholesteatoma of external ear,""H60.5 Acute otitis externa, noninfective"",H60.8 Other otitis externa,""H60.9 Otitis externa, unspecified"",H61 Other disorders of external ear,H61.0 Perichondritis of external ear,H61.1 Noninfective disorders of pinna,H61.2 Other disorders of external ear - Impacted cerumen,H61.3 Acquired stenosis of external ear canal,H61.8 Other specified disorders of external ear,""H61.9 Disorder of external ear, unspecified"",H62 Disorders of external ear in diseases classified elsewhere,H62.0 Otitis externa in bacterial diseases classified elsewhere,H62.1 Otitis externa in viral diseases classified elsewhere,H62.2 Otitis externa in mycoses,H62.3 Otitis externa in other infectious and parasitic diseases classified elsewhere,H62.4 Otitis externa in other diseases classified elsewhere,H62.8 Other disorders of external ear in diseases classified elsewhere",I30 Acute pericarditis,"Bermuda,Bhutan,Bolivia (Plurinational State of)","Bradford,Barcelona,Bretagne",,inclusion criteria for subcohort 1B,,,supplementary information for subcohort 1B blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah UNTIL NOW +testCohort2,test subcohort 2A,description for test subcohort 2A,3874,1950,,Adolescent (13-17 years),"H60-H62 Diseases of external ear,VIII Diseases of the ear and mastoid process,H91 Other hearing loss,H90-H95 Other disorders of ear,H81.2 Vestibular neuronitis,H80-H83 Diseases of inner ear,H60 Otitis externa,H60.0 Abscess of external ear,H60.1 Cellulitis of external ear,H60.2 Malignant otitis externa,H60.3 Other infective otitis externa,H60.4 Cholesteatoma of external ear,""H60.5 Acute otitis externa, noninfective"",H60.8 Other otitis externa,""H60.9 Otitis externa, unspecified"",H61 Other disorders of external ear,H61.0 Perichondritis of external ear,H61.1 Noninfective disorders of pinna,H61.2 Other disorders of external ear - Impacted cerumen,H61.3 Acquired stenosis of external ear canal,H61.8 Other specified disorders of external ear,""H61.9 Disorder of external ear, unspecified"",H62 Disorders of external ear in diseases classified elsewhere,H62.0 Otitis externa in bacterial diseases classified elsewhere,H62.1 Otitis externa in viral diseases classified elsewhere,H62.2 Otitis externa in mycoses,H62.3 Otitis externa in other infectious and parasitic diseases classified elsewhere,H62.4 Otitis externa in other diseases classified elsewhere,H62.8 Other disorders of external ear in diseases classified elsewhere,H65-H75 Diseases of middle ear and mastoid,H65 Nonsuppurative otitis media,H65.0 Acute serous otitis media,H65.1 Other acute nonsuppurative otitis media,H65.2 Chronic serous otitis media,H65.3 Chronic mucoid otitis media,H65.4 Other chronic nonsuppurative otitis media,""H65.9 Nonsuppurative otitis media, unspecified"",H66 Suppurative and unspecified otitis media,H66.0 Acute suppurative otitis media,H66.1 Chronic tubotympanic suppurative otitis media,H66.2 Chronic atticoantral suppurative otitis media,H66.3 Other chronic suppurative otitis media,""H66.4 Suppurative otitis media, unspecified"",""H66.9 Otitis media, unspecified"",H67 Otitis media in diseases classified elsewhere,H67.0 Otitis media in bacterial diseases classified elsewhere,H67.1 Otitis media in viral diseases classified elsewhere,H67.8 Otitis media in other diseases classified elsewhere,H68 Eustachian salpingitis and obstruction,H68.0 Eustachian salpingitis,H68.1 Obstruction of Eustachian tube,H69 Other disorders of Eustachian tube,H69.0 Patulous Eustachian tube,H69.8 Other specified disorders of Eustachian tube,""H69.9 Eustachian tube disorder, unspecified"",H70 Mastoiditis and related conditions,H70.0 Acute mastoiditis,H70.1 Chronic mastoiditis,H70.2 Mastoiditis and related conditions - Petrositis,H70.8 Other mastoiditis and related conditions,""H70.9 Mastoiditis, unspecified"",H71 Cholesteatoma of middle ear,H72 Perforation of tympanic membrane,H72.0 Central perforation of tympanic membrane,H72.1 Attic perforation of tympanic membrane,H72.2 Other marginal perforations of tympanic membrane,H72.8 Other perforations of tympanic membrane,""H72.9 Perforation of tympanic membrane, unspecified"",H73 Other disorders of tympanic membrane,H73.0 Other disorders of tympanic membrane - Acute myringitis,H73.1 Other disorders of tympanic membrane - Chronic myringitis,H73.8 Other specified disorders of tympanic membrane,""H73.9 Disorder of tympanic membrane, unspecified"",H74 Other disorders of middle ear and mastoid,H74.0 Other disorders of middle ear and mastoid - Tympanosclerosis,H74.1 Adhesive middle ear disease,H74.2 Discontinuity and dislocation of ear ossicles,H74.3 Other acquired abnormalities of ear ossicles,H74.4 Polyp of middle ear,H74.8 Other specified disorders of middle ear and mastoid,""H74.9 Disorder of middle ear and mastoid, unspecified"",H75 Other disorders of middle ear and mastoid in diseases classified elsewhere,H75.0 Mastoiditis in infectious and parasitic diseases classified elsewhere,H75.8 Other specified disorders of middle ear and mastoid in diseases classified elsewhere,H80 Otosclerosis,""H80.0 Otosclerosis involving oval window, nonobliterative"",""H80.1 Otosclerosis involving oval window, obliterative"",H80.2 Cochlear otosclerosis,H80.8 Other otosclerosis,""H80.9 Otosclerosis, unspecified"",H81 Disorders of vestibular function,H81.0 Ménière disea,H81.1 Disorders of vestibular function - Benign paroxysmal vertigo,H81.3 Disorders of vestibular function - Other peripheral vertigo,H81.4 Vertigo of central origin,H81.8 Other disorders of vestibular function,""H81.9 Disorder of vestibular function, unspecified"",H82 Vertiginous syndromes in diseases classified elsewhere,H83 Other diseases of inner ear,H83.0 Other diseases of inner ear - Labyrinthitis,H83.1 Other diseases of inner ear - Labyrinthine fistula,H83.2 Other diseases of inner ear - Labyrinthine dysfunction,H83.3 Noise effects on inner ear,H83.8 Other specified diseases of inner ear,""H83.9 Disease of inner ear, unspecified"",H90 Conductive and sensorineural hearing loss,""H90.0 Conductive hearing loss, bilateral"",""H90.1 Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side"",""H90.2 Conductive hearing loss, unspecified"",""H90.3 Sensorineural hearing loss, bilateral"",""H90.4 Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side"",""H90.5 Sensorineural hearing loss, unspecified"",""H90.6 Mixed conductive and sensorineural hearing loss, bilateral"",""H90.7 Mixed conductive and sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side"",""H90.8 Mixed conductive and sensorineural hearing loss, unspecified"",H91.0 Ototoxic hearing loss,H91.1 Other hearing loss - Presbycusis,H91.2 Sudden idiopathic hearing loss,""H91.3 Other hearing loss - Deaf mutism, not elsewhere classified"",H91.8 Other specified hearing loss,""H91.9 Hearing loss, unspecified"",H92 Otalgia and effusion of ear,H92.0 Otalgia,H92.1 Otalgia and effusion of ear - Otorrhoea,H92.2 Otalgia and effusion of ear - Otorrhagia,""H93 Other disorders of ear, not elsewhere classified"",H93.0 Degenerative and vascular disorders of ear,""H93.1 Other disorders of ear, not elsewhere classified - Tinnitus"",H93.2 Other abnormal auditory perceptions,H93.3 Disorders of acoustic nerve,H93.8 Other specified disorders of ear,""H93.9 Disorder of ear, unspecified"",H94 Other disorders of ear in diseases classified elsewhere,H94.0 Acoustic neuritis in infectious and parasitic diseases classified elsewhere,H94.8 Other specified disorders of ear in diseases classified elsewhere,""H95 Postprocedural disorders of ear and mastoid process, not elsewhere classified"",H95.0 Recurrent cholesteatoma of postmastoidectomy cavity,H95.1 Other disorders following mastoidectomy,H95.8 Other postprocedural disorders of ear and mastoid process,""H95.9 Postprocedural disorder of ear and mastoid process, unspecified""","L50 Urticaria,L50-L54 Urticaria and erythema,L28.1 Prurigo nodularis,L20-L30 Dermatitis and eczema,L68 Hypertrichosis,L60-L75 Disorders of skin appendages,L80-L99 Other disorders of the skin and subcutaneous tissue,XII Diseases of the skin and subcutaneous tissue,L01 Impetigo,L00-L08 Infections of the skin and subcutaneous tissue,L00 Staphylococcal scalded skin syndrome,L01.0 Impetigo [any organism] [any site],L01.1 Impetigo - Impetiginization of other dermatoses,""L02 Cutaneous abscess, furuncle and carbuncle"",""L02.0 Cutaneous abscess, furuncle and carbuncle of face"",""L02.1 Cutaneous abscess, furuncle and carbuncle of neck"",""L02.2 Cutaneous abscess, furuncle and carbuncle of trunk"",""L02.3 Cutaneous abscess, furuncle and carbuncle of buttock"",""L02.4 Cutaneous abscess, furuncle and carbuncle of limb"",""L02.8 Cutaneous abscess, furuncle and carbuncle of other sites"",""L02.9 Cutaneous abscess, furuncle and carbuncle, unspecified"",L03 Cellulitis,L03.0 Cellulitis of finger and toe,L03.1 Cellulitis of other parts of limb,L03.2 Cellulitis of face,L03.3 Cellulitis of trunk,L03.8 Cellulitis of other sites,""L03.9 Cellulitis, unspecified"",L04 Acute lymphadenitis,L10.3 Brazilian pemphigus [fogo selvagem],L10-L14 Bullous disorders,""L04.0 Acute lymphadenitis of face, head and neck"",L04.1 Acute lymphadenitis of trunk,L04.2 Acute lymphadenitis of upper limb,L04.3 Acute lymphadenitis of lower limb,L04.8 Acute lymphadenitis of other sites,""L04.9 Acute lymphadenitis, unspecified"",L05 Pilonidal cyst,L05.0 Pilonidal cyst with abscess,L05.9 Pilonidal cyst without abscess,L08 Other local infections of skin and subcutaneous tissue,L08.0 Other local infections of skin and subcutaneous tissue - Pyoderma,L08.1 Other local infections of skin and subcutaneous tissue - Erythrasma,L08.8 Other specified local infections of skin and subcutaneous tissue,""L08.9 Local infection of skin and subcutaneous tissue, unspecified"",L10 Pemphigus,L10.0 Pemphigus vulgaris,L10.1 Pemphigus vegetans,L10.2 Pemphigus foliaceus,L10.4 Pemphigus erythematosus,L10.5 Drug-induced pemphigus,L10.8 Other pemphigus,""L10.9 Pemphigus, unspecified"",L11 Other acantholytic disorders,L11.1 Transient acantholytic dermatosis [Grover],L11.8 Other specified acantholytic disorders,""L11.9 Acantholytic disorder, unspecified"",L12 Pemphigoid,L12.0 Bullous pemphigoid,L12.1 Cicatricial pemphigoid,L12.2 Pemphigoid - Chronic bullous disease of childhood,L12.3 Pemphigoid - Acquired epidermolysis bullosa,L12.8 Other pemphigoid,""L12.9 Pemphigoid, unspecified"",L13 Other bullous disorders,L13.0 Other bullous disorders - Dermatitis herpetiformis,L13.1 Other bullous disorders - Subcorneal pustular dermatitis,L13.8 Other specified bullous disorders,""L13.9 Bullous disorder, unspecified"",L14 Bullous disorders in diseases classified elsewhere,L20 Atopic dermatitis,L20.0 Atopic dermatitis - Besnier prurigo,L20.8 Other atopic dermatitis,""L20.9 Atopic dermatitis, unspecified"",L21 Seborrhoeic dermatitis,L21.0 Seborrhoeic dermatitis - Seborrhoea capitis,L21.1 Seborrhoeic infantile dermatitis,L21.8 Other seborrhoeic dermatitis,""L21.9 Seborrhoeic dermatitis, unspecified"",L23 Allergic contact dermatitis,L23.0 Allergic contact dermatitis due to metals,L23.1 Allergic contact dermatitis due to adhesives,L23.2 Allergic contact dermatitis due to cosmetics,L23.3 Allergic contact dermatitis due to drugs in contact with skin,L23.4 Allergic contact dermatitis due to dyes,L23.5 Allergic contact dermatitis due to other chemical products,L23.6 Allergic contact dermatitis due to food in contact with skin,""L23.7 Allergic contact dermatitis due to plants, except food"",L23.8 Allergic contact dermatitis due to other agents,""L23.9 Allergic contact dermatitis, unspecified cause"",L24 Irritant contact dermatitis,L24.0 Irritant contact dermatitis due to detergents,L24.1 Irritant contact dermatitis due to oils and greases,L24.2 Irritant contact dermatitis due to solvents,L24.3 Irritant contact dermatitis due to cosmetics,L24.4 Irritant contact dermatitis due to drugs in contact with skin,L24.5 Irritant contact dermatitis due to other chemical products,L24.6 Irritant contact dermatitis due to food in contact with skin,""L24.7 Irritant contact dermatitis due to plants, except food"",L24.8 Irritant contact dermatitis due to other agents,""L24.9 Irritant contact dermatitis, unspecified cause"",L25 Unspecified contact dermatitis,L25.0 Unspecified contact dermatitis due to cosmetics,L25.1 Unspecified contact dermatitis due to drugs in contact with skin,L25.2 Unspecified contact dermatitis due to dyes,L25.3 Unspecified contact dermatitis due to other chemical products,L25.4 Unspecified contact dermatitis due to food in contact with skin,""L25.5 Unspecified contact dermatitis due to plants, except food"",L25.8 Unspecified contact dermatitis due to other agents,""L25.9 Unspecified contact dermatitis, unspecified cause"",L26 Exfoliative dermatitis,L27 Dermatitis due to substances taken internally,L27.0 Generalized skin eruption due to drugs and medicaments,L27.1 Localized skin eruption due to drugs and medicaments,L27.2 Dermatitis due to ingested food,L27.8 Dermatitis due to other substances taken internally,L27.9 Dermatitis due to unspecified substance taken internally,L28 Lichen simplex chronicus and prurigo,L28.0 Lichen simplex chronicus,L28.2 Other prurigo,L29 Pruritus,L29.0 Pruritus ani,L29.1 Pruritus scroti,L29.2 Pruritus vulvae,""L29.3 Anogenital pruritus, unspecified"",L29.8 Other pruritus,""L29.9 Pruritus, unspecified"",L30.0 Nummular dermatitis,L30.1 Other dermatitis - Dyshidrosis [pompholyx],L30.2 Other dermatitis - Cutaneous autosensitization,L30.3 Infective dermatitis,L30.4 Other dermatitis - Erythema intertrigo,L30.5 Other dermatitis - Pityriasis alba,L30.8 Other specified dermatitis,""L30.9 Dermatitis, unspecified"",L40-L45 Papulosquamous disorders,L40 Psoriasis,L40.0 Psoriasis vulgaris,L40.1 Generalized pustular psoriasis,L40.2 Psoriasis - Acrodermatitis continua,L40.3 Psoriasis - Pustulosis palmaris et plantaris,L40.4 Guttate psoriasis,L40.5 Arthropathic psoriasis,L40.8 Other psoriasis,""L40.9 Psoriasis, unspecified"",L41 Parapsoriasis,L41.0 Parapsoriasis - Pityriasis lichenoides et varioliformis acuta,L41.1 Parapsoriasis - Pityriasis lichenoides chronica,L41.3 Small plaque parapsoriasis,L41.4 Large plaque parapsoriasis,L41.5 Retiform parapsoriasis,L41.8 Other parapsoriasis,""L41.9 Parapsoriasis, unspecified"",L42 Pityriasis rosea,L43 Lichen planus,L43.0 Hypertrophic lichen planus,L43.1 Bullous lichen planus,L43.2 Lichenoid drug reaction,L43.3 Subacute (active) lichen planus,L43.8 Other lichen planus,""L43.9 Lichen planus, unspecified"",L44 Other papulosquamous disorders,L44.0 Other papulosquamous disorders - Pityriasis rubra pilaris,L44.1 Other papulosquamous disorders - Lichen nitidus,L44.2 Other papulosquamous disorders - Lichen striatus,L44.3 Other papulosquamous disorders - Lichen ruber moniliformis,L44.4 Other papulosquamous disorders - Infantile papular acrodermatitis [Giannotti-Crosti],L44.8 Other specified papulosquamous disorders,""L44.9 Papulosquamous disorder, unspecified"",L45 Papulosquamous disorders in diseases classified elsewhere,L50.0 Allergic urticaria,L50.1 Idiopathic urticaria,L50.2 Urticaria due to cold and heat,L50.3 Dermatographic urticaria,L50.4 Vibratory urticaria,L50.5 Cholinergic urticaria,L50.6 Contact urticaria,L50.8 Other urticaria,""L50.9 Urticaria, unspecified"",L51.0 Nonbullous erythema multiforme,L51.1 Bullous erythema multiforme,L51.2 Erythema multiforme - Toxic epidermal necrolysis [Lyell],L51.8 Other erythema multiforme,""L51.9 Erythema multiforme, unspecified"",L52 Erythema nodosum,L53 Other erythematous conditions,L53.0 Other erythematous conditions - Toxic erythema,L53.1 Other erythematous conditions - Erythema annulare centrifugum,L53.2 Other erythematous conditions - Erythema marginatum,L53.3 Other chronic figurate erythema,L22 Diaper [napkin] dermatitis,L53.8 Other specified erythematous conditions,""L53.9 Erythematous condition, unspecified"",L54 Erythema in diseases classified elsewhere,L54.0 Erythema marginatum in acute rheumatic fever,L54.8 Erythema in other diseases classified elsewhere,L55-L59 Radiation-related disorders of the skin and subcutaneous tissue,L55 Sunburn,L55.0 Sunburn of first degree,L55.1 Sunburn of second degree,L55.2 Sunburn of third degree,L55.8 Other sunburn,""L55.9 Sunburn, unspecified"",L56 Other acute skin changes due to ultraviolet radiation,L56.0 Drug phototoxic response,L56.1 Drug photoallergic response,L56.2 Photocontact dermatitis [berloque dermatitis],L56.3 Other acute skin changes due to ultraviolet radiation - Solar urticaria,L56.4 Other acute skin changes due to ultraviolet radiation - Polymorphous light eruption,L56.8 Other specified acute skin changes due to ultraviolet radiation,""L56.9 Acute skin change due to ultraviolet radiation, unspecified"",L57 Skin changes due to chronic exposure to nonionizing radiation,L57.0 Actinic keratosis,L57.1 Skin changes due to chronic exposure to nonionizing radiation - Actinic reticuloid,L57.2 Skin changes due to chronic exposure to nonionizing radiation - Cutis rhomboidalis nuchae,L57.3 Skin changes due to chronic exposure to nonionizing radiation - Poikiloderma of Civatte,L57.4 Skin changes due to chronic exposure to nonionizing radiation - Cutis laxa senilis,L57.5 Skin changes due to chronic exposure to nonionizing radiation - Actinic granuloma,L57.8 Other skin changes due to chronic exposure to nonionizing radiation,""L57.9 Skin changes due to chronic exposure to nonionizing radiation, unspecified"",L58 Radiodermatitis,L58.0 Acute radiodermatitis,L58.1 Chronic radiodermatitis,""L58.9 Radiodermatitis, unspecified"",L70.4 Infantile acne,L59 Other disorders of skin and subcutaneous tissue related to radiation,L59.0 Other disorders of skin and subcutaneous tissue related to radiation - Erythema ab igne [dermatitis ab igne],L59.8 Other specified disorders of skin and subcutaneous tissue related to radiation,""L59.9 Disorder of skin and subcutaneous tissue related to radiation, unspecified"",L60 Nail disorders,L60.0 Ingrowing nail,L60.1 Nail disorders - Onycholysis,L60.3 Nail dystrophy,L60.4 Nail disorders - Beau lines,L60.5 Yellow nail syndrome,L60.8 Other nail disorders,""L60.9 Nail disorder, unspecified"",L62 Nail disorders in diseases classified elsewhere,L62.0 Clubbed nail pachydermoperiostosis,L62.8 Nail disorders in other diseases classified elsewhere,L63 Alopecia areata,L63.0 Alopecia (capitis) totalis,L63.1 Alopecia universalis,L63.2 Alopecia areata - Ophiasis,L63.8 Other alopecia areata,""L63.9 Alopecia areata, unspecified"",L64 Androgenic alopecia,L64.0 Drug-induced androgenic alopecia,L64.8 Other androgenic alopecia,""L64.9 Androgenic alopecia, unspecified"",L65 Other nonscarring hair loss,L65.0 Other nonscarring hair loss - Telogen effluvium,L65.1 Other nonscarring hair loss - Anagen effluvium,L65.2 Other nonscarring hair loss - Alopecia mucinosa,L65.8 Other specified nonscarring hair loss,""L65.9 Nonscarring hair loss, unspecified"",L66 Cicatricial alopecia [scarring hair loss],L66.0 Cicatricial alopecia [scarring hair loss] - Pseudopelade,L66.1 Cicatricial alopecia [scarring hair loss] - Lichen planopilaris,L66.2 Cicatricial alopecia [scarring hair loss] - Folliculitis decalvans,L66.3 Cicatricial alopecia [scarring hair loss] - Perifolliculitis capitis abscedens,L66.4 Cicatricial alopecia [scarring hair loss] - Folliculitis ulerythematosa reticulata,L66.8 Other cicatricial alopecia,""L66.9 Cicatricial alopecia, unspecified"",L67 Hair colour and hair shaft abnormalities,L67.0 Hair colour and hair shaft abnormalities - Trichorrhexis nodosa,L67.1 Variations in hair colour,L67.8 Other hair colour and hair shaft abnormalities,""L67.9 Hair colour and hair shaft abnormality, unspecified"",L68.0 Hypertrichosis - Hirsutism,L68.1 Acquired hypertrichosis lanuginosa,L68.2 Localized hypertrichosis,L68.3 Hypertrichosis - Polytrichia,L68.8 Other hypertrichosis,""L68.9 Hypertrichosis, unspecified"",L70 Acne,L70.0 Acne vulgaris,L70.1 Acne conglobata,L70.2 Acne varioliformis,L70.3 Acne tropica,L70.5 Acné excori,L70.8 Other acne,""L70.9 Acne, unspecified"",L71 Rosacea,L71.0 Rosacea - Perioral dermatitis,L71.1 Rosacea - Rhinophyma,L71.8 Other rosacea,""L71.9 Rosacea, unspecified"",L72 Follicular cysts of skin and subcutaneous tissue,L72.0 Follicular cysts of skin and subcutaneous tissue - Epidermal cyst,L72.1 Follicular cysts of skin and subcutaneous tissue - Trichilemmal cyst,L72.2 Follicular cysts of skin and subcutaneous tissue - Steatocystoma multiplex,L72.8 Other follicular cysts of skin and subcutaneous tissue,""L72.9 Follicular cyst of skin and subcutaneous tissue, unspecified"",L73 Other follicular disorders,L73.0 Other follicular disorders - Acne keloid,L73.1 Other follicular disorders - Pseudofolliculitis barbae,L73.2 Other follicular disorders - Hidradenitis suppurativa,L73.8 Other specified follicular disorders,""L73.9 Follicular disorder, unspecified"",L74 Eccrine sweat disorders,L74.0 Eccrine sweat disorders - Miliaria rubra,L74.1 Eccrine sweat disorders - Miliaria crystallina,L74.2 Eccrine sweat disorders - Miliaria profunda,""L74.3 Eccrine sweat disorders - Miliaria, unspecified"",L74.4 Eccrine sweat disorders - Anhidrosis,L74.8 Other eccrine sweat disorders,""L74.9 Eccrine sweat disorder, unspecified"",L75 Apocrine sweat disorders,L75.0 Apocrine sweat disorders - Bromhidrosis,L75.1 Apocrine sweat disorders - Chromhidrosis,L75.2 Apocrine miliaria,L75.8 Other apocrine sweat disorders,L11.0 Other acantholytic disorders - Acquired keratosis follicularis,""L75.9 Apocrine sweat disorder, unspecified"",L80 Vitiligo,L81 Other disorders of pigmentation,L81.0 Postinflammatory hyperpigmentation,L81.1 Other disorders of pigmentation - Chloasma,L81.2 Other disorders of pigmentation - Freckles,L81.3 Café au lait spot,L81.4 Other melanin hyperpigmentation,""L81.5 Other disorders of pigmentation - Leukoderma, not elsewhere classified"",L81.6 Other disorders of diminished melanin formation,L81.7 Other disorders of pigmentation - Pigmented purpuric dermatosis,L81.8 Other specified disorders of pigmentation,""L81.9 Disorder of pigmentation, unspecified"",L82 Seborrhoeic keratosis,L83 Acanthosis nigricans,L84 Corns and callosities,L85 Other epidermal thickening,L85.0 Other epidermal thickening - Acquired ichthyosis,L85.1 Other epidermal thickening - Acquired keratosis [keratoderma] palmaris et plantaris,L85.2 Other epidermal thickening - Keratosis punctata (palmaris et plantaris),L85.3 Other epidermal thickening - Xerosis cutis,L85.8 Other specified epidermal thickening,""L85.9 Epidermal thickening, unspecified"",L86 Keratoderma in diseases classified elsewhere,L87 Transepidermal elimination disorders,L87.0 Transepidermal elimination disorders - Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle],L87.1 Transepidermal elimination disorders - Reactive perforating collagenosis,L87.2 Transepidermal elimination disorders - Elastosis perforans serpiginosa,L87.8 Other transepidermal elimination disorders,""L87.9 Transepidermal elimination disorder, unspecified"",L88 Pyoderma gangrenosum,L89 Decubitus ulcer and pressure area,L89.0 Stage I decubitus ulcer and pressure area,L89.1 Stage II decubitus ulcer,L89.2 Stage III decubitus ulcer,L89.3 Stage IV decubitus ulcer,""L89.9 Decubitus ulcer and pressure area, unspecified"",L90 Atrophic disorders of skin,L90.0 Lichen sclerosus et atrophicus,L90.1 Anetoderma of Schweninger-Buzzi,L90.2 Anetoderma of Jadassohn-Pellizzari,L90.3 Atrophoderma of Pasini and Pierini,L90.4 Acrodermatitis chronica atrophicans,L90.5 Scar conditions and fibrosis of skin,L90.6 Striae atrophicae,L90.8 Other atrophic disorders of skin,""L90.9 Atrophic disorder of skin, unspecified"",L91 Hypertrophic disorders of skin,L91.0 Hypertrophic scar,L91.8 Other hypertrophic disorders of skin,""L91.9 Hypertrophic disorder of skin, unspecified"",L92 Granulomatous disorders of skin and subcutaneous tissue,L92.0 Granulomatous disorders of skin and subcutaneous tissue - Granuloma annulare,""L92.1 Granulomatous disorders of skin and subcutaneous tissue - Necrobiosis lipoidica, not elsewhere classified"",L92.2 Granuloma faciale [eosinophilic granuloma of skin],L92.3 Foreign body granuloma of skin and subcutaneous tissue,L30 Other dermatitis,L92.8 Other granulomatous disorders of skin and subcutaneous tissue,""L92.9 Granulomatous disorder of skin and subcutaneous tissue, unspecified"",L93 Lupus erythematosus,L93.0 Discoid lupus erythematosus,L93.1 Subacute cutaneous lupus erythematosus,L93.2 Other local lupus erythematosus,L94 Other localized connective tissue disorders,L94.0 Localized scleroderma [morphea],L94.1 Other localized connective tissue disorders - Linear scleroderma,L94.2 Other localized connective tissue disorders - Calcinosis cutis,L94.3 Other localized connective tissue disorders - Sclerodactyly,L94.4 Other localized connective tissue disorders - Gottron papules,L94.5 Other localized connective tissue disorders - Poikiloderma vasculare atrophicans,L94.6 Other localized connective tissue disorders - Ainhum,L94.8 Other specified localized connective tissue disorders,""L94.9 Localized connective tissue disorder, unspecified"",""L95 Vasculitis limited to skin, not elsewhere classified"",L95.0 Livedoid vasculitis,""L95.1 Vasculitis limited to skin, not elsewhere classified - Erythema elevatum diutinum"",L95.8 Other vasculitis limited to skin,""L95.9 Vasculitis limited to skin, unspecified"",""L97 Ulcer of lower limb, not elsewhere classified"",""L98 Other disorders of skin and subcutaneous tissue, not elsewhere classified"",""L98.0 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Pyogenic granuloma"",""L98.1 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Factitial dermatitis"",""L98.2 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Febrile neutrophilic dermatosis [Sweet]"",""L98.3 Other disorders of skin and subcutaneous tissue, not elsewhere classified - Eosinophilic cellulitis [Wells]"",""L98.4 Chronic ulcer of skin, not elsewhere classified"",L98.5 Mucinosis of skin,L98.6 Other infiltrative disorders of skin and subcutaneous tissue,L98.7 Excessive and redundant skin and subcutaneous tissue,L98.8 Other specified disorders of skin and subcutaneous tissue,""L98.9 Disorder of skin and subcutaneous tissue, unspecified"",L51 Erythema multiforme,L99 Other disorders of skin and subcutaneous tissue in diseases classified elsewhere,L99.0 Amyloidosis of skin,L99.8 Other specified disorders of skin and subcutaneous tissue in diseases classified elsewhere,L60.2 Nail disorders - Onychogryphosis",United Kingdom of Great Britain and Northern Ireland (the),"Valencia,Amsterdam",,test inclusion criteria for subcohort 2A,,,supplementary information for subcohort 2A blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah UNTIL NOW \ No newline at end of file diff --git a/data/_demodata/applications/datacatalogue_cohortstaging/Subpopulations.csv b/data/_demodata/applications/datacatalogue_cohortstaging/Subpopulations.csv index 77a8551c40..97758941fa 100644 --- a/data/_demodata/applications/datacatalogue_cohortstaging/Subpopulations.csv +++ b/data/_demodata/applications/datacatalogue_cohortstaging/Subpopulations.csv @@ -1,5 +1,5 @@ -resource,name,description,number of participants,inclusion start,inclusion end,age groups,main medical condition,comorbidity,countries,regions,inclusion criteria,supplementary information -testCohort,newborns,Children aged <1 month,1000,1998,2004,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years)","A00 Cholera,A00-A09 Intestinal infectious diseases,""A00.0 Cholera due to Vibrio cholerae 01, biovar cholerae"",""A00.1 Cholera due to Vibrio cholerae 01, biovar eltor"",""A00.9 Cholera, unspecified"",A01 Typhoid and paratyphoid fevers,A01.0 Typhoid fever,A01.1 Paratyphoid fever A,A01.2 Paratyphoid fever B,A01.3 Paratyphoid fever C,""A01.4 Paratyphoid fever, unspecified"",A02 Other salmonella infections,A02.0 Salmonella enteritis,A02.1 Salmonella sepsis,A02.2 Localized salmonella infections,A02.8 Other specified salmonella infections,""A02.9 Salmonella infection, unspecified"",A03 Shigellosis,A03.0 Shigellosis due to Shigella dysenteriae,A03.1 Shigellosis due to Shigella flexneri,A03.2 Shigellosis due to Shigella boydii,A03.3 Shigellosis due to Shigella sonnei,A03.8 Other shigellosis,""A03.9 Shigellosis, unspecified"",A04 Other bacterial intestinal infections,A04.0 Other bacterial intestinal infections - Enteropathogenic Escherichia coli infection,A04.1 Other bacterial intestinal infections - Enterotoxigenic Escherichia coli infection,A04.2 Other bacterial intestinal infections - Enteroinvasive Escherichia coli infection,A04.3 Other bacterial intestinal infections - Enterohaemorrhagic Escherichia coli infection,A04.4 Other intestinal Escherichia coli infections,A04.5 Other bacterial intestinal infections - Campylobacter enteritis,A04.6 Other bacterial intestinal infections - Enteritis due to Yersinia enterocolitica,A04.7 Other bacterial intestinal infections - Enterocolitis due to Clostridium difficile,A04.8 Other specified bacterial intestinal infections,""A04.9 Bacterial intestinal infection, unspecified"",""A05 Other bacterial foodborne intoxications, not elsewhere classified"",A05.0 Foodborne staphylococcal intoxication,""A05.1 Other bacterial foodborne intoxications, not elsewhere classified - Botulism"",A05.2 Foodborne Clostridium perfringens [Clostridium welchii] intoxication,A05.3 Foodborne Vibrio parahaemolyticus intoxication,A05.4 Foodborne Bacillus cereus intoxication,A05.8 Other specified bacterial foodborne intoxications,""A05.9 Bacterial foodborne intoxication, unspecified"",A06 Amoebiasis,A06.0 Amoebiasis - Acute amoebic dysentery,A06.1 Chronic intestinal amoebiasis,A06.2 Amoebiasis - Amoebic nondysenteric colitis,A06.3 Amoebiasis - Amoeboma of intestine,A06.4 Amoebiasis - Amoebic liver abscess,A06.5 Amoebiasis - Amoebic lung abscess,A06.6 Amoebiasis - Amoebic brain abscess,A06.7 Cutaneous amoebiasis,A06.8 Amoebiasis - Amoebic infection of other sites,""A06.9 Amoebiasis, unspecified"",A07 Other protozoal intestinal diseases,A07.0 Other protozoal intestinal diseases - Balantidiasis,A07.1 Other protozoal intestinal diseases - Giardiasis [lambliasis],A07.2 Other protozoal intestinal diseases - Cryptosporidiosis,A07.3 Other protozoal intestinal diseases - Isosporiasis,A07.8 Other specified protozoal intestinal diseases,""A07.9 Protozoal intestinal disease, unspecified"",A08 Viral and other specified intestinal infections,A08.0 Rotaviral enteritis,A08.1 Viral and other specified intestinal infections - Acute gastroenteropathy due to Norwalk agent,A08.2 Adenoviral enteritis,A08.3 Other viral enteritis,""A08.4 Viral intestinal infection, unspecified"",A08.5 Other specified intestinal infections,A09 Other gastroenteritis and colitis of infectious and unspecified origin,A09.0 Other and unspecified gastroenteritis and colitis of infectious origin,A09.9 Gastroenteritis and colitis of unspecified origin",No main medical condition,Netherlands (the),"Groningen,Friesland,Drenthe",other inclusion criteria,supplementary info -testCohort,infants,Children aged between 0 and 1 years,,,,"Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months)",,,,,, -testCohort,mothers,,,,,,,,,,women that gave birth to a child, -testCohort,pregnant women,,,,,,,,,,, +resource,name,description,number of participants,inclusion start,inclusion end,age groups,main medical condition,comorbidity,countries,regions,inclusion criteria,other inclusion criteria,exclusion criteria,other exclusion criteria,supplementary information, +testCohort,newborns,Children aged <1 month,1000,1998,2004,"Prenatal,Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months),Child (2-12 years),Adolescent (13-17 years)","A00 Cholera,A00-A09 Intestinal infectious diseases,""A00.0 Cholera due to Vibrio cholerae 01, biovar cholerae"",""A00.1 Cholera due to Vibrio cholerae 01, biovar eltor"",""A00.9 Cholera, unspecified"",A01 Typhoid and paratyphoid fevers,A01.0 Typhoid fever,A01.1 Paratyphoid fever A,A01.2 Paratyphoid fever B,A01.3 Paratyphoid fever C,""A01.4 Paratyphoid fever, unspecified"",A02 Other salmonella infections,A02.0 Salmonella enteritis,A02.1 Salmonella sepsis,A02.2 Localized salmonella infections,A02.8 Other specified salmonella infections,""A02.9 Salmonella infection, unspecified"",A03 Shigellosis,A03.0 Shigellosis due to Shigella dysenteriae,A03.1 Shigellosis due to Shigella flexneri,A03.2 Shigellosis due to Shigella boydii,A03.3 Shigellosis due to Shigella sonnei,A03.8 Other shigellosis,""A03.9 Shigellosis, unspecified"",A04 Other bacterial intestinal infections,A04.0 Other bacterial intestinal infections - Enteropathogenic Escherichia coli infection,A04.1 Other bacterial intestinal infections - Enterotoxigenic Escherichia coli infection,A04.2 Other bacterial intestinal infections - Enteroinvasive Escherichia coli infection,A04.3 Other bacterial intestinal infections - Enterohaemorrhagic Escherichia coli infection,A04.4 Other intestinal Escherichia coli infections,A04.5 Other bacterial intestinal infections - Campylobacter enteritis,A04.6 Other bacterial intestinal infections - Enteritis due to Yersinia enterocolitica,A04.7 Other bacterial intestinal infections - Enterocolitis due to Clostridium difficile,A04.8 Other specified bacterial intestinal infections,""A04.9 Bacterial intestinal infection, unspecified"",""A05 Other bacterial foodborne intoxications, not elsewhere classified"",A05.0 Foodborne staphylococcal intoxication,""A05.1 Other bacterial foodborne intoxications, not elsewhere classified - Botulism"",A05.2 Foodborne Clostridium perfringens [Clostridium welchii] intoxication,A05.3 Foodborne Vibrio parahaemolyticus intoxication,A05.4 Foodborne Bacillus cereus intoxication,A05.8 Other specified bacterial foodborne intoxications,""A05.9 Bacterial foodborne intoxication, unspecified"",A06 Amoebiasis,A06.0 Amoebiasis - Acute amoebic dysentery,A06.1 Chronic intestinal amoebiasis,A06.2 Amoebiasis - Amoebic nondysenteric colitis,A06.3 Amoebiasis - Amoeboma of intestine,A06.4 Amoebiasis - Amoebic liver abscess,A06.5 Amoebiasis - Amoebic lung abscess,A06.6 Amoebiasis - Amoebic brain abscess,A06.7 Cutaneous amoebiasis,A06.8 Amoebiasis - Amoebic infection of other sites,""A06.9 Amoebiasis, unspecified"",A07 Other protozoal intestinal diseases,A07.0 Other protozoal intestinal diseases - Balantidiasis,A07.1 Other protozoal intestinal diseases - Giardiasis [lambliasis],A07.2 Other protozoal intestinal diseases - Cryptosporidiosis,A07.3 Other protozoal intestinal diseases - Isosporiasis,A07.8 Other specified protozoal intestinal diseases,""A07.9 Protozoal intestinal disease, unspecified"",A08 Viral and other specified intestinal infections,A08.0 Rotaviral enteritis,A08.1 Viral and other specified intestinal infections - Acute gastroenteropathy due to Norwalk agent,A08.2 Adenoviral enteritis,A08.3 Other viral enteritis,""A08.4 Viral intestinal infection, unspecified"",A08.5 Other specified intestinal infections,A09 Other gastroenteritis and colitis of infectious and unspecified origin,A09.0 Other and unspecified gastroenteritis and colitis of infectious origin,A09.9 Gastroenteritis and colitis of unspecified origin",No main medical condition,Netherlands (the),"Groningen,Friesland,Drenthe",Age group inclusion criterion,other inclusion criteria,Age group inclusion criterion,other exclusion criteria,supplementary info, +testCohort,infants,Children aged between 0 and 1 years,,,,"Infant (0-23 months),Newborn (0-1 months),Infants and toddlers (2-23 months)",,,,,,,,,, +testCohort,mothers,,,,,,,,,,,women that gave birth to a child,,,, +testCohort,pregnant women,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/data/_models/shared/Collection events.csv b/data/_models/shared/Collection events.csv index a590d349ef..b3b4d6da8b 100644 --- a/data/_models/shared/Collection events.csv +++ b/data/_models/shared/Collection events.csv @@ -4,13 +4,13 @@ Collection events,,resource,ref,1,TRUE,,Resources,,,,"dct:isPartOf,dct:inSeries" Collection events,,name,,1,TRUE,,,,,,"dct:title,dct:identifier",Name of the collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", Collection events,,description,text,,,,,,,,dct:description,Description of the collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", Collection events,,subpopulations,ref_array,,,,Subpopulations,resource,,,dct:references,Subpopulations that are targetted by this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", -Collection events,,start date,date,,,,,,,,dcat:startDate,Start date of data collection,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,end date,date,,,,,,,,dcat:endDate,End date of data collection. Leave empty if collection is ongoing,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", +Collection events,,start date,date,,,,,,,,dcat:startDate,Start date of data collection,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,end date,date,,,,,,,,dcat:endDate,End date of data collection. Leave empty if collection is ongoing,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", Collection events,,age groups,ontology_array,,,CatalogueOntologies,Age groups,,,,,Age groups included in this data collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,number of participants,int,,,,,,,,,Number of participants sampled in this data collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,areas of information,ontology_array,,,CatalogueOntologies,Areas of information cohorts,,,,,Areas of information that were extracted in this data collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,data categories,ontology_array,,,CatalogueOntologies,Data categories,,,,dcat:theme,Methods of data collection used in this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,sample categories,ontology_array,,,CatalogueOntologies,Sample categories,,,,dcat:theme,Samples that were collected in this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,standardized tools,ontology_array,,,CatalogueOntologies,Standardized tools,,,,,"Standardized tools, e.g. surveys, questionnaires, instruments used to collect data for this collection event","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,standardized tools other,,,,,,,,,,"If 'other', please specify","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", -Collection events,,core variables,string_array,,,,,,,,,Name 10-20 relevant variables that were collected in this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging,NetworksStaging", +Collection events,,number of participants,int,,,,,,,,,Number of participants sampled in this data collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,areas of information,ontology_array,,,CatalogueOntologies,Areas of information cohorts,,,,,Areas of information that were extracted in this data collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,data categories,ontology_array,,,CatalogueOntologies,Data categories,,,,dcat:theme,Methods of data collection used in this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,sample categories,ontology_array,,,CatalogueOntologies,Sample categories,,,,dcat:theme,Samples that were collected in this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,standardized tools,ontology_array,,,CatalogueOntologies,Standardized tools,,,,,"Standardized tools, e.g. surveys, questionnaires, instruments used to collect data for this collection event","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,standardized tools other,,,,,,,,,,"If 'other', please specify","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", +Collection events,,core variables,string_array,,,,,,,,,Name 10-20 relevant variables that were collected in this collection event,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,StudiesStaging", diff --git a/data/_models/shared/Internal identifiers.csv b/data/_models/shared/Internal identifiers.csv new file mode 100644 index 0000000000..b457cc9e42 --- /dev/null +++ b/data/_models/shared/Internal identifiers.csv @@ -0,0 +1,6 @@ +tableName,tableExtends,columnName,columnType,key,required,refSchema,refTable,refLink,refBack,validation,semantics,description,profiles,visible +Internal identifiers,,,,,,,,,,,,Internal identifier(s) for this resource,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging", +Internal identifiers,,resource,ref,1,TRUE,,Resources,,,,,Resource that this internal identifier belongs to,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging", +Internal identifiers,,identifier,text,1,TRUE,,,,,,,Internal identifier,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging", +Internal identifiers,,internal identifier type,ontology,,,CatalogueOntologies,Internal identifier types,,,,,Internal identifier type,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging", +Internal identifiers,,internal identifier type other,text,,,,,,,,,"If 'other', enter internal identifier type","DataCatalogueFlat,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging", diff --git a/data/_models/shared/Resources.csv b/data/_models/shared/Resources.csv index 9356841639..3df90cc20f 100644 --- a/data/_models/shared/Resources.csv +++ b/data/_models/shared/Resources.csv @@ -14,10 +14,11 @@ Resources,,RWD type,ontology_array,,,CatalogueOntologies,Datasource types,,,,,Ty Resources,,network type,ontology_array,,,CatalogueOntologies,Network types,,,,,Type of network,"DataCatalogueFlat,NetworksStaging" Resources,,website,hyperlink,,,,,,,,dcat:landingPage,Link to the website or homepage,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" Resources,,description,text,,,,,,,,dct:description,Short description,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" -Resources,,keywords,text,,,,,,,,dcat:keyword,Keywords to increase findability of this resource. Try to use words that are not used in the description,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,RWEStaging" -Resources,,external identifiers,refback,,,,External identifiers,,resource,,,"External identifier(s) for this resource (e.g. EUPASS number, UMCG register number)","DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" -Resources,,start year,int,,,,,,,,dcat:startDate,"The year when the resource started, e.g. when data or samples started to be collected or extracted, or when the resource was established","DataCatalogueFlat,EMA,RWEStaging,CohortsStaging,UMCGCohortsStaging" -Resources,,end year,int,,,,,,,,dcat:endDate,"The year the resource ceased, e.g. when data or sample collection was stopped","DataCatalogueFlat,EMA,RWEStaging,CohortsStaging,UMCGCohortsStaging" +Resources,,keywords,string_array,,,,,,,,dcat:keyword,Keywords to increase findability of this resource. Try to use words that are not used in the description,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,RWEStaging" +Resources,,internal identifiers,refback,,,,Internal identifiers,,resource,,,Internal identifier(s) for this resource (e.g. UMCG register number),"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" +Resources,,external identifiers,refback,,,,External identifiers,,resource,,,External identifier(s) for this resource (e.g. EUPASS number or BBMRI persistent identifer),"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" +Resources,,start year,int,,,,,,,,dcat:startDate,"The year when the resource started, e.g. when data or samples started to be collected or extracted, or when the resource was established","DataCatalogueFlat,EMA,RWEStaging,CohortsStaging,UMCGCohortsStaging,NetworksStaging" +Resources,,end year,int,,,,,,,,dcat:endDate,"The year the resource ceased, e.g. when data or sample collection was stopped","DataCatalogueFlat,EMA,RWEStaging,CohortsStaging,UMCGCohortsStaging,NetworksStaging" Resources,,time span description,text,,,,,,,,,Description of time span,"DataCatalogueFlat,RWEStaging" Resources,,contact email,,,,,,,,,dcat:contactPoint,Contact e-mail address ,"DataCatalogueFlat,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" Resources,,logo,file,,,,,,,,,"Logo of the resource, for use on homepages etc.","DataCatalogueFlat,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" @@ -47,8 +48,10 @@ Resources,,population of interest other,text,,,,,,,,,"If population of interest Resources,,countries,ontology_array,,,CatalogueOntologies,Countries,,,,dct:spatial,Countries where data/samples from this resource largely originate from,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,NetworksStaging,StudiesStaging,UMCGCohortsStaging" Resources,,regions,ontology_array,,,CatalogueOntologies,Regions,,,,dct:spatial,Geographical regions where data/samples from this resource largely originate from,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,UMCGCohortsStaging" Resources,,population age groups,ontology_array,,,CatalogueOntologies,Age groups,,,,,Which population age groups are captured in this resource? Select all that are relevant,"DataCatalogueFlat,EMA,CohortsStaging,RWEStaging,UMCGCohortsStaging" -Resources,,inclusion criteria,ontology_array,,,CatalogueOntologies,Inclusion criteria,,,,,Inclusion criteria applied to the participants of this resource,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging" +Resources,,inclusion criteria,ontology_array,,,CatalogueOntologies,Inclusion Exclusion Criteria,,,,,Inclusion criteria applied to the participants of this resource,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging" Resources,,other inclusion criteria,text,,,,,,,,,Other inclusion criteria applied to the participants of this resource,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging" +Resources,,exclusion criteria,ontology_array,,,CatalogueOntologies,Inclusion Exclusion Criteria,,,,,Exclusion criteria applied to the participants of this resource,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging" +Resources,,other exclusion criteria,text,,,,,,,,,Other exclusion criteria applied to the participants of this resource,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging" Resources,,population entry,ontology_array,,,CatalogueOntologies,Population entry,,,,,Select the possible causes / events that trigger the registration of a person in the data source,"DataCatalogueFlat,EMA,RWEStaging" Resources,,population entry other,text,,,,,,,,,"If other, specify the causes of entry to the underlying population","DataCatalogueFlat,EMA,RWEStaging" Resources,,population exit,ontology_array,,,CatalogueOntologies,Population exit,,,,,Select the possible causes / events that trigger the de-registration of a person in the data source,"DataCatalogueFlat,EMA,RWEStaging" diff --git a/data/_models/shared/Subpopulations.csv b/data/_models/shared/Subpopulations.csv index 6b416b9846..284733f8a2 100644 --- a/data/_models/shared/Subpopulations.csv +++ b/data/_models/shared/Subpopulations.csv @@ -3,13 +3,16 @@ Subpopulations,,,,,,,,,,,dcat:Dataset,Subpopulations defined for this resource," Subpopulations,,resource,ref,1,TRUE,,Resources,,,,dcterms:isPartOf,Resource this subpopulation is part of,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", Subpopulations,,name,,1,TRUE,,,,,,dcterms:title,"Subpopulation name, e.g. 'mothers in first trimester','newborns'","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", Subpopulations,,description,text,,,,,,,,dcterms:description,Subpopulation description,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,number of participants,int,,,,,,,,,Number of participants in this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,counts,refback,,,,Subpopulation counts,,subpopulation,,,"Total number of unique individuals per age(group), gender and year","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,inclusion start,int,,,,,,,,dcat:startDate,Year of first included participant,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,inclusion end,int,,,,,,,,dcat:endDate,Year of last included participant. Leave empty if data collection is ongoing,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,age groups,ontology_array,,,CatalogueOntologies,Age groups,,,,,Age groups within this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,main medical condition,ontology_array,,,CatalogueOntologies,Diseases,,,,dcat:theme,"Disease groups within this subpopulation, based on ICD-10 and ORPHA code classifications","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,comorbidity,ontology_array,,,CatalogueOntologies,Diseases,,,,,"Comorbidity within this subpopulation, based on ICD-10 classification","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,countries,ontology_array,,,CatalogueOntologies,Countries,,,,dcterms:coverage,Countries where data from this subpopulation largely originate from,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,regions,ontology_array,,,CatalogueOntologies,Regions,,,,dcterms:coverage,Geographical regions where data from this subpopulation largely originate from,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", -Subpopulations,,inclusion criteria,text,,,,,,,,,Inclusion criteria applied to this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging,NetworksStaging", +Subpopulations,,number of participants,int,,,,,,,,,Number of participants in this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,counts,refback,,,,Subpopulation counts,,subpopulation,,,"Total number of unique individuals per age(group), gender and year","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,inclusion start,int,,,,,,,,dcat:startDate,Year of first included participant,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,inclusion end,int,,,,,,,,dcat:endDate,Year of last included participant. Leave empty if data collection is ongoing,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,age groups,ontology_array,,,CatalogueOntologies,Age groups,,,,,Age groups within this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,main medical condition,ontology_array,,,CatalogueOntologies,Diseases,,,,dcat:theme,"Disease groups within this subpopulation, based on ICD-10 and ORPHA code classifications","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,comorbidity,ontology_array,,,CatalogueOntologies,Diseases,,,,,"Comorbidity within this subpopulation, based on ICD-10 classification","DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,countries,ontology_array,,,CatalogueOntologies,Countries,,,,dcterms:coverage,Countries where data from this subpopulation largely originate from,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,regions,ontology_array,,,CatalogueOntologies,Regions,,,,dcterms:coverage,Geographical regions where data from this subpopulation largely originate from,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,inclusion criteria,ontology_array,,,CatalogueOntologies,Inclusion Exclusion Criteria,,,,,Inclusion criteria applied to this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,other inclusion criteria,text,,,,,,,,,Other inclusion criteria applied to this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,exclusion criteria,ontology_array,,,CatalogueOntologies,Inclusion Exclusion Criteria,,,,,Exclusion criteria applied to this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", +Subpopulations,,other exclusion criteria,text,,,,,,,,,Other exclusion criteria applied to this subpopulation,"DataCatalogueFlat,CohortsStaging,UMCGCohortsStaging", diff --git a/data/_models/shared/Variables.csv b/data/_models/shared/Variables.csv index f5089defac..777765f4d0 100644 --- a/data/_models/shared/Variables.csv +++ b/data/_models/shared/Variables.csv @@ -6,7 +6,7 @@ Variables,,name,,1,TRUE,,,,,,,"Name of the variable, unique within a dataset","D Variables,,useExternalDefinition,ref,,,,Variables,,,,,Refer to variable definition in other datasets,"DataCatalogueFlat,RWEStaging,CohortsStaging,StudiesStaging,NetworksStaging", Variables,,label,,,,,,,,,,"Human readable name, if applicable","DataCatalogueFlat,RWEStaging,CohortsStaging,StudiesStaging,NetworksStaging", Variables,,description,text,,,,,,,,,Description of the variable,"DataCatalogueFlat,RWEStaging,CohortsStaging,StudiesStaging,NetworksStaging", -Variables,,collection event,ref_array,,,,Collection events,resource,,,,In case of protocolised data collection this defines the moment(s) in time this variable is collected on,"DataCatalogueFlat,CohortsStaging,StudiesStaging", +Variables,,collection event,ref_array,,,,Collection events,resource,,,,In case of protocolised data collection this defines the moment(s) in time this variable is collected on,"DataCatalogueFlat,CohortsStaging,StudiesStaging,NetworksStaging", Variables,,format,ontology,,,CatalogueOntologies,Formats,,,,,"Data type, e.g. string, integer, decimal, date, datetime, etc.","DataCatalogueFlat,RWEStaging,CohortsStaging,StudiesStaging,NetworksStaging", Variables,,unit,ontology,,,CatalogueOntologies,Units,,,,,"In case of a continuous variable, the unit that the variable values are expressed in","DataCatalogueFlat,RWEStaging,CohortsStaging,StudiesStaging,NetworksStaging", Variables,,since version,,,,,,,,,,When this variable was introduced,"DataCatalogueFlat,RWEStaging,CohortsStaging,StudiesStaging,NetworksStaging", diff --git a/data/_models/shared/Version.csv b/data/_models/shared/Version.csv index e138cd7e17..aaeb538315 100644 --- a/data/_models/shared/Version.csv +++ b/data/_models/shared/Version.csv @@ -1,2 +1,2 @@ tableName,tableExtends,columnName,columnType,key,required,refSchema,refTable,refLink,refBack,validation,semantics,description,profiles,visible -Version,,,,,,,,,,,,5.1,"DataCatalogueFlat,EMA,RWEStaging,CohortsStaging,StudiesStaging,UMCGCohortsStaging,NetworksStaging", +Version,,,,,,,,,,,,5.2,"DataCatalogueFlat,EMA,RWEStaging,CohortsStaging,StudiesStaging,UMCGCohortsStaging,NetworksStaging", diff --git a/data/_ontologies/External identifier types.csv b/data/_ontologies/External identifier types.csv index 38784081a8..b7db8633db 100644 --- a/data/_ontologies/External identifier types.csv +++ b/data/_ontologies/External identifier types.csv @@ -4,5 +4,3 @@ METc number,,,,,, Clinical Trials.gov,,,,,, NCT number,,,,,, EUDRACT number,,,,,, -UMCG register Utopia,,,,,, -UMCG PaNaMaID,,,,,, diff --git a/data/_ontologies/Inclusion criteria.csv b/data/_ontologies/Inclusion Exclusion Criteria.csv similarity index 100% rename from data/_ontologies/Inclusion criteria.csv rename to data/_ontologies/Inclusion Exclusion Criteria.csv diff --git a/data/_ontologies/Internal identifier types.csv b/data/_ontologies/Internal identifier types.csv new file mode 100644 index 0000000000..9d244148e4 --- /dev/null +++ b/data/_ontologies/Internal identifier types.csv @@ -0,0 +1,3 @@ +name,code,order,definition,comments,parent,ontologyTermURI +UMCG register Utopia,,,,,, +UMCG PaNaMaID,,,,,, diff --git a/docs/molgenis/dev_basics.md b/docs/molgenis/dev_basics.md index 98c4f41f0c..6b20454c38 100644 --- a/docs/molgenis/dev_basics.md +++ b/docs/molgenis/dev_basics.md @@ -11,7 +11,7 @@ We use: * `gradle run` => launches the app including user interface * `gradle dev` => launches only the backend (useful when developing frontend using yarn dev) * `gradle cleandb` => will empty your postgresql database (MAKE SURE YOU WANT IT) - * `gradle generateTypes ` => generates typescript types for schema to file + * `gradle generateTypes --args=' '` => generates typescript types for schema to file * `gradle test` => runs all tests. * `gradle testFast` => runs tests excluding those marged using @Tag("slow").