Skip to content

Commit

Permalink
Merge pull request #69 from Gaorav-Gupta-Lab/Development
Browse files Browse the repository at this point in the history
Assorted fixes to keep compatible with PCR.py
  • Loading branch information
pkMyt1 authored Dec 24, 2024
2 parents 0cd24c0 + eb87931 commit 4d35c67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpentronsGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def select_file(self):
format(os.sep, os.getlogin())))

if os.path.basename(self.path_to_tsv) == "TempTSV.tsv":
self.warning_report("Cannot use file name TempTSV.tsv.")
self.warning_report("Cannot use file name TempTSV.tsv as input file.")
elif self.path_to_tsv:
shutil.copyfile(self.path_to_tsv, self.temp_tsv_path)
else:
Expand Down
3 changes: 2 additions & 1 deletion Utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ def tip_touch():

def distribute_reagents(pipette, source_well, destination_wells, dispense_vol):
"""
This is not used in the Error Checking Routine.
Dispense master mix using the distribute function.
@param pipette:
@param source_well:
Expand All @@ -357,7 +358,7 @@ def distribute_reagents(pipette, source_well, destination_wells, dispense_vol):
pipette.flow_rate.dispense = 10

pipette.distribute(volume=dispense_vol, source=source_well, dest=destination_wells,
touch_tip=True, blow_out=True, disposal_volume=10, blowout_location='source well')
touch_tip=True, blow_out=True, disposal_volume=1, blowout_location='source well')

pipette.flow_rate.aspirate = default_rate
pipette.flow_rate.dispense = default_rate
Expand Down

0 comments on commit 4d35c67

Please sign in to comment.