Single cell ATAC-Seq preprocessing for single cell explorer
This single cell ATAC-Seq analysis pipeline is designed for advanced analysis of dataset,
produced by 10X Genomics Cell Ranger ATAC.
Aggregated datasets are also supported!
In addition to 10x Genomics results it offers:
for SAMPLE in $(ls *.fastq.gz | sed -E 's/_S[0-9]_L00.*//g' | sort --unique); do
cellranger-atac count --id=cra_${SAMPLE} --fastqs=${WORK_DIR} --sample ${SAMPLE} --reference ${REFERENCE}
done
merged.csv
library_id,fragments,cells
<id1>,<path1>/outs/fragments.tsv.gz,<path1>/outs/singlecell.csv
...
<idN>,<pathN>/outs/fragments.tsv.gz,<pathN>/outs/singlecell.csv
cellranger-atac aggr --id=<id> --csv merged.csv --normalize=depth --reference=${REFERENCE}
Conda environment sc-atac-explorer
can be easily created for launching Jupyter Notebook:
```
conda env create -f environment.yml
conda activate sc-atac-explorer
```
Launch jupyter notebook to proceed with the pipeline.
```
conda activate sc-atac-explorer
jupyter notebook
```