Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Thread

  • By LEGE 1623 days ago
    #Estimate the #insert #size with mapped reads $ head -10000 mappings.sam | awk '{ if ($9 > 0) { N+=1; S+=$9; S2+=$9*$9 }} END { M=S/N; print "n="N", mean="M", stdev="sqrt ((S2-M*M*N)/(N-1))}'