I performed 10x Chromium single cell seq and used Paired-end NovaSeq to generate a set of 8 fastq files for each sample.
About filename rules:
[Sample Name]_S1_L00[Lane Number]_[Read Type]_001.fastq.gz
Where Read Type
is one of:
I1: Sample index read
I2: Sample index read
R1: Read 1
R2: Read 2
Due to suboptimal results from the cellranger pipeline, I decided to do the reads alignment 'manually'. I plan to use bowtie2 or bwa, but I don't know how to process and use this set of fastq files at the same time. The command is as follows, usually sample.fastq.gz
can only use one or two fastq files.
bowtie2 -x mm39 -p 60 -t -U sample.fastq.gz -S sample1.sam
What should I do?