Ejemplo n.º 1
0
		biochem.pre_washing()

	elif method == 'prime_flowcell':
		biochem.prime_flowcell()

	elif method == 'prime_fluidics_system':
		biochem.prime_fluidics_system()

	elif method == 'prime_reagent_paths':
		biochem.prime_reagent_paths()

	elif method == 'prime_syringe_pump':
		biochem.prime_syringe_pump()

	elif method == 'primer_walking':
		biochem.primer_walking()

	elif method == 'push_into_flowcell':
		print "INFO\t *\t--> Please, enter follow up reagent number and centering volume to push into flowcell [integers]: ",
		v = sys.stdin.readline().strip().split(' ')  # use stdin explicitly and remove trailing newline character
		biochem.push_into_flowcell(int(v[0]), int(v[1]))

	elif method == 'push_reagent_back':
		print "INFO\t *\t--> Please, enter the reagent number to push back and syringe speed [integers]: ",
		v = sys.stdin.readline().strip().split(' ')  # use stdin explicitly and remove trailing newline character
		biochem.push_reagent_back(int(v[0]), int(v[1]))

	elif method == 'run':
		biochem.run()

	elif method == 'syringe_pump_init':