Can I align paired end reads and orphan reads to reference sequences at the same time
1
0
Entering edit mode
9.0 years ago
Kurban ▴ 230

Hi everyone,

I have clipped my raw reads to get rid of poor quality reads by using The Nesoni clip tool and I got clipped_R1.fq, clipped_R2.fq and clipped_single.fq (orphan reads) files. Here clipped_R1.fq and clipped_R2.fq are paired, but clipped_single.fq is single reads. Now I wanna align all these reads to reference sequences and then get FPKM value. so i used bowtie2:

bowtie2 [options]* -x <bt2-idx> {-1 <m1> -2 <m2> | -U <r>} -S [<hit>]

(Usage from the manual)

I wrote this:

bowtie2 -a -X 800 -p 3 -x ~/Desktop/RNA-seq/CD/all_animals_transcription_factors_nt \
    {-1 ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_R1.fq -2 ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_R2.fq | -U ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_single.fq} | samtools view -Sb - > hits.bam

but that did not work.

Can I do that alignment that paired end and orphan reads at the same time to reference sequences? If I could, how? Could anyone give me some suggestions?

alignment • 3.0k views
ADD COMMENT
0
Entering edit mode
9.0 years ago

This should work. post the exact error if any. Hope clipped_R1.fq and clipped_R2.fq are in proper order.

bowtie2 \
  -a \
  -X 800 \
  -p 3 \
  -x ~/Desktop/RNA-seq/CD/all_animals_transcription_factors_nt \
  -1 ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_R1.fq \
  -2 ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_R2.fq \
  -U ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_single.fq | \
    samtools view -Sb - > hits.bam
ADD COMMENT
0
Entering edit mode

Hey GouthamAtla ,

Yeah, it works if I deleted this part from the command:

-U ~/Desktop/RNA-seq/CD/nesoni_clip_clead_reads/clipped_single.fq

But I do not wanna leave out the clipped_single.fq, single reads(this reads leaving unpaired after trimming the low quality paired end reads). I wanna align them too.

ADD REPLY
0
Entering edit mode

But if you deleted the "-U" part from your command how do you expect to make bowtie use the unpaired reads?

ADD REPLY

Login before adding your answer.

Traffic: 1757 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