-
-
Save cirpo/465575 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lab: | |
lab1: | |
name: S.C. Laboratorio Istocompatibilità IBMDR | |
lab2: | |
name: S.C. Laboratorio di genetica umana | |
project: | |
p1: | |
title: Analisi dei dati HLA del Registro Italiano di Donatori di Midollo Osseo e dei pazienti | |
description: | |
center: Cattedra di Genetica Medica di Torino | |
principal: Dr. Amoroso - Cattedra di Genetica Medica di Torino | |
study: multicentrico/noprofit | |
start: 2007 | |
duration: 2 anni | |
end: 2009 | |
status: Terminata l'analisi dei dati donatori | |
backer: X | |
p2: | |
title: SURF – II Sperimentazione sull'Utilità Clinica della Ricerca Farmacogenetica Progetto | |
description: valutare l'utilità clinica di test farmacogenetici, attraverso l'attuazione di studi | |
center: S.C. Laboratorio di Genetica dell'E.O. Ospedali Galliera | |
principal: Dott.ssa Nicoletta Sacchi, Dott. Emilio Di Maria | |
study: monocentrico/noprofit | |
start: 2009 | |
duration: 2 anni | |
end: | |
status: in corso | |
backer: Osp. Galliera Comitato Scientifico | |
pr_labs: | |
pl1: | |
pro: p1 | |
lab: lab1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project: | |
columns: | |
title: { type: string(255), notnull: true } | |
description: { type: string(4000) } | |
center: { type: string(4000) } | |
principal: { type: string(255) } | |
start: { type: string(255) } | |
duration: { type: string(255) } | |
end: { type: string(255) } | |
status: { type: enum, values: [approvato al C.E ma non ancora in corso, in corso, in fase di follow-up, concluso ] } | |
study: { type: enum, values: [monocentrico/noprofit, monocentrico/profit, multicentrico/noprofit, multicentrico/profit] } | |
type: { type: enum, values: [preclinico (di laboratorio), clinico osservazionale, clinico sperimentale] } | |
backer: { type: enum, values: [Ente Pubblico, Ente Privato no-profit (Onlus), Ente privato profit (Industria)] } | |
specify: { type: string(255) } | |
lab: | |
columns: | |
name: { type: string(255) } | |
pr_labs: | |
columns: | |
pro_id: { type: integer, primary: true } | |
lab_id: { type: integer, primary: true } | |
relations: | |
lab: { onDelete: CASCADE, local: lab_id, foreign: id } | |
project: { onDelete: CASCADE, local: pro_id, foreign: id } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment