mapping form different lane
2
0
Entering edit mode
6.0 years ago

Hi to all I have 4 lanes (whole genome seq) from 1 sample, I want to know how can I mapping these sequence?

bwa NGS • 1.9k views
ADD COMMENT
3
Entering edit mode
6.0 years ago

Concatenate all your read 1 fastq.gz samples together, and all your read 2 fastq samples together, then align.

Or, do the alignments separately, and use samtools merge to make one combined .bam from the 4 separate .bams

ADD COMMENT
2
Entering edit mode
6.0 years ago
h.mon 35k

Using any one of a number of mappers, like BWA, Bowtie2, HISAT2, STAR, and so on - the appropriate mapper will depend on what kind of data you have, and downstream analysis you want to perform.

Do you have particular concerns? What exactly do you want to do? Map all files to into a single bam?

Please read How To Ask Good Questions On Technical And Scientific Forums and provide further information to get better answers.

ADD COMMENT
0
Entering edit mode

No, I mean, I have 4 lanes that Each one included a forward and a reverse read so In total I have 8 fastq.gz files. I do not know how can I do mapping? because, BWA accept only two inputs ( a forward and a reverse read) not 8 inputs.

ADD REPLY
1
Entering edit mode

What are you going to do downstream? For example, for variant calling, it is important (at least for GATK) to add read groups for each lane separately, so I would suggest mapping each pair of files separately, using the -R flag to add appropriate read group information. You can then merge with samtools or Picard.

If you want to map all files in one step, you can use process substitution:

bwa mem index_name <(cat *_R1.fastq.gz) <(cat *_R2.fastq.gz)
ADD REPLY
0
Entering edit mode

I want for SNP discovery. so if I want to map all files in one step then I faced problems in GATK? is it true?

ADD REPLY

Login before adding your answer.

Traffic: 2678 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6