In [16]:
gradientDNA_low = 5e-6
gradientDNA_high = 8e-6
cellDNA_low = 3e-15
cellDNA_high = 18e-15
print "Number of genome copies in the gradient: "
print ' High: {0:.2e}'.format(gradientDNA_high / cellDNA_low)
print ' Low: {0:.2e}'.format(gradientDNA_low / cellDNA_high)
In [17]:
mean_16S_copy = 4.2
print "Number of 16S rRNA copies in the gradient: "
print ' High: {0:.2e}'.format(gradientDNA_high / cellDNA_low * mean_16S_copy)
print ' Low: {0:.2e}'.format(gradientDNA_low / cellDNA_high * mean_16S_copy)
Notes:
In [20]:
total_abund_high = 1.12e10
total_abund_low = 1.17e9
print 'Relative abundance where taxon should be observed across most of a gradient: '
print ' High: {0:.2f}%'.format(1e8 / total_abund_high * 100)
print ' Low: {0:.2f}%'.format(1e8 / total_abund_low * 100)
Notes:
In [ ]: