├── README.md ├── amazon ├── README.md ├── init_users.py └── remove_user_dockers.sh ├── cegs_2017.css ├── cegs_2017_demo-rpubs.html ├── cegs_2017_demo.Rpres ├── cegs_2017_demo.html ├── cegs_2017_demo.md ├── cut_and_paste_demo.txt ├── docker_cegs_demo ├── Dockerfile ├── build_docker.sh └── push_docker.sh ├── single_cell_rna_seq.pptx ├── src ├── dotplot.R └── makeNiceMAST.R └── url.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/README.md -------------------------------------------------------------------------------- /amazon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/amazon/README.md -------------------------------------------------------------------------------- /amazon/init_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/amazon/init_users.py -------------------------------------------------------------------------------- /amazon/remove_user_dockers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/amazon/remove_user_dockers.sh -------------------------------------------------------------------------------- /cegs_2017.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/cegs_2017.css -------------------------------------------------------------------------------- /cegs_2017_demo-rpubs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/cegs_2017_demo-rpubs.html -------------------------------------------------------------------------------- /cegs_2017_demo.Rpres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/cegs_2017_demo.Rpres -------------------------------------------------------------------------------- /cegs_2017_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/cegs_2017_demo.html -------------------------------------------------------------------------------- /cegs_2017_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/cegs_2017_demo.md -------------------------------------------------------------------------------- /cut_and_paste_demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/cut_and_paste_demo.txt -------------------------------------------------------------------------------- /docker_cegs_demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/docker_cegs_demo/Dockerfile -------------------------------------------------------------------------------- /docker_cegs_demo/build_docker.sh: -------------------------------------------------------------------------------- 1 | docker build -t trinityctat/cegs_demo:latest . 2 | -------------------------------------------------------------------------------- /docker_cegs_demo/push_docker.sh: -------------------------------------------------------------------------------- 1 | docker push trinityctat/cegs_demo:latest 2 | -------------------------------------------------------------------------------- /single_cell_rna_seq.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/single_cell_rna_seq.pptx -------------------------------------------------------------------------------- /src/dotplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/src/dotplot.R -------------------------------------------------------------------------------- /src/makeNiceMAST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/src/makeNiceMAST.R -------------------------------------------------------------------------------- /url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/broadinstitute/single_cell_analysis/HEAD/url.txt --------------------------------------------------------------------------------