-
Notifications
You must be signed in to change notification settings - Fork 3
Run cellranger‐arc
chenweng1991 edited this page Jul 17, 2023
·
6 revisions
First, if ReDeeM experimental protocol are followed, and folders are created following Organize ReDeeM full data, Follow the command below to run cellranger
- Go to the folder cellranger within the working directory
sample/
├── CellRanger *
├── FASTQ
│ ├── ATAC
│ ├── Mito
│ └── RNA
└── Mito
├── Enrich
└── WholeATAC
- Download REDEEM-V
git clone https://github.com/chenweng1991/REDEEM-V.git
- Assign path REDEEM=ThePathToREDEEM-V #The loacation where the REDEEM-V is downloaded to
- Run the commands below
$REDEEM/PrepData/makelibrary.sh # Run this inside the CellRanger folder. This will create a file called "Libraries"
## Below run cell ranger
cellranger_path=Your_Path_To_cellranger-arc #~/Cellranger-arc/cellranger-arc-2.0.0/cellranger-arc
ref=Your_Path_To_refdata-cellranger-arc-GRCh38-2020-A #/lab/solexa_weissman/cweng/Genomes/10X/refdata-cellranger-arc-GRCh38-2020-A/
Prefix=`dirname $(pwd) | xargs basename
bsub -R "rusage[mem=200000]" $cellranger_path count --id=$Prefix --reference=$ref --libraries=Libraries --localcores=32 --localmem=128
# Note: the bsub -R "rusage[mem=200000]" can be replaced by your cluster system. Or just delete to run locally
# --localcores=32 --localmem=128 needs to be adjusted based on your system