Exemplo n.º 1
0
def make_fam_abs_singleplex_well(well_name, sample_name, fam_target=None):
    well = QLWell(well_name,
        sample_name=sample_name,
        experiment_name='ABS',
        experiment_type=QLWell.EXP_TYPE_ABSOLUTE_QUANTITATION)
    well.channels[0] = make_unknown_channel(0, target=fam_target)
    well.channels[1] = make_unused_channel(1)
    well.processed = True
    return well
Exemplo n.º 2
0
def make_unused_well(well_name):
    well = QLWell(well_name)
    well.channels[0] = make_unused_channel(0)
    well.channels[1] = make_unused_channel(1)
    well.processed = True
    return well