Exemplo n.º 1
0
    # Initialize biochemistry object - cycle-name and flowcell-number 
    # need to be set later
    biochem = Biochem('WL1', int(sys.argv[1]))  
    method = sys.argv[2]
    log.info("---\t-\t--> Started %s method execution - biochem_utils.py" % \
                (method))



    # usage: biochem_utils.py fcnum cycle_ligation cyclename
    # cyclename must be a valid cyclename that has a nonamer/hyb
    # valve/port mapping in sequencing.cfg
    # cyclename can be either 3 or 4 chars in length
    if method == 'cycle_ligation':
        biochem.flowcell = int(sys.argv[1])
        biochem.cycle_name = sys.argv[3]
        biochem.cycle = biochem.cycle_name[0:3]
        biochem.cycle_ligation()


    # usage: biochem_utils.py fcnum flush_flowcell
    elif method == 'flush_flowcell':
        reagent = "Wash 1"
        if reagent == 'Wash 1':
            port = 9
        elif reagent == 'dH2O':
            port = 7

        biochem.flush_flowcell(9)
        #biochem.rinse(int(sys.argv[1]))