本文整理汇总了Python中autoprotocol.protocol.Protocol.acoustic_transfer方法的典型用法代码示例。如果您正苦于以下问题:Python Protocol.acoustic_transfer方法的具体用法?Python Protocol.acoustic_transfer怎么用?Python Protocol.acoustic_transfer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类autoprotocol.protocol.Protocol
的用法示例。
在下文中一共展示了Protocol.acoustic_transfer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_one_source
# 需要导入模块: from autoprotocol.protocol import Protocol [as 别名]
# 或者: from autoprotocol.protocol.Protocol import acoustic_transfer [as 别名]
def test_one_source(self):
p = Protocol()
echo = p.ref("echo", None, "384-echo", discard=True)
dest = p.ref("dest", None, "384-flat", discard=True)
p.acoustic_transfer(echo.wells(0,1).set_volume("2:microliter"),
dest.wells(0,1,2,3), "1:microliter", one_source=True)
self.assertTrue(p.instructions[-1].data["groups"][0]["transfer"][-1]["from"] == echo.well(1))
self.assertTrue(p.instructions[-1].data["groups"][0]["transfer"][0]["from"] == echo.well(0))
示例2: test_append
# 需要导入模块: from autoprotocol.protocol import Protocol [as 别名]
# 或者: from autoprotocol.protocol.Protocol import acoustic_transfer [as 别名]
def test_append(self):
p = Protocol()
echo = p.ref("echo", None, "384-echo", discard=True)
dest = p.ref("dest", None, "384-flat", discard=True)
dest2 = p.ref("dest2", None, "384-flat", discard=True)
p.acoustic_transfer(echo.well(0), dest.wells(1,3,5), "25:microliter")
self.assertTrue(len(p.instructions) == 1)
p.acoustic_transfer(echo.well(0), dest.wells(0,2,4), "25:microliter")
self.assertTrue(len(p.instructions) == 1)
p.acoustic_transfer(echo.well(0), dest.wells(0,2,4), "25:microliter",
droplet_size="0.50:microliter")
self.assertTrue(len(p.instructions) == 2)
p.acoustic_transfer(echo.well(0), dest2.wells(0,2,4), "25:microliter")
self.assertTrue(len(p.instructions) == 3)