Dear all
I'm new on your forum and on the NGS bio informatic analysis !
Sorry for my english !
I need some help from specialists...i try to analyse NGS results for small non coding RNA...
until now i have made :
checked the qulity of the reads
removed the adaptators...
launched my first map (bowtie). And i have found that the half of my reads don't mapp my genom of reference...
and i try to understand why !
so i try to keep all the unmapped reads, to see what they are :
i have used bwa to keep my unmapped reads and i have obtained a SAI file.
I have converted the SAI file into BAM file
Now i will try to creat a new BAM file with only unmapped reads with this Command :
samtools view fichier bam.bam | awk '$3 =="*"' | samtools view -bS - > no_maps.bam
and after i will convert this BAM file into Fastq file with :
java -jar -Xmx6g ~/bin/SamToFastq.jar INPUT=no_maps.bam F=no_map.fastq VALIDATION_STRINGENCY=LENIENT
A very important think :
i have found these 2 commands, but i don't understand everything...that why i need your help !
If someone can explain me, it will be great
Thx
I'm new on your forum and on the NGS bio informatic analysis !
Sorry for my english !
I need some help from specialists...i try to analyse NGS results for small non coding RNA...
until now i have made :
checked the qulity of the reads
removed the adaptators...
launched my first map (bowtie). And i have found that the half of my reads don't mapp my genom of reference...
and i try to understand why !
so i try to keep all the unmapped reads, to see what they are :
i have used bwa to keep my unmapped reads and i have obtained a SAI file.
I have converted the SAI file into BAM file
Now i will try to creat a new BAM file with only unmapped reads with this Command :
samtools view fichier bam.bam | awk '$3 =="*"' | samtools view -bS - > no_maps.bam
and after i will convert this BAM file into Fastq file with :
java -jar -Xmx6g ~/bin/SamToFastq.jar INPUT=no_maps.bam F=no_map.fastq VALIDATION_STRINGENCY=LENIENT
A very important think :
i have found these 2 commands, but i don't understand everything...that why i need your help !
If someone can explain me, it will be great
Thx
Comment