Do downloaded fastq files from NCBI (SRA) needs preprocessing before used in bowtie2 and featureCounts
0
0
Entering edit mode
5.4 years ago
RS • 0

I am new to RNA-Seq data analysis. Sorry for very basic question :)

I was given a task to generate read counts for a published dataset. I have followed the below pipeline and generated read counts. But in this pipeline there is no preprocessing of fastq files like removal of ribosome sequences. are these fastq files have ribosomal sequences? Any other pre-processing always required?

bowtie2-build TAIR10_chr_all.fas Araindex

bowtie2 -x Araindex -1 SRR6371142_1.fastq -2 SRR6371142_2.fastq -S SRR6371142.SAM

sam.files <- list.files(path = "sf_SHARED-VB/", pattern = ".SAM$", full.names = TRUE)

fc <- featureCounts(sam.files, annot.ext="Arabidopsis_thaliana.TAIR10.41.gtf",isPairedEnd=TRUE,isGTFAnnotationFile=TRUE)

Thanks for help!

RNA-Seq sequencing • 942 views
ADD COMMENT
1
Entering edit mode

For a published dataset you can find out about the preprocessing steps that may have been performed from the paper or you may have to align the reads to the ribosomal genes and check if there are any!

ADD REPLY
0
Entering edit mode

You should not use bowtie2 to align eukaryotic RNAseq reads to a reference genome, as bowtie2 is not splice-aware. Use STAR or HISAT2 for this purpose.

Also, I hope you noticed you are mixing command-line and R commands.

ADD REPLY

Login before adding your answer.

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