Ejemplo n.º 1
0
 def n_templates(self):
     '''Get the time course of the number of templates to PCR, limiting depth'''
     from hivwholeseq.patients.get_template_number import get_template_number
     n = [get_template_number(dilstr) for dilstr in self.samples.dilutions]
     n = np.ma.masked_invalid(n)
     return n
Ejemplo n.º 2
0
 def n_templates(self):
     '''Get the time course of the number of templates to PCR, limiting depth'''
     from hivwholeseq.patients.get_template_number import get_template_number
     n = [get_template_number(dilstr) for dilstr in self.samples.dilutions]
     n = np.ma.masked_invalid(n)
     return n
Ejemplo n.º 3
0
 def get_n_templates_dilutions(self):
     '''Get the time course of the number of templates to PCR, limiting depth'''
     from hivwholeseq.patients.get_template_number import get_template_number
     return get_template_number(self.dilutions)