Closed ysbioinfo closed 2 years ago
Hi Yang,
In PASquant step, SCAPTURE requires "--celllist" for cell barcode file as input (one barcode per line), and then SCAPTURE automaticly filters the input BAM file. The barcode file could easily be generated from cellranger output though: zcat outs/filtered_feature_bc_matrix/barcodes.tsv.gz > celllist.txt
Currently, these public single-cell PAS tools take the BAM file of all cells to identify PASs. You can split the BAM file by celltype to run PAScall module individually, and then merge PAS files with PASmerge module. In such a case, a manual analysis of PAS evaluation is recommended.
Best Guo-Wei
Many thanks for your help guowei! Another question, I noted that in your guideline, 3 files are generated in PAScall step: intronic, exonic and 3primeextended. But when you select the positive PAS, only intronic and exonic bed are used. `#Select PASs with positive prediction
perl -alne '$,="\t";print @F[0..11] if $F[12] > 0 | $F[13] eq "positive";' PBMC_ALL.exonic.Integrated.bed PBMC_ALL.intronic.Integrated.bed > PBMC_ALL.PASquant.bed
perl -alne '$,="\t";print @F[0..11] if $F[13] eq "positive";' PBMC_ALL.exonic.Integrated.bed PBMC_ALL.intronic.Integrated.bed > PBMC_ALL.PASquant.bed`
Is it just a typo, or 3primeextended is not recommended for downstream analysis?
The PASs locating at downstream of gene annotation have not been evaluated in our study.
Got it. Thanks!
Hi Guowei, Thanks for developing such an awesome tool! I want to use it in my analysis and have two naive questions:
Many thanks in advance!
Best Yang