Skip to content

Commit

Permalink
update deck position and mix vol in extraction protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
dany-fu authored and DAMP committed Oct 16, 2020
1 parent f95202b commit 2cbe1e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions rna_extraction_magmax/rna_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
}, {
'NAME': 'opentrons_96_tiprack_300ul',
'SLOT': 9,
'LABEL': 'Filter Tip LG7'
'LABEL': 'Filter Tip LG9'
}, {
'NAME': 'opentrons_96_tiprack_300ul',
'SLOT': 11,
'LABEL': 'Filter Tip LG9'
'LABEL': 'Filter Tip LG11'
}]

# Instruments
Expand Down
8 changes: 4 additions & 4 deletions rna_extraction_magmax/rna_extraction_magmax.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@ def add_beads(num_cols=1, pipette=None, source=[], dest=[]):
reagent_vol -= vol_transfer

def add_ms2(num_cols=1, pipette=None, source=None, dest=[]):
for c in range(num_cols):
transfer(vol=VOL_PK, pipette=None,
source=source[0], dest=dest[c][0],
mix_before=(2, VOL_10), mix_after=(3, VOL_SAMPLE),
for c in range(2):
transfer(vol=VOL_PK, pipette=p20,
source=source, dest=dest[c],
mix_before=(2, VOL_10), mix_after=(3, VOL_10),
touch_tip=(TOUCH_RADIUS_SM_LG, TOUCH_RADIUS_SM_LG))

def discard_supernatant(num_cols=1, pipette=None, source=[], dest=[], vol=0):
Expand Down

0 comments on commit 2cbe1e0

Please sign in to comment.