Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Coverage / Depth of reads !

  • Public
By Neelam Jha 2204 days ago
# get total number of bases covered at MIN_COVERAGE_DEPTH or higher samtools mpileup mapping_result_sorted.bam | awk -v X="${MIN_COVERAGE_DEPTH}" '$4>=X' | wc -l 32876 # get length of reference genome bowtie2-inspect -s refgenome | awk '{ FS = "\t" } ; BEGIN{L=0}; {L=L+$3}; END{print L}' 45678