In [ ]:
import pandas as pd

In [ ]:
sra = pd.read_table("SraRunTable.txt")

Coefficent of Variation in read number

Well, this is of the number of Mbp, but the reads are all the same length so this is what we want. Looks like it's 0.12.


In [ ]:
sra.MBases_l.std() /  sra.MBases_l.mean()

In [ ]: