Skip to content

Instantly share code, notes, and snippets.

@MorganDaniels
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MorganDaniels/308d1a18c75bc68639fa to your computer and use it in GitHub Desktop.
Save MorganDaniels/308d1a18c75bc68639fa to your computer and use it in GitHub Desktop.
= Oral history interviews with healthy volunteers in research, 1953-2003
== Modeling the Graph
//graph
=== OUR DATASET
[source, cypher]
----
CREATE
//Interviewees
(Mirsky:Person{name:'Allan Mirsky'}),
(Bartel:Person{name:'Albert Bartel'}),
(Fauci:Person{name:'Anthony Fauci'}),
(Stewart:Person{name:'Elizabeth Stewart'}),
(Kipps:Person{name:'Barbara Kipps'}),
(Glover:Person{name:'Carol Eiler Glover'}),
(Colwell:Person{name:'Christina Colwell'}),
(Bullen:Person{name:'Christine (Ewing) Bullen'}),
(Emma:Person{name:'Emma'}),
(Bertsche:Person{name:'Evelyn (Dyck) Bertsche'}),
(Schrag:Person{name:'Gary Schrag'}),
//Organizations
(NIH_Clinical_center:Organization{name:'NIH Clinical Center'}),
(MCC:Organization{name:'Mennonite Central Committee'}),
(Keuka:Organization{name:'Keuka College'}),
(Bridgewater:Organization{name:'Bridgewater College'}),
(Brethren:Organization{name:'Brethren Volunteer Service'}),
(Manchester:Organization{name:'Manchester University'}),
(Beloit:Organization{name:'Beloit College'}),
(Bethel:Organization{name:'Bethel College'}),
//Studies
(Attention:Study{name:'Attention studies'}),
(Continuous_performance:Study{name:'Continuous performance test'}),
(Sleep_deprivation:Study{name:'Sleep deprivation'}),
(Seizure_research:Study{name:'Seizure research'}),
(Drug_injections:Study{name:'Injections of drug followed by tests including psychoanalysis'}),
(Diet_and_heat_tolerance:Study{name:'Diet and heat tolerance in Southeast Asia'}),
(Diet_and_cholesterol:Study{name:'Diet and cholesterol levels'}),
(Diet_study:Study{name:'Diet study'}),
(Hormones:Study{name:'Hormone studies'}),
(Salt_free:Study{name:'Salt-free diet'}),
(Flu_study:Study{name:'Flu study'}),
(Urine_and_blood_samples:Study{name:'Urine and blood samples'}),
(Fever:Study{name:'Fever study'}),
(REM_sleep:Study{name:'REM sleep study'}),
(Gout:Study{name:'Gout study'}),
(Psychological:Study{name:'Psychological study'}),
(Drug:Study{name:'Drug study'}),
(LSD_trials:Study{name:'LSD trials'}),
(Insulin:Study{name:'Insulin test'}),
//Relationships
(Bartel)-[:WAS_REFERRED_BY]->(MCC),
(Emma)-[:WAS_REFERRED_BY]->(MCC),
(Bertsche)-[:WAS_REFERRED_BY]->(MCC),
(Schrag)-[:WAS_REFERRED_BY]->(MCC),
(Stewart)-[:WAS_REFERRED_BY]->(Keuka),
(Bullen)-[:WAS_REFERRED_BY]->(Keuka),
(Kipps)-[:WAS_REFERRED_BY]->(Bridgewater),
(Glover)-[:WAS_REFERRED_BY]->(Brethren),
(Colwell)-[:WAS_REFERRED_BY]->(Beloit),
(Glover)-[:WAS_STUDENT_AT]->(Manchester),
(Bertsche)-[:WAS_STUDENT_AT]->(Bethel),
(Emma)-[:WAS_STUDENT_AT]->(Bethel),
(Mirsky)-[:MENTIONED]->(Attention),
(Mirsky)-[:MENTIONED]->(Continuous_performance),
(Mirsky)-[:MENTIONED]->(Sleep_deprivation),
(Bartel)-[:MENTIONED]->(Seizure_research),
(Bartel)-[:MENTIONED]->(Drug_injections),
(Glover)-[:MENTIONED]->(Diet_and_heat_tolerance),
(Glover)-[:MENTIONED]->(Diet_and_cholesterol),
(Kipps)-[:MENTIONED]->(Diet_study),
(Colwell)-[:MENTIONED]->(Hormones),
(Colwell)-[:MENTIONED]->(Salt_free),
(Colwell)-[:MENTIONED]->(Flu_study),
(Colwell)-[:MENTIONED]->(Urine_and_blood_samples),
(Bullen)-[:MENTIONED]->(Fever),
(Bullen)-[:MENTIONED]->(REM_sleep),
(Emma)-[:MENTIONED]->(Gout),
(Emma)-[:MENTIONED]->(Psychological),
(Emma)-[:MENTIONED]->(Drug),
(Bertsche)-[:MENTIONED]->(LSD_trials),
(Schrag)-[:MENTIONED]->(Drug),
(Schrag)-[:MENTIONED]->(Sleep_deprivation),
(Schrag)-[:MENTIONED]->(Urine_and_blood_samples),
(Schrag)-[:MENTIONED]->(Insulin),
(Fauci)-[:WORKED_AT]->(NIH_Clinical_center),
(Mirsky)-[:WORKED_AT]->(NIH_Clinical_center)
----
//console
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment