├── .gitignore ├── .gitmodules ├── 01-onboarding ├── example │ ├── 01-code-of-conduct.md │ ├── 02-research-integrity.md │ ├── 03-contributions-and-authorship.md │ ├── 04-nih-public-access-policy.md │ ├── 05-key-readings │ │ ├── Gernsbacher_2016_Language_and_Speech_in_Autism.pdf │ │ ├── Jones_2013_Diagnosing_autism_in_neurobiological_research_studies.pdf │ │ ├── Kaufmann_2017_Autism_Spectrum_Disorder_in_Fragile_X_Syndrome_Cooccurring_Conditions_and_Current_Treatment.pdf │ │ ├── Lord_2012_Annual_Research_Review_Re-thinking_the_classification_of_autism_spectrum_disorders.pdf │ │ ├── Lord_2015_Recent_Advances_in_Autism_Research_as_Reflected_in_DSM-5_Criteria_for_Autism_Spectrum_Disorder.pdf │ │ ├── Presmanes_Hill_2015_Epidemiology_of_Autism_Spectrum_Disorders.pdf │ │ └── README.md │ ├── 06-individual-onboarding │ │ ├── gra-onboarding.md │ │ └── ra-onboarding.md │ ├── README.md │ └── onboarding.wiki │ │ ├── 01-about-cslu.md │ │ ├── 02-seminars-and-journal-clubs.md │ │ ├── 03-servers-and-data-repositories.md │ │ ├── 04-CSLU-acronyms.md │ │ ├── 05-food-and-coffee.md │ │ ├── 06-office-stuff.md │ │ ├── 07-transportation-and-parking.md │ │ └── home.md └── template │ └── onboarding.md ├── 02-protocols ├── example │ ├── README.md │ ├── datastorage │ │ ├── files.md │ │ └── recordings.md │ ├── scripts │ │ └── upload.sh │ ├── suggested-reading │ │ ├── BucholtzPoliticsofTranscription.pdf │ │ └── ochs1979.pdf │ ├── transcription.wiki │ │ ├── datastorage │ │ │ ├── files.md │ │ │ └── recordings.md │ │ ├── home.md │ │ ├── transcription.md │ │ └── transcription │ │ │ ├── activities.md │ │ │ ├── adhd.md │ │ │ ├── ados.md │ │ │ ├── audio2.md │ │ │ ├── bash.md │ │ │ ├── cleaning.md │ │ │ ├── elan.md │ │ │ ├── erpa.md │ │ │ ├── formatting-uploading.md │ │ │ ├── guideline-changelog.md │ │ │ ├── guidelines.md │ │ │ ├── textgrids.md │ │ │ ├── tracking.md │ │ │ └── uw.md │ └── transcription │ │ ├── activities.md │ │ ├── adhd.md │ │ ├── ados.md │ │ ├── audio2.md │ │ ├── bash.md │ │ ├── cleaning.md │ │ ├── elan.md │ │ ├── erpa.md │ │ ├── formatting-uploading.md │ │ ├── guideline-changelog.md │ │ ├── guidelines.md │ │ ├── textgrids.md │ │ ├── tracking.md │ │ ├── transcription.md │ │ └── uw.md └── template │ └── protocol.md ├── 03-housekeeping ├── example │ ├── IRB │ │ ├── .gitkeep │ │ └── 2017-notes.md │ ├── NIH-progress-reports │ │ └── README.md │ ├── README.md │ ├── meetings │ │ ├── .gitkeep │ │ ├── 2017-08-16.md │ │ ├── 2017-09-06.md │ │ ├── 2017-10-04.md │ │ └── 2017-11-01.md │ └── team-contacts.md └── template │ ├── IRB │ ├── .gitkeep │ └── delete-me.md │ ├── NIH-progress-reports │ └── template.md │ ├── README.md │ ├── meetings │ ├── .gitkeep │ └── template.md │ └── team-contacts.md ├── README.md ├── labhub.Rproj └── labhub.wiki ├── 01-about-cslu.md ├── 02-seminars-and-journal-clubs.md ├── 03-servers-and-data-repositories.md ├── 04-CSLU-acronyms.md ├── 05-food-and-coffee.md ├── 06-office-stuff.md ├── 07-transportation-and-parking.md ├── Home.md └── _Sidebar.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /01-onboarding/example/01-code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/01-code-of-conduct.md -------------------------------------------------------------------------------- /01-onboarding/example/02-research-integrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/02-research-integrity.md -------------------------------------------------------------------------------- /01-onboarding/example/03-contributions-and-authorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/03-contributions-and-authorship.md -------------------------------------------------------------------------------- /01-onboarding/example/04-nih-public-access-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/04-nih-public-access-policy.md -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/Gernsbacher_2016_Language_and_Speech_in_Autism.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/Gernsbacher_2016_Language_and_Speech_in_Autism.pdf -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/Jones_2013_Diagnosing_autism_in_neurobiological_research_studies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/Jones_2013_Diagnosing_autism_in_neurobiological_research_studies.pdf -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/Kaufmann_2017_Autism_Spectrum_Disorder_in_Fragile_X_Syndrome_Cooccurring_Conditions_and_Current_Treatment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/Kaufmann_2017_Autism_Spectrum_Disorder_in_Fragile_X_Syndrome_Cooccurring_Conditions_and_Current_Treatment.pdf -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/Lord_2012_Annual_Research_Review_Re-thinking_the_classification_of_autism_spectrum_disorders.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/Lord_2012_Annual_Research_Review_Re-thinking_the_classification_of_autism_spectrum_disorders.pdf -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/Lord_2015_Recent_Advances_in_Autism_Research_as_Reflected_in_DSM-5_Criteria_for_Autism_Spectrum_Disorder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/Lord_2015_Recent_Advances_in_Autism_Research_as_Reflected_in_DSM-5_Criteria_for_Autism_Spectrum_Disorder.pdf -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/Presmanes_Hill_2015_Epidemiology_of_Autism_Spectrum_Disorders.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/Presmanes_Hill_2015_Epidemiology_of_Autism_Spectrum_Disorders.pdf -------------------------------------------------------------------------------- /01-onboarding/example/05-key-readings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/05-key-readings/README.md -------------------------------------------------------------------------------- /01-onboarding/example/06-individual-onboarding/gra-onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/06-individual-onboarding/gra-onboarding.md -------------------------------------------------------------------------------- /01-onboarding/example/06-individual-onboarding/ra-onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/06-individual-onboarding/ra-onboarding.md -------------------------------------------------------------------------------- /01-onboarding/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/README.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/01-about-cslu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/01-about-cslu.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/02-seminars-and-journal-clubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/02-seminars-and-journal-clubs.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/03-servers-and-data-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/03-servers-and-data-repositories.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/04-CSLU-acronyms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/04-CSLU-acronyms.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/05-food-and-coffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/05-food-and-coffee.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/06-office-stuff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/06-office-stuff.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/07-transportation-and-parking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/07-transportation-and-parking.md -------------------------------------------------------------------------------- /01-onboarding/example/onboarding.wiki/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/example/onboarding.wiki/home.md -------------------------------------------------------------------------------- /01-onboarding/template/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/01-onboarding/template/onboarding.md -------------------------------------------------------------------------------- /02-protocols/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/README.md -------------------------------------------------------------------------------- /02-protocols/example/datastorage/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/datastorage/files.md -------------------------------------------------------------------------------- /02-protocols/example/datastorage/recordings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/datastorage/recordings.md -------------------------------------------------------------------------------- /02-protocols/example/scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/scripts/upload.sh -------------------------------------------------------------------------------- /02-protocols/example/suggested-reading/BucholtzPoliticsofTranscription.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/suggested-reading/BucholtzPoliticsofTranscription.pdf -------------------------------------------------------------------------------- /02-protocols/example/suggested-reading/ochs1979.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/suggested-reading/ochs1979.pdf -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/datastorage/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/datastorage/files.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/datastorage/recordings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/datastorage/recordings.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/home.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/activities.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/adhd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/adhd.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/ados.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/ados.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/audio2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/audio2.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/bash.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/cleaning.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/elan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/elan.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/erpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/erpa.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/formatting-uploading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/formatting-uploading.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/guideline-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/guideline-changelog.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/guidelines.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/textgrids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/textgrids.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/tracking.md -------------------------------------------------------------------------------- /02-protocols/example/transcription.wiki/transcription/uw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription.wiki/transcription/uw.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/activities.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/adhd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/adhd.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/ados.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/ados.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/audio2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/audio2.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/bash.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/cleaning.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/elan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/elan.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/erpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/erpa.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/formatting-uploading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/formatting-uploading.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/guideline-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/guideline-changelog.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/guidelines.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/textgrids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/textgrids.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/tracking.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/transcription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/transcription.md -------------------------------------------------------------------------------- /02-protocols/example/transcription/uw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/example/transcription/uw.md -------------------------------------------------------------------------------- /02-protocols/template/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/02-protocols/template/protocol.md -------------------------------------------------------------------------------- /03-housekeeping/example/IRB/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-housekeeping/example/IRB/2017-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/IRB/2017-notes.md -------------------------------------------------------------------------------- /03-housekeeping/example/NIH-progress-reports/README.md: -------------------------------------------------------------------------------- 1 | Nothing here yet! TBD 2018 -------------------------------------------------------------------------------- /03-housekeeping/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/README.md -------------------------------------------------------------------------------- /03-housekeeping/example/meetings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-housekeeping/example/meetings/2017-08-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/meetings/2017-08-16.md -------------------------------------------------------------------------------- /03-housekeeping/example/meetings/2017-09-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/meetings/2017-09-06.md -------------------------------------------------------------------------------- /03-housekeeping/example/meetings/2017-10-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/meetings/2017-10-04.md -------------------------------------------------------------------------------- /03-housekeeping/example/meetings/2017-11-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/meetings/2017-11-01.md -------------------------------------------------------------------------------- /03-housekeeping/example/team-contacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/example/team-contacts.md -------------------------------------------------------------------------------- /03-housekeeping/template/IRB/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-housekeeping/template/IRB/delete-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/template/IRB/delete-me.md -------------------------------------------------------------------------------- /03-housekeeping/template/NIH-progress-reports/template.md: -------------------------------------------------------------------------------- 1 | Add your content in markdown files -------------------------------------------------------------------------------- /03-housekeeping/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/template/README.md -------------------------------------------------------------------------------- /03-housekeeping/template/meetings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-housekeeping/template/meetings/template.md: -------------------------------------------------------------------------------- 1 | Add your content in markdown files -------------------------------------------------------------------------------- /03-housekeeping/template/team-contacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/03-housekeeping/template/team-contacts.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/README.md -------------------------------------------------------------------------------- /labhub.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.Rproj -------------------------------------------------------------------------------- /labhub.wiki/01-about-cslu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/01-about-cslu.md -------------------------------------------------------------------------------- /labhub.wiki/02-seminars-and-journal-clubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/02-seminars-and-journal-clubs.md -------------------------------------------------------------------------------- /labhub.wiki/03-servers-and-data-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/03-servers-and-data-repositories.md -------------------------------------------------------------------------------- /labhub.wiki/04-CSLU-acronyms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/04-CSLU-acronyms.md -------------------------------------------------------------------------------- /labhub.wiki/05-food-and-coffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/05-food-and-coffee.md -------------------------------------------------------------------------------- /labhub.wiki/06-office-stuff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/06-office-stuff.md -------------------------------------------------------------------------------- /labhub.wiki/07-transportation-and-parking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/07-transportation-and-parking.md -------------------------------------------------------------------------------- /labhub.wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/Home.md -------------------------------------------------------------------------------- /labhub.wiki/_Sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apreshill/labhub/HEAD/labhub.wiki/_Sidebar.md --------------------------------------------------------------------------------