Hey!
I am new to processing snRNAseq data and experiencing working with 10X cellranger pipeline for the first time. I encountered the following error:
[error] Pipestance failed. Error log at:
OSCC11/SC_RNA_COUNTER_CS/SC_MULTI_CORE/MULTI_CHEMISTRY_DETECTOR/DETECT_COUNT_CHEMISTRY/fork0/chnk0-uc6a6c33e8e/_errors
Log message:
FASTQ header mismatch detected at line 4 of input files...
I downloaded my sample data from: https://www.ncbi.nlm.nih.gov/sra/SRX14334802[accn]
For each of the SRRs related to my sample (SRR18187852, SRR18187853, SRR18187882, SRR18187893) I used this commands:
fasterq-dump --outdir "$output_directory" "$SRR_ID"
gzip -c <file> > <new_name>.gz
I renamed my files to match the requirements:
OSCC11_S1_L001_R1_001.fastq.gz OSCC11_S1_L001_R2_001.fastq.gz
OSCC11_S1_L002_R1_001.fastq.gz OSCC11_S1_L002_R2_001.fastq.gz
I ran cellranger 7.2.0 with the command:
cellranger count --id="$ID" \
--transcriptome="$TRANSCRIPTOME" \
--fastqs="$INPUT_DIR" \
--sample="$SAMPLE_NAME"\
--include-introns true \
--localcores=8 \
--localmem=62\
I used refdata-gex-GRCh38-2020-A as the TRANSCRIPTOME and gave the directory of the 4 fastq.gz files I mentioned as the INPUT_DIR.
I tried running this command with different chemistry flags (SC5P-R2, fiveprime, SC5P-PE) and yet the issue still arises.
It seems like the data I'm working with is divided to different SRR for the different reads R1 and R2 and I'm guessing this might be the cause.
Is there a way to run cellranger on a dataset of this format?
single-cell
cellranger