N base in RNA-seq data
Hi, I do an alignement of RNA-seq publish data with STAR aligner. I see in fastqc that for some sample, N content increase to 12% at base 4 and 22 (warning in orange). Should i cut N part ?
Thanks
rna-seq
alignment
• 1,161 views
•
link
written
by
cellulebioinfobiscem •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
why my fastqc on trimmed data failed?
written by kamran.kouchakzadeh.kk •Hi I prepared a FastQC report from my raw FASTQ files before trimming. The results showed: ``` Per tile sequence quality: Failed Per base sequence …
-
Small secondary peak for per sequence GC content - FASTQC results (bulk RNA-seq)
written by Fossil •Hi, I am new to bioinformatics and would love some help, please. We did bulk paired-end **RNA-seq** with *Rattus norvegicus* muscle tissue (48 files, N=24). …
-
FastQC per base to total base calculator
written by jimmy0958073736 •Hi everyone I wonder one of the thing in FastQC. First I use FastQc to analysis data but I want to get some of contents …
-
RNAseq fastqc report some failures, how to solve it?
written by lovelymaoqin •I used fastqc to deal with my small RNA seq data, and according to the report I have some failures, do not know how to …
-
STAR Generating Genome Indices error
written by Balatheskulter •$ STAR --runThreadN 8 --runMode genomeGenerate --genomeFastaFiles Rsolani.fa Feb 22 12:00:15 ..... started STAR run Feb 22 12:00:15 ... starting to generate Genome files WARNING: …
-
how to remove warning and failures observed inQuality report by Fastqc for RNA-Seq data
written by aiswaryabioinfo •Hi All, I ran FastQC software on RNA-Seq data of Plant sample generated from illumina HiSeq platform. It all appears good (green) except : **In …
-
Isn't fastq file header suppose to have barcode sequence?
written by salamandraSo, I have ChIP-seq sample with this barcode: CGATGT and I want to remove the barcodes and adapters. But when looking to fastqc files in …
-
GC content for RNA-Seq data
written by sukesh1411 •Hi I am new to the rna-seq data analysis. I have rna-seq data of leaf. I would like to perform transcriptome assembly using trinity. Before …
-
FastQC low %A in per base sequence content
written by DuffHi I have some Illumina RNA seq data, 75bp paired end reads. I've run FastQC & trimmomatic and then re-run FastQC. Both before and after …
-
Quality report by Fastqc, Result Interpretation and Next step parameters
written by ravi.uhdnisHi All, I ran FastQC software on whole genome sequence (WGS) data of Human sample (with expected coverage 30X), generated from illumina HiSeq platform. It …
Looks like this data is not good, especially if you consistently have N's at specific cycles. Such data should not have been released by the sequencing facility. You can't remove N's since that will mess up reading frame.
You can filter out reads with N's using
reformat.shfrom BBMap suite by doing:or
(if reads are paired-end).
Thanks you for tools suggestion, I will test it.