From 19ee6cb28b03daefcb773a38dc3b20c50f34180c Mon Sep 17 00:00:00 2001 From: Joshua Wu Date: Tue, 15 Dec 2020 02:30:52 -0500 Subject: [PATCH] readme --- README.md | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9e35697 --- /dev/null +++ b/README.md @@ -0,0 +1,80 @@ +# Single Cell Analysis Applications in Python + +This repository contains applications of [Scanpy](https://github.com/theislab/scanpy) used by the Jason Spence Lab. **basic_analysis_script.py** contains a basic outline to run a single cell RNA sequencing analysis. **scanpy_spence.py** contains our collection of functions used to run the analysis. + +## Getting Started + +To run this project, install Scanpy from [here](https://github.com/theislab/scanpy). Make sure to have a recent version of Python. As of June 2019, we are using Python version 3.7.3. + +To understand the single cell analysis tools, check out the Scanpy and Seurat tutorials side-by-side [here](https://scanpy-tutorials.readthedocs.io/en/latest/pbmc3k.html) and [here](https://satijalab.org/seurat/v3.0/pbmc3k_tutorial.html) + +## Data Storage + +We keep track of our data using a meta-data table in a .tsv file. Each sample is represented in the table with the following format + +``` + +``` +**Example** +``` +2182-1 01_RNAseq_RAW_Data/Run_2182_Czerwinski_HIO_fetal_intestine_scRNAseq/Data/Intensities/BaseCalls/1-HIO-Fresh/outs/filtered_gene_bc_matrices_h5.h5 age:30 tissue:HIO gel:Matrigel media:ENR sex:Male sampleName:1-HIO-Fresh +``` + + + + +## Authors + +* **Joshua Wu** wujos@med.umich.edu +* **Mike Czerwinski** czerwmj@med.umich.edu + +Any questions, comments and/or feedback are welcome! + +## Acknowledgments + +* [**Jason Spence Lab**](http://www.jasonspencelab.com/) for support from our colleagues +* [**Theis Lab**](https://github.com/theislab) and [**Satija Lab**](https://satijalab.org/) for their work on modern single cell analysis techniques