Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Extract the mapped and unmapped reads !

  • Public
By Abhinav 583 days ago
PROCESSORS=20 #Single_End_Layout: samtools view --threads $PROCESSORS -b -F 4 in.bam > mapped.bam samtools view --threads $PROCESSORS -b -f 4 in.bam > unmapped.bam #Paired_End_Layout samtools view --threads $PROCESSORS -b -f 2 in.bam > mapped.bam samtools view --threads $PROCESSORS -b -F 2 in.bam > unmapped.bam