Skip to content

Commit

Permalink
working on Tutorial_HL_RoMa
Browse files Browse the repository at this point in the history
  • Loading branch information
qPCR4vir committed Aug 19, 2019
1 parent 9bc1160 commit 7753a84
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions protocols/tutorial_HL_RoMa/tutorial_HL_RoMa.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Tutorial_HL_RoMa(Evo200_FLI):
"""

name = "Tutorial_HL. Dilutions."
name = "Tutorial_HL_RoMa. Dilutions."
min_s, max_s = 1, 96 # 96 well plate ??

def def_versions(self): # for now just ignore the variants
Expand All @@ -42,12 +42,14 @@ def __init__(self,
firstTip = None,
run_name: str = ""):

this = Path(__file__).parent

Evo200_FLI.__init__(self,
GUI = GUI,
num_of_samples=num_of_samples or Tutorial_HL_RoMa.max_s,
num_of_samples = num_of_samples or Tutorial_HL_RoMa.max_s,
worktable_template_filename = worktable_template_filename or
'../EvoScripts/wt_templates/tutorial_hl_dilution.ewt',
output_filename = output_filename or '../current/RoMa_HL',
this / 'tutorial_hl_RoMa_dilution.ewt',
output_filename = output_filename or this / 'scripts' / 'RoMa_HL',
firstTip = firstTip,
run_name = run_name)

Expand All @@ -60,7 +62,7 @@ def Run(self):
assert 1 <= self.num_of_samples <= Tutorial_HL_RoMa.max_s, "Using 96 well plates."
wt = self.worktable

instr.comment('Transfer 50 uL to a moved plate.').exec()
self.comment('Transfer 50 uL to a moved plate.')

# Get Labwares (Cuvette, eppys, etc.) from the work table -----------------------------------------------
plate_A = wt.get_labware("plate")
Expand Down

0 comments on commit 7753a84

Please sign in to comment.