User Tools

Site Tools


384_well_positioning

Warning: Trying to access array offset on value of type bool in /var/www/html/dokuwiki/inc/html.php on line 1164

Warning: Trying to access array offset on value of type bool in /var/www/html/dokuwiki/inc/html.php on line 1168

Warning: Trying to access array offset on value of type bool in /var/www/html/dokuwiki/inc/html.php on line 1171

Warning: Trying to access array offset on value of type bool in /var/www/html/dokuwiki/inc/html.php on line 1172

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
384_well_positioning [2020/09/25 18:54]
richard [Create an object]
384_well_positioning [2021/08/16 22:22] (current)
Line 8: Line 8:
  
 <figure label> <figure label>
-{{:384_wellplate.png?300 |Setting up 384 well plate as an object}}+{{ :384plate_positioning_steps.png?600 |Setting up 384 well plate as an object}}
 <caption>**Setting up a 384 well plate as an object**</caption> <caption>**Setting up a 384 well plate as an object**</caption>
 </figure> </figure>
  
-After setting the physical characteristics then you got to find a place to position the object on the plate. This positioning is also set up in the Objects view. +After setting the physical characteristics then you got to find a place to position the object on the plate. This positioning is also set up in the **Objects** view. While adjusting the position of the object by seeing if the pipettes are actually going into the microwell, you can input the coordinates (PositionX and PositionY) in the **Objects** view. You can verify that the object is positioned correctly (factoring the margins, well number and well size) by hovering your mouse over the plate deck display since as the mouse is moving over this image, its XY location is displayed at the top of this image
  
 +Once you have the positioning correctly set up, you can start design macros. To do this you go to the "Build Macro" view, there you go to the **Motion** section (Figure 1C), there you can select the object you want to move to (384well) and what row. Then you insert that macro into the **Macro assembler** (Figure 1D), then you save that then go to the **Edit/Run Macro** (Figure 1E) view which is where you can run, edit and save the macro. 
 +----
 +
 +A small python script is used to traverse all the wells. 
 +
 +<code>
 +import re
 +
 +def runner(ym):
 + print("G1Z40F3000")
 + print("G1X"+str(84+(1.1/12 * ym))+"Y"+str(174.7+(ym*4.5))+"F3000")
 + print("G1Z43F3000")
 + print("G1Z46F500")
 +
 +for i in range(0,24):
 +  print("//"+str(i+1))
 +  runner(i)
 +</code>
 +
 +
 +----
 +{{youtube>AWKyMx1sioo?&rel=0 | 384 plate positioning}}
  
  
384_well_positioning.1601060089.txt.gz ยท Last modified: 2021/08/16 22:21 (external edit)