├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── code-of-conduct.md ├── docker-load.md ├── docker-pull.md ├── feedback_prompts.pdf ├── flashdrive-instructions.md ├── schedule.md └── screenshots ├── all-01-network.png ├── all-02-volume.png ├── all-03-advanced.png ├── all-04-rstudio.png ├── container_running.png ├── docker_permission_windows.png ├── flashdrive_contents.png └── ready_command.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /docker-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/docker-load.md -------------------------------------------------------------------------------- /docker-pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/docker-pull.md -------------------------------------------------------------------------------- /feedback_prompts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/feedback_prompts.pdf -------------------------------------------------------------------------------- /flashdrive-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/flashdrive-instructions.md -------------------------------------------------------------------------------- /schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/schedule.md -------------------------------------------------------------------------------- /screenshots/all-01-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/all-01-network.png -------------------------------------------------------------------------------- /screenshots/all-02-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/all-02-volume.png -------------------------------------------------------------------------------- /screenshots/all-03-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/all-03-advanced.png -------------------------------------------------------------------------------- /screenshots/all-04-rstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/all-04-rstudio.png -------------------------------------------------------------------------------- /screenshots/container_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/container_running.png -------------------------------------------------------------------------------- /screenshots/docker_permission_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/docker_permission_windows.png -------------------------------------------------------------------------------- /screenshots/flashdrive_contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/flashdrive_contents.png -------------------------------------------------------------------------------- /screenshots/ready_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexsLemonade/RNA-Seq-Exercises/HEAD/screenshots/ready_command.png --------------------------------------------------------------------------------