From 90321111ef56d7af4a738935b547c910d28c0bef Mon Sep 17 00:00:00 2001 From: ncdiehl11 Date: Tue, 2 Jan 2024 16:12:33 -0500 Subject: [PATCH 01/10] remove current modifier (no longer available in API) --- protoBuilds/15dc4c/elisa.ot2.apiv2.py.json | 2 +- protocols/15dc4c/elisa.ot2.apiv2.py | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/protoBuilds/15dc4c/elisa.ot2.apiv2.py.json b/protoBuilds/15dc4c/elisa.ot2.apiv2.py.json index 04bb5f5e0..1a223d964 100644 --- a/protoBuilds/15dc4c/elisa.ot2.apiv2.py.json +++ b/protoBuilds/15dc4c/elisa.ot2.apiv2.py.json @@ -1,5 +1,5 @@ { - "content": "import math\nfrom opentrons import protocol_api\nfrom opentrons.types import Point\n\nmetadata = {\n 'protocolName': 'SMC IL-17A High Sensitivity Immunoassay Kit',\n 'author': 'Nick Diehl ',\n 'source': 'Custom Protocol Request',\n 'apiLevel': '2.13'\n}\n\nDO_MIX = True\nDO_INCUBATIONS = True\nDROP = True\nZ_OFFSET_RESERVOIR = 1.0\nVOL_SAMPLE = 100.0\nELUTION_TYPE = 'SMCxPRO' # Errena / SMCxPRO\n\n\ndef run(ctx):\n\n ctx.max_speeds['X'] = 200\n ctx.max_speeds['Y'] = 200\n ctx.max_speeds['Z'] = 200\n ctx.max_speeds['A'] = 200\n\n # [num_samples, mount_m300, m20] = get_values( # noqa: F821\n # 'num_samples', 'mount_m300', 'mount_m20')\n num_samples, mount_m300, mount_m20 = 60, 'left', 'right'\n\n elution_plate = ctx.load_labware('aurora_384_wellplate_100ul', '1',\n 'elution plate')\n sample_plate = ctx.load_labware('axygen_96_wellplate_500ul', '2',\n 'sample preparation plate')\n standard_plate = ctx.load_labware('axygen_96_wellplate_2000ul', '4',\n 'standards plate')\n assay_plate = ctx.load_labware('axygen_96_wellplate_500ul', '5',\n 'assay plate')\n assay_plate_on_magnet = ctx.load_labware(\n 'axygenspheremag_96_wellplate_500ul', '7', 'sphere mag plate')\n reservoir = ctx.load_labware('nest_12_reservoir_15ml', '8',\n 'reagents')\n tipracks200 = [\n ctx.load_labware('opentrons_96_filtertiprack_200ul', slot)\n for slot in ['10', '11']]\n tipracks20 = [\n ctx.load_labware('opentrons_96_filtertiprack_20ul', slot)\n for slot in ['3', '6', '9']]\n\n # pipettes\n m300 = ctx.load_instrument('p300_multi_gen2', mount_m300,\n tip_racks=tipracks200)\n m20 = ctx.load_instrument('p20_multi_gen2', mount_m20,\n tip_racks=tipracks20)\n\n def pick_up(pip):\n try:\n pip.pick_up_tip()\n except protocol_api.labware.OutOfTipsError:\n ctx.pause(\n f'Replace P{pip.max_volume} pipette tips before resuming.')\n pip.reset_tipracks()\n pip.pick_up_tip()\n\n def wick(pip, well, side=1):\n if well.diameter:\n radius = well.diameter/2\n else:\n radius = well.width/2\n pip.move_to(well.bottom().move(Point(x=side*radius*0.8, z=3)))\n\n def slow_withdraw(pip, well, delay_seconds=1):\n ctx.delay(seconds=delay_seconds)\n ctx.max_speeds['A'] = 25\n ctx.max_speeds['Z'] = 25\n pip.move_to(well.top())\n del ctx.max_speeds['A']\n del ctx.max_speeds['Z']\n\n # reagents\n num_cols = math.ceil(num_samples/5)\n\n standard_diluent = reservoir.rows()[0][0]\n sample_diluent = reservoir.rows()[0][1]\n coated_beads = reservoir.rows()[0][2]\n detection_antibody = reservoir.rows()[0][3]\n # elution_buffer_b = reservoir.rows()[0][4]\n buffer_d = reservoir.rows()[0][5]\n samples = sample_plate.rows()[0][:num_cols]\n\n \"\"\"\n Create and plate standards\n \"\"\"\n # single tip with P300\n default_current = 0.8\n current_modifier = 1/8\n current = default_current*current_modifier\n ctx._hw_manager.hardware._attached_instruments[\n m300._implementation.get_mount()\n ].update_config_item('pick_up_current', current)\n\n tips_standard_dilution = m300.tip_racks[-1].rows()[-1]\n standard_dest_sets = [col[:3] for col in assay_plate.columns()]\n standard_dil_vols = [1000]*3 + [500]*8\n\n # pre-add diluent\n m300.pick_up_tip(tips_standard_dilution[0])\n for vol, d in zip(standard_dil_vols, standard_plate.rows()[0][1:]):\n num_trans = math.ceil(vol/tips_standard_dilution[0].max_volume)\n vol_per_trans = round(vol/num_trans, 1)\n for _ in range(num_trans):\n m300.aspirate(vol_per_trans,\n standard_diluent.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m300, standard_diluent)\n m300.dispense(vol, d.bottom(2))\n slow_withdraw(m300, d)\n\n # perform dilution\n for tip, s, d in zip(tips_standard_dilution,\n standard_plate.rows()[0][:10],\n standard_plate.rows()[0][1:11]):\n num_trans = math.ceil(500/tip.max_volume)\n vol_per_trans = round(vol/num_trans, 1)\n if not m300.has_tip:\n m300.pick_up_tip(tip)\n for n in range(num_trans):\n m300.aspirate(vol_per_trans, s.bottom(2))\n slow_withdraw(m300, s)\n m300.dispense(vol_per_trans, d.bottom(2))\n if n == num_trans - 1 and DO_MIX:\n m300.mix(5, 100, d.bottom(2))\n slow_withdraw(m300, d)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n if DROP:\n tips_standard_transfer = m300.tip_racks[-1].rows()[-2]\n else:\n tips_standard_transfer = m300.tip_racks[-1].rows()[-1]\n\n # transfer to assay plate\n for tip, s, dest_set in zip(tips_standard_transfer,\n standard_plate.rows()[0],\n standard_dest_sets):\n m300.pick_up_tip(tip)\n num_asp = math.ceil(len(dest_set)*100/tip.max_volume)\n distribution_sets = [\n dest_set[i*2:(i+1)*2]\n if i < num_asp - 1\n else dest_set[i*2:]\n for i in range(num_asp)\n ]\n for d_set in distribution_sets:\n m300.aspirate(100*len(d_set), s.bottom(2))\n for d in d_set:\n m300.dispense(100, d.bottom(1))\n slow_withdraw(m300, d)\n\n # for d in dest_set:\n # m300.aspirate(100, s.bottom(2))\n # slow_withdraw(m300, s)\n # m300.dispense(100, d.bottom(1))\n # slow_withdraw(m300, d)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n \"\"\"\n Dilute and transfer samples to assay plate\n \"\"\"\n current_modifier = 5/8\n current = default_current*current_modifier\n ctx._hw_manager.hardware._attached_instruments[\n m300._implementation.get_mount()\n ].update_config_item('pick_up_current', current)\n\n if DROP:\n tips_sample_transfer = m300.tip_racks[-1].rows()[1]\n else:\n tips_sample_transfer = m300.tip_racks[-1].rows()[3]\n\n sample_dests = assay_plate.rows()[3][:num_cols]\n num_trans = math.ceil(VOL_SAMPLE/tips_sample_transfer[0].max_volume)\n vol_per_trans = round(VOL_SAMPLE/num_trans, 1)\n for tip, s, d in zip(tips_sample_transfer, samples, sample_dests):\n m300.pick_up_tip(tip)\n for _ in range(num_trans):\n m300.aspirate(vol_per_trans,\n sample_diluent.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m300, sample_diluent)\n m300.dispense(vol_per_trans, s.top(-1))\n if DO_MIX:\n m300.mix(5, 100, s.bottom(2))\n m300.aspirate(100, s.bottom(2))\n slow_withdraw(m300, s)\n m300.dispense(100, d.bottom(2))\n slow_withdraw(m300, d)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n \"\"\"\n Add coated beads\n \"\"\"\n ctx.pause('Add coated beads to reservoir channel 3.')\n standards_and_samples = assay_plate.rows()[0]\n pick_up(m300)\n for i, d in enumerate(standards_and_samples):\n # pre-air_gap\n m300.aspirate(40, coated_beads.top())\n if i == 0 and DO_MIX:\n for _ in range(5):\n m300.aspirate(100, coated_beads.bottom(2))\n m300.dispense(100, coated_beads.bottom(15))\n ctx.delay(seconds=1)\n m300.aspirate(100, coated_beads.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m300, coated_beads)\n m300.flow_rate.dispense *= 2\n m300.dispense(m300.current_volume, d.top(-1))\n m300.move_to(d.top().move(Point(x=d.diameter/2, z=-1)))\n m300.flow_rate.dispense /= 2\n ctx.delay(seconds=1)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n ctx.pause('Proceed with Target Capture incubation and Post-Capture Wash.')\n\n \"\"\"\n Detection\n \"\"\"\n standards_and_samples = assay_plate_on_magnet.rows()[0]\n vol_max = m300.tip_racks[0].wells()[0].max_volume - 20 # extra\n num_asp_sets = math.ceil(len(standards_and_samples)*20/vol_max)\n num_dests_per_asp = math.ceil(len(standards_and_samples)/num_asp_sets)\n detection_antibody_sets = [\n standards_and_samples[i*num_dests_per_asp:(i+1)*num_dests_per_asp]\n if i < num_asp_sets - 1\n else standards_and_samples[i*num_dests_per_asp:]\n for i in range(num_asp_sets)\n ]\n pick_up(m300)\n for d_set in detection_antibody_sets:\n # void excess if necessary\n if m300.current_volume > 0:\n m300.dispense(m300.current_volume, detection_antibody.top(-1))\n m300.aspirate(20*len(d_set) + 20,\n detection_antibody.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m20, detection_antibody)\n for d in d_set:\n m300.dispense(20, d.top(-1))\n ctx.delay(seconds=2)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n ctx.pause('Proceed with Detection incubation and Post-Detection Wash \\\nand Shake.')\n\n \"\"\"\n Elution\n \"\"\"\n # for d in standards_and_samples:\n # pick_up(m20)\n # # reverse pipetting\n # m20.aspirate(15, elution_buffer_b.bottom(Z_OFFSET_RESERVOIR))\n # slow_withdraw(m20, elution_buffer_b)\n # m20.dispense(10, d.bottom(0.5))\n # slow_withdraw(m20, d)\n # if DROP:\n # m20.drop_tip()\n # else:\n # m20.return_tip()\n\n if ELUTION_TYPE == 'Erenna':\n ctx.pause('Proceed with Elution incubation')\n\n # add buffer D to elution plate\n elution_dests = elution_plate.rows()[0][::2]\n pick_up(m20)\n m20.aspirate(5, buffer_d)\n for d in elution_dests:\n # reverse pipetting\n m20.aspirate(10, buffer_d.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m20, buffer_d)\n m20.dispense(10, d.bottom(0.5))\n wick(m20, d)\n slow_withdraw(m20, d)\n\n # void extra volume\n m20.dispense(m20.current_volume, buffer_d)\n slow_withdraw(m20, buffer_d)\n\n m20.flow_rate.aspirate /= 10\n for s, d in zip(standards_and_samples, elution_dests):\n if not m20.has_tip:\n pick_up(m20)\n m20.aspirate(20, s.bottom(0.5))\n slow_withdraw(m20, s)\n m20.dispense(20, d.bottom(0.5))\n slow_withdraw(m20, d)\n if DROP:\n m20.drop_tip()\n else:\n m20.return_tip()\n\n m20.flow_rate.aspirate *= 10\n\n elif ELUTION_TYPE == 'SMCxPRO':\n\n ctx.pause('Proceed with Elution incubation. Place clean assay plate \\\nin slot 5')\n\n # add buffer D to mag plate and transfer elution to 384-plate\n elution_dests_2 = elution_plate.rows()[0][::2]\n for s, d in zip(standards_and_samples, elution_dests_2):\n pick_up(m20)\n\n m20.aspirate(10, buffer_d.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m20, buffer_d)\n m20.dispense(10, s.bottom(0.5))\n if DO_MIX:\n m20.mix(5, 10, s.bottom(0.5))\n m20.flow_rate.aspirate /= 5\n m20.aspirate(20, s.bottom(0.2))\n m20.flow_rate.aspirate *= 5\n slow_withdraw(m20, s)\n m20.dispense(20, d.bottom(0.5))\n slow_withdraw(m20, d)\n if DROP:\n m20.drop_tip()\n else:\n m20.return_tip()\n\n ctx.comment('Proceed with plate reading.')\n", + "content": "import math\nfrom opentrons import protocol_api\nfrom opentrons.types import Point\n\nmetadata = {\n 'protocolName': 'SMC IL-17A High Sensitivity Immunoassay Kit',\n 'author': 'Nick Diehl ',\n 'source': 'Custom Protocol Request',\n 'apiLevel': '2.13'\n}\n\nDO_MIX = True\nDO_INCUBATIONS = True\nDROP = True\nZ_OFFSET_RESERVOIR = 1.0\nVOL_SAMPLE = 100.0\nELUTION_TYPE = 'SMCxPRO' # Errena / SMCxPRO\n\n\ndef run(ctx):\n\n ctx.max_speeds['X'] = 200\n ctx.max_speeds['Y'] = 200\n ctx.max_speeds['Z'] = 200\n ctx.max_speeds['A'] = 200\n\n # [num_samples, mount_m300, m20] = get_values( # noqa: F821\n # 'num_samples', 'mount_m300', 'mount_m20')\n num_samples, mount_m300, mount_m20 = 60, 'left', 'right'\n\n elution_plate = ctx.load_labware('aurora_384_wellplate_100ul', '1',\n 'elution plate')\n sample_plate = ctx.load_labware('axygen_96_wellplate_500ul', '2',\n 'sample preparation plate')\n standard_plate = ctx.load_labware('axygen_96_wellplate_2000ul', '4',\n 'standards plate')\n assay_plate = ctx.load_labware('axygen_96_wellplate_500ul', '5',\n 'assay plate')\n assay_plate_on_magnet = ctx.load_labware(\n 'axygenspheremag_96_wellplate_500ul', '7', 'sphere mag plate')\n reservoir = ctx.load_labware('nest_12_reservoir_15ml', '8',\n 'reagents')\n tipracks200 = [\n ctx.load_labware('opentrons_96_filtertiprack_200ul', slot)\n for slot in ['10', '11']]\n tipracks20 = [\n ctx.load_labware('opentrons_96_filtertiprack_20ul', slot)\n for slot in ['3', '6', '9']]\n\n # pipettes\n m300 = ctx.load_instrument('p300_multi_gen2', mount_m300,\n tip_racks=tipracks200)\n m20 = ctx.load_instrument('p20_multi_gen2', mount_m20,\n tip_racks=tipracks20)\n\n def pick_up(pip):\n try:\n pip.pick_up_tip()\n except protocol_api.labware.OutOfTipsError:\n ctx.pause(\n f'Replace P{pip.max_volume} pipette tips before resuming.')\n pip.reset_tipracks()\n pip.pick_up_tip()\n\n def wick(pip, well, side=1):\n if well.diameter:\n radius = well.diameter/2\n else:\n radius = well.width/2\n pip.move_to(well.bottom().move(Point(x=side*radius*0.8, z=3)))\n\n def slow_withdraw(pip, well, delay_seconds=1):\n ctx.delay(seconds=delay_seconds)\n ctx.max_speeds['A'] = 25\n ctx.max_speeds['Z'] = 25\n pip.move_to(well.top())\n del ctx.max_speeds['A']\n del ctx.max_speeds['Z']\n\n # reagents\n num_cols = math.ceil(num_samples/5)\n\n standard_diluent = reservoir.rows()[0][0]\n sample_diluent = reservoir.rows()[0][1]\n coated_beads = reservoir.rows()[0][2]\n detection_antibody = reservoir.rows()[0][3]\n # elution_buffer_b = reservoir.rows()[0][4]\n buffer_d = reservoir.rows()[0][5]\n samples = sample_plate.rows()[0][:num_cols]\n\n \"\"\"\n Create and plate standards\n \"\"\"\n # single tip with P300\n tips_standard_dilution = m300.tip_racks[-1].rows()[-1]\n standard_dest_sets = [col[:3] for col in assay_plate.columns()]\n standard_dil_vols = [1000]*3 + [500]*8\n\n # pre-add diluent\n m300.pick_up_tip(tips_standard_dilution[0])\n for vol, d in zip(standard_dil_vols, standard_plate.rows()[0][1:]):\n num_trans = math.ceil(vol/tips_standard_dilution[0].max_volume)\n vol_per_trans = round(vol/num_trans, 1)\n for _ in range(num_trans):\n m300.aspirate(vol_per_trans,\n standard_diluent.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m300, standard_diluent)\n m300.dispense(vol, d.bottom(2))\n slow_withdraw(m300, d)\n\n # perform dilution\n for tip, s, d in zip(tips_standard_dilution,\n standard_plate.rows()[0][:10],\n standard_plate.rows()[0][1:11]):\n num_trans = math.ceil(500/tip.max_volume)\n vol_per_trans = round(vol/num_trans, 1)\n if not m300.has_tip:\n m300.pick_up_tip(tip)\n for n in range(num_trans):\n m300.aspirate(vol_per_trans, s.bottom(2))\n slow_withdraw(m300, s)\n m300.dispense(vol_per_trans, d.bottom(2))\n if n == num_trans - 1 and DO_MIX:\n m300.mix(5, 100, d.bottom(2))\n slow_withdraw(m300, d)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n if DROP:\n tips_standard_transfer = m300.tip_racks[-1].rows()[-2]\n else:\n tips_standard_transfer = m300.tip_racks[-1].rows()[-1]\n\n # transfer to assay plate\n for tip, s, dest_set in zip(tips_standard_transfer,\n standard_plate.rows()[0],\n standard_dest_sets):\n m300.pick_up_tip(tip)\n num_asp = math.ceil(len(dest_set)*100/tip.max_volume)\n distribution_sets = [\n dest_set[i*2:(i+1)*2]\n if i < num_asp - 1\n else dest_set[i*2:]\n for i in range(num_asp)\n ]\n for d_set in distribution_sets:\n m300.aspirate(100*len(d_set), s.bottom(2))\n for d in d_set:\n m300.dispense(100, d.bottom(1))\n slow_withdraw(m300, d)\n\n # for d in dest_set:\n # m300.aspirate(100, s.bottom(2))\n # slow_withdraw(m300, s)\n # m300.dispense(100, d.bottom(1))\n # slow_withdraw(m300, d)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n \"\"\"\n Dilute and transfer samples to assay plate\n \"\"\"\n\n if DROP:\n tips_sample_transfer = m300.tip_racks[-1].rows()[1]\n else:\n tips_sample_transfer = m300.tip_racks[-1].rows()[3]\n\n sample_dests = assay_plate.rows()[3][:num_cols]\n num_trans = math.ceil(VOL_SAMPLE/tips_sample_transfer[0].max_volume)\n vol_per_trans = round(VOL_SAMPLE/num_trans, 1)\n for tip, s, d in zip(tips_sample_transfer, samples, sample_dests):\n m300.pick_up_tip(tip)\n for _ in range(num_trans):\n m300.aspirate(vol_per_trans,\n sample_diluent.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m300, sample_diluent)\n m300.dispense(vol_per_trans, s.top(-1))\n if DO_MIX:\n m300.mix(5, 100, s.bottom(2))\n m300.aspirate(100, s.bottom(2))\n slow_withdraw(m300, s)\n m300.dispense(100, d.bottom(2))\n slow_withdraw(m300, d)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n \"\"\"\n Add coated beads\n \"\"\"\n ctx.pause('Add coated beads to reservoir channel 3.')\n standards_and_samples = assay_plate.rows()[0]\n pick_up(m300)\n for i, d in enumerate(standards_and_samples):\n # pre-air_gap\n m300.aspirate(40, coated_beads.top())\n if i == 0 and DO_MIX:\n for _ in range(5):\n m300.aspirate(100, coated_beads.bottom(2))\n m300.dispense(100, coated_beads.bottom(15))\n ctx.delay(seconds=1)\n m300.aspirate(100, coated_beads.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m300, coated_beads)\n m300.flow_rate.dispense *= 2\n m300.dispense(m300.current_volume, d.top(-1))\n m300.move_to(d.top().move(Point(x=d.diameter/2, z=-1)))\n m300.flow_rate.dispense /= 2\n ctx.delay(seconds=1)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n ctx.pause('Proceed with Target Capture incubation and Post-Capture Wash.')\n\n \"\"\"\n Detection\n \"\"\"\n standards_and_samples = assay_plate_on_magnet.rows()[0]\n vol_max = m300.tip_racks[0].wells()[0].max_volume - 20 # extra\n num_asp_sets = math.ceil(len(standards_and_samples)*20/vol_max)\n num_dests_per_asp = math.ceil(len(standards_and_samples)/num_asp_sets)\n detection_antibody_sets = [\n standards_and_samples[i*num_dests_per_asp:(i+1)*num_dests_per_asp]\n if i < num_asp_sets - 1\n else standards_and_samples[i*num_dests_per_asp:]\n for i in range(num_asp_sets)\n ]\n pick_up(m300)\n for d_set in detection_antibody_sets:\n # void excess if necessary\n if m300.current_volume > 0:\n m300.dispense(m300.current_volume, detection_antibody.top(-1))\n m300.aspirate(20*len(d_set) + 20,\n detection_antibody.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m20, detection_antibody)\n for d in d_set:\n m300.dispense(20, d.top(-1))\n ctx.delay(seconds=2)\n if DROP:\n m300.drop_tip()\n else:\n m300.return_tip()\n\n ctx.pause('Proceed with Detection incubation and Post-Detection Wash \\\nand Shake.')\n\n \"\"\"\n Elution\n \"\"\"\n # for d in standards_and_samples:\n # pick_up(m20)\n # # reverse pipetting\n # m20.aspirate(15, elution_buffer_b.bottom(Z_OFFSET_RESERVOIR))\n # slow_withdraw(m20, elution_buffer_b)\n # m20.dispense(10, d.bottom(0.5))\n # slow_withdraw(m20, d)\n # if DROP:\n # m20.drop_tip()\n # else:\n # m20.return_tip()\n\n if ELUTION_TYPE == 'Erenna':\n ctx.pause('Proceed with Elution incubation')\n\n # add buffer D to elution plate\n elution_dests = elution_plate.rows()[0][::2]\n pick_up(m20)\n m20.aspirate(5, buffer_d)\n for d in elution_dests:\n # reverse pipetting\n m20.aspirate(10, buffer_d.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m20, buffer_d)\n m20.dispense(10, d.bottom(0.5))\n wick(m20, d)\n slow_withdraw(m20, d)\n\n # void extra volume\n m20.dispense(m20.current_volume, buffer_d)\n slow_withdraw(m20, buffer_d)\n\n m20.flow_rate.aspirate /= 10\n for s, d in zip(standards_and_samples, elution_dests):\n if not m20.has_tip:\n pick_up(m20)\n m20.aspirate(20, s.bottom(0.5))\n slow_withdraw(m20, s)\n m20.dispense(20, d.bottom(0.5))\n slow_withdraw(m20, d)\n if DROP:\n m20.drop_tip()\n else:\n m20.return_tip()\n\n m20.flow_rate.aspirate *= 10\n\n elif ELUTION_TYPE == 'SMCxPRO':\n\n ctx.pause('Proceed with Elution incubation. Place clean assay plate \\\nin slot 5')\n\n # add buffer D to mag plate and transfer elution to 384-plate\n elution_dests_2 = elution_plate.rows()[0][::2]\n for s, d in zip(standards_and_samples, elution_dests_2):\n pick_up(m20)\n\n m20.aspirate(10, buffer_d.bottom(Z_OFFSET_RESERVOIR))\n slow_withdraw(m20, buffer_d)\n m20.dispense(10, s.bottom(0.5))\n if DO_MIX:\n m20.mix(5, 10, s.bottom(0.5))\n m20.flow_rate.aspirate /= 5\n m20.aspirate(20, s.bottom(0.2))\n m20.flow_rate.aspirate *= 5\n slow_withdraw(m20, s)\n m20.dispense(20, d.bottom(0.5))\n slow_withdraw(m20, d)\n if DROP:\n m20.drop_tip()\n else:\n m20.return_tip()\n\n ctx.comment('Proceed with plate reading.')\n", "custom_labware_defs": [ { "brand": { diff --git a/protocols/15dc4c/elisa.ot2.apiv2.py b/protocols/15dc4c/elisa.ot2.apiv2.py index 572c7a55b..fcbfe1e3d 100644 --- a/protocols/15dc4c/elisa.ot2.apiv2.py +++ b/protocols/15dc4c/elisa.ot2.apiv2.py @@ -92,13 +92,6 @@ def slow_withdraw(pip, well, delay_seconds=1): Create and plate standards """ # single tip with P300 - default_current = 0.8 - current_modifier = 1/8 - current = default_current*current_modifier - ctx._hw_manager.hardware._attached_instruments[ - m300._implementation.get_mount() - ].update_config_item('pick_up_current', current) - tips_standard_dilution = m300.tip_racks[-1].rows()[-1] standard_dest_sets = [col[:3] for col in assay_plate.columns()] standard_dil_vols = [1000]*3 + [500]*8 @@ -171,11 +164,6 @@ def slow_withdraw(pip, well, delay_seconds=1): """ Dilute and transfer samples to assay plate """ - current_modifier = 5/8 - current = default_current*current_modifier - ctx._hw_manager.hardware._attached_instruments[ - m300._implementation.get_mount() - ].update_config_item('pick_up_current', current) if DROP: tips_sample_transfer = m300.tip_racks[-1].rows()[1] From d24d41e8da5dde3507fc88d2f0e3da3ce3822fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Thu, 4 Jan 2024 16:23:47 -0500 Subject: [PATCH 02/10] adding kapa ; --- data/data/fields.csv | 8 +- protoBuilds/kapa-amp-cleanup/README.json | 34 + .../kapa-amp-cleanup.ot2.apiv2.py.json | 1230 ++++++++++++++++ protoBuilds/kapa-amp-cleanup/metadata.json | 20 + protoBuilds/kapa-qubit/README.json | 30 + .../kapa-qubit/kapa-qubit.ot2.apiv2.py.json | 1236 +++++++++++++++++ protoBuilds/kapa-qubit/metadata.json | 20 + protocols/kapa-amp-cleanup/README.md | 68 + protocols/kapa-amp-cleanup/fields.json | 27 + .../kapa-amp-cleanup.ot2.apiv2.py | 121 ++ .../labware/agilent_96_wellplate_270ul.json | 1125 +++++++++++++++ protocols/kapa-qubit/README.md | 57 + protocols/kapa-qubit/fields.json | 30 + protocols/kapa-qubit/kapa-qubit.ot2.apiv2.py | 68 + .../labware/agilent_96_wellplate_270ul.json | 1125 +++++++++++++++ 15 files changed, 5195 insertions(+), 4 deletions(-) create mode 100644 protoBuilds/kapa-amp-cleanup/README.json create mode 100644 protoBuilds/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py.json create mode 100644 protoBuilds/kapa-amp-cleanup/metadata.json create mode 100644 protoBuilds/kapa-qubit/README.json create mode 100644 protoBuilds/kapa-qubit/kapa-qubit.ot2.apiv2.py.json create mode 100644 protoBuilds/kapa-qubit/metadata.json create mode 100644 protocols/kapa-amp-cleanup/README.md create mode 100644 protocols/kapa-amp-cleanup/fields.json create mode 100644 protocols/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py create mode 100644 protocols/kapa-amp-cleanup/labware/agilent_96_wellplate_270ul.json create mode 100644 protocols/kapa-qubit/README.md create mode 100644 protocols/kapa-qubit/fields.json create mode 100644 protocols/kapa-qubit/kapa-qubit.ot2.apiv2.py create mode 100644 protocols/kapa-qubit/labware/agilent_96_wellplate_270ul.json diff --git a/data/data/fields.csv b/data/data/fields.csv index d17f62614..bafcdba42 100644 --- a/data/data/fields.csv +++ b/data/data/fields.csv @@ -112,7 +112,7 @@ bead_asp_rate_multiplier,1 bead_clean_up,2 bead_delay_time,1 bead_disp_rate_multiplier,1 -bead_dry_time,5 +bead_dry_time,6 bead_dry_time_nuc_water,1 bead_incubation_time_in_minutes,2 bead_loc,1 @@ -725,8 +725,8 @@ lysis,1 lysis_vol,1 m10_mount,2 m1k,1 -m20_mount,79 -m300_mount,108 +m20_mount,80 +m300_mount,110 m300_type,2 m_mount,1 mag_bead_mix_resuspend_reps,1 @@ -884,7 +884,7 @@ num_384_cols,1 num_aliquots,1 num_antibodies,1 num_cell_lines,2 -num_col,8 +num_col,10 num_cols,3 num_columns,1 num_curves,1 diff --git a/protoBuilds/kapa-amp-cleanup/README.json b/protoBuilds/kapa-amp-cleanup/README.json new file mode 100644 index 000000000..aa18c9c5e --- /dev/null +++ b/protoBuilds/kapa-amp-cleanup/README.json @@ -0,0 +1,34 @@ +{ + "author": "Opentrons", + "categories": { + "Sample Prep": [ + "Plate Filling" + ] + }, + "deck-setup": "", + "description": "This protocol performs a post-amplification 1X Purification using AMPure Beads. For detailed protocol steps, please see below.", + "internal": "kapa-amp-cleanup", + "labware": "\nAgilent 96 Well Plate 270 \u00b5L\nNEST 96 Well Plate 100 \u00b5L PCR Full Skirt #402501\nNEST 12 Well Reservoir 15 mL #360102\nOpentrons 96 Filter Tip Rack 200 \u00b5L\n", + "markdown": { + "author": "[Opentrons](https://opentrons.com/)\n\n\n", + "categories": "* Sample Prep\n\t* Plate Filling\n\n\n", + "deck-setup": "![deck](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/kapa-qubit/CLEANUP.png)\n\n\n\n", + "description": "This protocol performs a post-amplification 1X Purification using AMPure Beads. For detailed protocol steps, please see below.\n\n\n", + "internal": "kapa-amp-cleanup\n", + "labware": "* Agilent 96 Well Plate 270 \u00b5L\n* [NEST 96 Well Plate 100 \u00b5L PCR Full Skirt #402501](http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96)\n* [NEST 12 Well Reservoir 15 mL #360102](http://www.cell-nest.com/page94?_l=en&product_id=102)\n* Opentrons 96 Filter Tip Rack 200 \u00b5L\n\n\n", + "modules": "* [Opentrons Magnetic Module (GEN2)](https://shop.opentrons.com/magnetic-module-gen2/)\n\n\n", + "notes": "If you have any questions about this protocol, please contact the Protocol Development Team by filling out the [Troubleshooting Survey](https://protocol-troubleshooting.paperform.co/).\n\n\n", + "pipettes": "* [Opentrons P300 8 Channel Electronic Pipette (GEN2)](https://shop.opentrons.com/8-channel-electronic-pipette/)\n\n\n", + "process": "1. Input your protocol parameters above.\n2. Download your protocol and unzip if needed.\n3. Upload your custom labware to the [OT App](https://opentrons.com/ot-app) by navigating to `More` > `Custom Labware` > `Add Labware`, and selecting your labware files (.json extensions) if needed.\n4. Upload your protocol file (.py extension) to the [OT App](https://opentrons.com/ot-app) in the `Protocol` tab.\n5. Set up your deck according to the deck map.\n6. Calibrate your labware, tiprack and pipette using the OT App. For calibration tips, check out our [support articles](https://support.opentrons.com/en/collections/1559720-guide-for-getting-started-with-the-ot-2).\n7. Hit \"Run\".\n\n\n", + "protocol-steps": "1. Premix beads, 200ul, 15-20x\n2. Add 90ul (50ul sample in there), Mix at 110ul, 7-10x\n3. 5 minute incubation\n4. Engage magnet, delay 3 minutes\n5. Remove 140ul supernatant into waste. Go down again.\n6. 200ul ethanol washes x2. Use one set of tips to add ethanol from top of the well.\n7. 2-3 minute dry time.\n8. Disengage magnet\n9. Resuspend beads with eb, mix 20 times, aspirate low dispense high, default flow rate.\n10. Incubate 2 minutes.\n11. Engage magnet\n12. 20ul to pcr strip tube plate\n\n\n\n", + "title": "Kapa Bead Clean Up" + }, + "modules": [ + "Opentrons Magnetic Module (GEN2)" + ], + "notes": "If you have any questions about this protocol, please contact the Protocol Development Team by filling out the Troubleshooting Survey.", + "pipettes": "\nOpentrons P300 8 Channel Electronic Pipette (GEN2)\n", + "process": "\nInput your protocol parameters above.\nDownload your protocol and unzip if needed.\nUpload your custom labware to the OT App by navigating to More > Custom Labware > Add Labware, and selecting your labware files (.json extensions) if needed.\nUpload your protocol file (.py extension) to the OT App in the Protocol tab.\nSet up your deck according to the deck map.\nCalibrate your labware, tiprack and pipette using the OT App. For calibration tips, check out our support articles.\nHit \"Run\".\n", + "protocol-steps": "\nPremix beads, 200ul, 15-20x\nAdd 90ul (50ul sample in there), Mix at 110ul, 7-10x\n5 minute incubation\nEngage magnet, delay 3 minutes\nRemove 140ul supernatant into waste. Go down again.\n200ul ethanol washes x2. Use one set of tips to add ethanol from top of the well.\n2-3 minute dry time.\nDisengage magnet\nResuspend beads with eb, mix 20 times, aspirate low dispense high, default flow rate.\nIncubate 2 minutes.\nEngage magnet\n20ul to pcr strip tube plate\n", + "title": "Kapa Bead Clean Up" +} \ No newline at end of file diff --git a/protoBuilds/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py.json b/protoBuilds/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py.json new file mode 100644 index 000000000..aa5fe3b55 --- /dev/null +++ b/protoBuilds/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py.json @@ -0,0 +1,1230 @@ +{ + "content": "metadata = {\n 'protocolName': 'Kapa Bead Clean Up',\n 'author': 'Rami Farawi ',\n 'source': 'Custom Protocol Request',\n 'apiLevel': '2.13'\n}\n\n\ndef run(ctx):\n\n [num_col, bead_dry_time, m300_mount] = get_values( # noqa: F821\n \"num_col\", \"bead_dry_time\", \"m300_mount\")\n\n # num_col = 2\n # bead_dry_time = 3\n # m300_mount = 'left'\n\n # labware\n mag_mod = ctx.load_module('magnetic module gen2', 1)\n mag_plate = mag_mod.load_labware('nest_96_wellplate_100ul_pcr_full_skirt')\n reservoir = ctx.load_labware('nest_12_reservoir_15ml', 3)\n elute_plate = ctx.load_labware('agilent_96_wellplate_270ul', 2)\n tips = [ctx.load_labware('opentrons_96_filtertiprack_200ul', slot)\n for slot in [7, 8]]\n\n # pipettes\n m300 = ctx.load_instrument('p300_multi_gen2', m300_mount, tip_racks=tips)\n\n # mapping\n beads = reservoir['A1']\n ethanol = reservoir['A2']\n eb = reservoir['A3']\n trash = reservoir['A12'].top()\n\n sample_cols = mag_plate.rows()[0][:num_col]\n\n def slow_tip_withdrawal(pipette, well_location, to_center=False):\n if pipette.mount == 'right':\n axis = 'A'\n else:\n axis = 'Z'\n ctx.max_speeds[axis] = 10\n if to_center is False:\n pipette.move_to(well_location.top())\n else:\n pipette.move_to(well_location.center())\n ctx.max_speeds[axis] = None\n\n # protocol\n m300.pick_up_tip()\n m300.mix(20, 200, beads)\n ctx.comment('\\n---------------ADDING BEADS TO PLATE----------------\\n\\n')\n for col in sample_cols:\n if not m300.has_tip:\n m300.pick_up_tip()\n m300.aspirate(90, beads)\n slow_tip_withdrawal(m300, col)\n m300.dispense(90, col)\n m300.mix(10, 110, col)\n m300.drop_tip()\n\n ctx.delay(minutes=5)\n\n mag_mod.engage()\n\n ctx.delay(minutes=3)\n\n ctx.comment('\\n---------------REMOVING SUPER----------------\\n\\n')\n for col in sample_cols:\n m300.pick_up_tip()\n m300.aspirate(140, col, rate=0.1)\n m300.aspirate(20, col.bottom(z=0.6), rate=0.1)\n m300.dispense(160, trash)\n m300.drop_tip()\n\n ctx.comment('\\n---------------TWO ETHANOL WASHES----------------\\n\\n')\n for _ in range(2):\n\n m300.pick_up_tip()\n for col in sample_cols:\n m300.aspirate(200, ethanol)\n slow_tip_withdrawal(m300, ethanol)\n m300.dispense(200, col.top())\n ctx.delay(seconds=2)\n m300.blow_out()\n\n ctx.delay(seconds=30)\n\n for col in sample_cols:\n if not m300.has_tip:\n m300.pick_up_tip()\n m300.aspirate(180, col, rate=0.1)\n m300.aspirate(20, col.bottom(z=0.6), rate=0.1)\n m300.dispense(200, trash)\n ctx.delay(seconds=2)\n m300.blow_out()\n m300.drop_tip()\n\n ctx.delay(minutes=bead_dry_time)\n\n mag_mod.disengage()\n\n ctx.comment('\\n---------------Resuspend----------------\\n\\n')\n for col in sample_cols:\n m300.pick_up_tip()\n m300.aspirate(23, eb)\n m300.dispense(23, col)\n m300.mix(15, 19, col.bottom(z=0.7))\n m300.drop_tip()\n\n mag_mod.engage()\n ctx.delay(minutes=3)\n\n ctx.comment('\\n---------------REMOVING SUPER----------------\\n\\n')\n for s, d in zip(sample_cols, elute_plate.rows()[0]):\n m300.pick_up_tip()\n m300.aspirate(20, s.bottom(z=0.7), rate=0.1)\n m300.dispense(20, d)\n m300.blow_out(d.top())\n m300.touch_tip()\n m300.drop_tip()\n", + "custom_labware_defs": [ + { + "brand": { + "brand": "Agilent", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.46, + "yDimension": 85.16, + "zDimension": 23.81 + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Agilent 96 Well Plate 270 \u00b5L", + "displayVolumeUnits": "\u00b5L", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_96_wellplate_270ul", + "quirks": [] + }, + "schemaVersion": 2, + "version": 1, + "wells": { + "A1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 73.96, + "z": 3.12 + }, + "A10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 73.96, + "z": 3.12 + }, + "A11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 73.96, + "z": 3.12 + }, + "A12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 73.96, + "z": 3.12 + }, + "A2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 73.96, + "z": 3.12 + }, + "A3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 73.96, + "z": 3.12 + }, + "A4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 73.96, + "z": 3.12 + }, + "A5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 73.96, + "z": 3.12 + }, + "A6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 73.96, + "z": 3.12 + }, + "A7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 73.96, + "z": 3.12 + }, + "A8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 73.96, + "z": 3.12 + }, + "A9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 73.96, + "z": 3.12 + }, + "B1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 65.02, + "z": 3.12 + }, + "B10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 65.02, + "z": 3.12 + }, + "B11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 65.02, + "z": 3.12 + }, + "B12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 65.02, + "z": 3.12 + }, + "B2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 65.02, + "z": 3.12 + }, + "B3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 65.02, + "z": 3.12 + }, + "B4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 65.02, + "z": 3.12 + }, + "B5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 65.02, + "z": 3.12 + }, + "B6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 65.02, + "z": 3.12 + }, + "B7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 65.02, + "z": 3.12 + }, + "B8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 65.02, + "z": 3.12 + }, + "B9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 65.02, + "z": 3.12 + }, + "C1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 56.08, + "z": 3.12 + }, + "C10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 56.08, + "z": 3.12 + }, + "C11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 56.08, + "z": 3.12 + }, + "C12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 56.08, + "z": 3.12 + }, + "C2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 56.08, + "z": 3.12 + }, + "C3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 56.08, + "z": 3.12 + }, + "C4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 56.08, + "z": 3.12 + }, + "C5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 56.08, + "z": 3.12 + }, + "C6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 56.08, + "z": 3.12 + }, + "C7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 56.08, + "z": 3.12 + }, + "C8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 56.08, + "z": 3.12 + }, + "C9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 56.08, + "z": 3.12 + }, + "D1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 47.14, + "z": 3.12 + }, + "D10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 47.14, + "z": 3.12 + }, + "D11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 47.14, + "z": 3.12 + }, + "D12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 47.14, + "z": 3.12 + }, + "D2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 47.14, + "z": 3.12 + }, + "D3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 47.14, + "z": 3.12 + }, + "D4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 47.14, + "z": 3.12 + }, + "D5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 47.14, + "z": 3.12 + }, + "D6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 47.14, + "z": 3.12 + }, + "D7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 47.14, + "z": 3.12 + }, + "D8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 47.14, + "z": 3.12 + }, + "D9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 47.14, + "z": 3.12 + }, + "E1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 38.2, + "z": 3.12 + }, + "E10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 38.2, + "z": 3.12 + }, + "E11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 38.2, + "z": 3.12 + }, + "E12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 38.2, + "z": 3.12 + }, + "E2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 38.2, + "z": 3.12 + }, + "E3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 38.2, + "z": 3.12 + }, + "E4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 38.2, + "z": 3.12 + }, + "E5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 38.2, + "z": 3.12 + }, + "E6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 38.2, + "z": 3.12 + }, + "E7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 38.2, + "z": 3.12 + }, + "E8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 38.2, + "z": 3.12 + }, + "E9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 38.2, + "z": 3.12 + }, + "F1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 29.26, + "z": 3.12 + }, + "F10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 29.26, + "z": 3.12 + }, + "F11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 29.26, + "z": 3.12 + }, + "F12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 29.26, + "z": 3.12 + }, + "F2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 29.26, + "z": 3.12 + }, + "F3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 29.26, + "z": 3.12 + }, + "F4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 29.26, + "z": 3.12 + }, + "F5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 29.26, + "z": 3.12 + }, + "F6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 29.26, + "z": 3.12 + }, + "F7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 29.26, + "z": 3.12 + }, + "F8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 29.26, + "z": 3.12 + }, + "F9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 29.26, + "z": 3.12 + }, + "G1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 20.32, + "z": 3.12 + }, + "G10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 20.32, + "z": 3.12 + }, + "G11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 20.32, + "z": 3.12 + }, + "G12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 20.32, + "z": 3.12 + }, + "G2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 20.32, + "z": 3.12 + }, + "G3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 20.32, + "z": 3.12 + }, + "G4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 20.32, + "z": 3.12 + }, + "G5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 20.32, + "z": 3.12 + }, + "G6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 20.32, + "z": 3.12 + }, + "G7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 20.32, + "z": 3.12 + }, + "G8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 20.32, + "z": 3.12 + }, + "G9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 20.32, + "z": 3.12 + }, + "H1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 11.38, + "z": 3.12 + }, + "H10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 11.38, + "z": 3.12 + }, + "H11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 11.38, + "z": 3.12 + }, + "H12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 11.38, + "z": 3.12 + }, + "H2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 11.38, + "z": 3.12 + }, + "H3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 11.38, + "z": 3.12 + }, + "H4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 11.38, + "z": 3.12 + }, + "H5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 11.38, + "z": 3.12 + }, + "H6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 11.38, + "z": 3.12 + }, + "H7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 11.38, + "z": 3.12 + }, + "H8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 11.38, + "z": 3.12 + }, + "H9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 11.38, + "z": 3.12 + } + } + } + ], + "fields": [ + { + "label": "Number of Samples", + "name": "num_col", + "options": [ + { + "label": "8", + "value": 1 + }, + { + "label": "16", + "value": 2 + }, + { + "label": "24", + "value": 3 + } + ], + "type": "dropDown" + }, + { + "default": 3, + "label": "Bead dry time after ethanol wash (minutes)", + "name": "bead_dry_time", + "type": "int" + }, + { + "label": "P300 Multi-Channel Mount", + "name": "m300_mount", + "options": [ + { + "label": "Left", + "value": "left" + }, + { + "label": "Right", + "value": "right" + } + ], + "type": "dropDown" + } + ], + "instruments": [ + { + "mount": "left", + "name": "p300_multi_gen2" + } + ], + "labware": [ + { + "name": "NEST 96 Well Plate 100 \u00b5L PCR Full Skirt on Magnetic Module GEN2 on 1", + "share": false, + "slot": "1", + "type": "nest_96_wellplate_100ul_pcr_full_skirt" + }, + { + "name": "Agilent 96 Well Plate 270 \u00b5L on 2", + "share": false, + "slot": "2", + "type": "agilent_96_wellplate_270ul" + }, + { + "name": "NEST 12 Well Reservoir 15 mL on 3", + "share": false, + "slot": "3", + "type": "nest_12_reservoir_15ml" + }, + { + "name": "Opentrons 96 Filter Tip Rack 200 \u00b5L on 7", + "share": false, + "slot": "7", + "type": "opentrons_96_filtertiprack_200ul" + }, + { + "name": "Opentrons 96 Filter Tip Rack 200 \u00b5L on 8", + "share": false, + "slot": "8", + "type": "opentrons_96_filtertiprack_200ul" + }, + { + "name": "Opentrons Fixed Trash on 12", + "share": false, + "slot": "12", + "type": "opentrons_1_trash_1100ml_fixed" + } + ], + "metadata": { + "apiLevel": "2.13", + "author": "Rami Farawi ", + "protocolName": "Kapa Bead Clean Up", + "source": "Custom Protocol Request" + }, + "modules": [ + { + "name": "MagneticModuleContext at Magnetic Module GEN2 on 1 lw NEST 96 Well Plate 100 \u00b5L PCR Full Skirt on Magnetic Module GEN2 on 1", + "share": false, + "slot": "1", + "type": "magdeck" + } + ] +} \ No newline at end of file diff --git a/protoBuilds/kapa-amp-cleanup/metadata.json b/protoBuilds/kapa-amp-cleanup/metadata.json new file mode 100644 index 000000000..8ed5fdab1 --- /dev/null +++ b/protoBuilds/kapa-amp-cleanup/metadata.json @@ -0,0 +1,20 @@ +{ + "files": { + "OT 1 protocol": [], + "OT 2 protocol": [ + "kapa-amp-cleanup.ot2.apiv2.py" + ], + "description": [ + "README.md" + ] + }, + "flags": { + "embedded-app": false, + "feature": false, + "hide-from-search": false, + "skip-tests": false + }, + "path": "protocols/kapa-amp-cleanup", + "slug": "kapa-amp-cleanup", + "status": "ok" +} \ No newline at end of file diff --git a/protoBuilds/kapa-qubit/README.json b/protoBuilds/kapa-qubit/README.json new file mode 100644 index 000000000..a15e850c6 --- /dev/null +++ b/protoBuilds/kapa-qubit/README.json @@ -0,0 +1,30 @@ +{ + "author": "Opentrons", + "categories": { + "Broad Category": [ + "Specific Category" + ] + }, + "deck-setup": "", + "description": "This protocol prepares a 96 Agilent plate for qubit. For detailed protocol steps, please see below. ", + "internal": "kapa-qubit", + "labware": "\nAgilent 96 Well Plate 270 \u00b5L\nNEST 12 Well Reservoir 15 mL #360102\nOpentrons 96 Filter Tip Rack 200 \u00b5L\nOpentrons 96 Filter Tip Rack 20 \u00b5L\n", + "markdown": { + "author": "[Opentrons](https://opentrons.com/)\n\n\n", + "categories": "* Broad Category\n\t* Specific Category\n\n\n", + "deck-setup": "![deck](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/kapa-qubit/QUBIT.png)\n\n\n\n", + "description": "This protocol prepares a 96 Agilent plate for qubit. For detailed protocol steps, please see below. \n\n\n", + "internal": "kapa-qubit\n", + "labware": "* Agilent 96 Well Plate 270 \u00b5L\n* [NEST 12 Well Reservoir 15 mL #360102](http://www.cell-nest.com/page94?_l=en&product_id=102)\n* Opentrons 96 Filter Tip Rack 200 \u00b5L\n* Opentrons 96 Filter Tip Rack 20 \u00b5L\n\n\n", + "notes": "If you have any questions about this protocol, please contact the Protocol Development Team by filling out the [Troubleshooting Survey](https://protocol-troubleshooting.paperform.co/).\n\n\n", + "pipettes": "* [Opentrons P300 8 Channel Electronic Pipette (GEN2)](https://shop.opentrons.com/8-channel-electronic-pipette/)\n* [Opentrons P20 8 Channel Electronic Pipette (GEN2)](https://shop.opentrons.com/8-channel-electronic-pipette/)\n\n\n", + "process": "1. Input your protocol parameters above.\n2. Download your protocol and unzip if needed.\n3. Upload your custom labware to the [OT App](https://opentrons.com/ot-app) by navigating to `More` > `Custom Labware` > `Add Labware`, and selecting your labware files (.json extensions) if needed.\n4. Upload your protocol file (.py extension) to the [OT App](https://opentrons.com/ot-app) in the `Protocol` tab.\n5. Set up your deck according to the deck map.\n6. Calibrate your labware, tiprack and pipette using the OT App. For calibration tips, check out our [support articles](https://support.opentrons.com/en/collections/1559720-guide-for-getting-started-with-the-ot-2).\n7. Hit \"Run\".\n\n\n", + "protocol-steps": "1. Transfer 190ul of buffer to column 1, 2 of destination plate\n2. Transfer 198ul of buffer to eventual sample columns of destination plate\n3. 10ul of standard 1 to column 1, 10ul of standard 2 to column 2 of destination plate\n4. 2ul from samples to sample columns of destination plate\n\n\n\n", + "title": "Kapa Qubit" + }, + "notes": "If you have any questions about this protocol, please contact the Protocol Development Team by filling out the Troubleshooting Survey.", + "pipettes": "\nOpentrons P300 8 Channel Electronic Pipette (GEN2)\nOpentrons P20 8 Channel Electronic Pipette (GEN2)\n", + "process": "\nInput your protocol parameters above.\nDownload your protocol and unzip if needed.\nUpload your custom labware to the OT App by navigating to More > Custom Labware > Add Labware, and selecting your labware files (.json extensions) if needed.\nUpload your protocol file (.py extension) to the OT App in the Protocol tab.\nSet up your deck according to the deck map.\nCalibrate your labware, tiprack and pipette using the OT App. For calibration tips, check out our support articles.\nHit \"Run\".\n", + "protocol-steps": "\nTransfer 190ul of buffer to column 1, 2 of destination plate\nTransfer 198ul of buffer to eventual sample columns of destination plate\n10ul of standard 1 to column 1, 10ul of standard 2 to column 2 of destination plate\n2ul from samples to sample columns of destination plate\n", + "title": "Kapa Qubit" +} \ No newline at end of file diff --git a/protoBuilds/kapa-qubit/kapa-qubit.ot2.apiv2.py.json b/protoBuilds/kapa-qubit/kapa-qubit.ot2.apiv2.py.json new file mode 100644 index 000000000..90c501495 --- /dev/null +++ b/protoBuilds/kapa-qubit/kapa-qubit.ot2.apiv2.py.json @@ -0,0 +1,1236 @@ +{ + "content": "metadata = {\n 'protocolName': 'Kapa Qubit',\n 'author': 'Rami Farawi ',\n 'source': 'Custom Protocol Request',\n 'apiLevel': '2.13'\n}\n\n\ndef run(ctx):\n\n [num_col, m20_mount, m300_mount] = get_values( # noqa: F821\n \"num_col\", \"m20_mount\", \"m300_mount\")\n\n # num_col = 3\n # m300_mount = 'left'\n # m20_mount = 'right'\n\n # labware\n reservoir = ctx.load_labware('nest_12_reservoir_15ml', 3)\n dest_plate = ctx.load_labware('agilent_96_wellplate_270ul', 2)\n source_plate = ctx.load_labware('agilent_96_wellplate_270ul', 1)\n tips200 = [ctx.load_labware('opentrons_96_filtertiprack_200ul', slot)\n for slot in [7]]\n tips20 = [ctx.load_labware('opentrons_96_filtertiprack_20ul', slot)\n for slot in [9]]\n\n # pipettes\n m300 = ctx.load_instrument('p300_multi_gen2', m300_mount,\n tip_racks=tips200)\n m20 = ctx.load_instrument('p20_multi_gen2', m20_mount, tip_racks=tips20)\n\n # mapping\n buffer = reservoir['A1']\n standard1 = source_plate['A11']\n standard2 = source_plate['A12']\n sample_cols_source = source_plate.rows()[0][:num_col]\n sample_cols_dest = dest_plate.rows()[0][2:2+num_col]\n\n # transfer buffer to column 1 2 and sample columns\n m300.pick_up_tip()\n for col in dest_plate.rows()[0][:2]:\n m300.aspirate(190, buffer)\n m300.dispense(190, col)\n ctx.comment('\\n\\n')\n\n for col in sample_cols_dest:\n m300.aspirate(198, buffer)\n m300.dispense(198, col)\n m300.drop_tip()\n ctx.comment('\\n\\n')\n\n # transfer standards\n for standard, col in zip([standard1, standard2], dest_plate.rows()[0][:2]):\n m20.pick_up_tip()\n m20.aspirate(10, standard)\n m20.dispense(10, col)\n m20.mix(5, 20, col)\n m20.blow_out()\n m20.drop_tip()\n\n ctx.comment('\\n\\n')\n for s, d in zip(sample_cols_source, sample_cols_dest):\n m20.pick_up_tip()\n m20.aspirate(2, s)\n m20.dispense(2, d)\n m20.mix(5, 20, d)\n m20.blow_out()\n m20.drop_tip()\n", + "custom_labware_defs": [ + { + "brand": { + "brand": "Agilent", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.46, + "yDimension": 85.16, + "zDimension": 23.81 + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Agilent 96 Well Plate 270 \u00b5L", + "displayVolumeUnits": "\u00b5L", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_96_wellplate_270ul", + "quirks": [] + }, + "schemaVersion": 2, + "version": 1, + "wells": { + "A1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 73.96, + "z": 3.12 + }, + "A10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 73.96, + "z": 3.12 + }, + "A11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 73.96, + "z": 3.12 + }, + "A12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 73.96, + "z": 3.12 + }, + "A2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 73.96, + "z": 3.12 + }, + "A3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 73.96, + "z": 3.12 + }, + "A4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 73.96, + "z": 3.12 + }, + "A5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 73.96, + "z": 3.12 + }, + "A6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 73.96, + "z": 3.12 + }, + "A7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 73.96, + "z": 3.12 + }, + "A8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 73.96, + "z": 3.12 + }, + "A9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 73.96, + "z": 3.12 + }, + "B1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 65.02, + "z": 3.12 + }, + "B10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 65.02, + "z": 3.12 + }, + "B11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 65.02, + "z": 3.12 + }, + "B12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 65.02, + "z": 3.12 + }, + "B2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 65.02, + "z": 3.12 + }, + "B3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 65.02, + "z": 3.12 + }, + "B4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 65.02, + "z": 3.12 + }, + "B5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 65.02, + "z": 3.12 + }, + "B6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 65.02, + "z": 3.12 + }, + "B7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 65.02, + "z": 3.12 + }, + "B8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 65.02, + "z": 3.12 + }, + "B9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 65.02, + "z": 3.12 + }, + "C1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 56.08, + "z": 3.12 + }, + "C10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 56.08, + "z": 3.12 + }, + "C11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 56.08, + "z": 3.12 + }, + "C12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 56.08, + "z": 3.12 + }, + "C2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 56.08, + "z": 3.12 + }, + "C3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 56.08, + "z": 3.12 + }, + "C4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 56.08, + "z": 3.12 + }, + "C5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 56.08, + "z": 3.12 + }, + "C6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 56.08, + "z": 3.12 + }, + "C7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 56.08, + "z": 3.12 + }, + "C8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 56.08, + "z": 3.12 + }, + "C9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 56.08, + "z": 3.12 + }, + "D1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 47.14, + "z": 3.12 + }, + "D10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 47.14, + "z": 3.12 + }, + "D11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 47.14, + "z": 3.12 + }, + "D12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 47.14, + "z": 3.12 + }, + "D2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 47.14, + "z": 3.12 + }, + "D3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 47.14, + "z": 3.12 + }, + "D4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 47.14, + "z": 3.12 + }, + "D5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 47.14, + "z": 3.12 + }, + "D6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 47.14, + "z": 3.12 + }, + "D7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 47.14, + "z": 3.12 + }, + "D8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 47.14, + "z": 3.12 + }, + "D9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 47.14, + "z": 3.12 + }, + "E1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 38.2, + "z": 3.12 + }, + "E10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 38.2, + "z": 3.12 + }, + "E11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 38.2, + "z": 3.12 + }, + "E12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 38.2, + "z": 3.12 + }, + "E2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 38.2, + "z": 3.12 + }, + "E3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 38.2, + "z": 3.12 + }, + "E4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 38.2, + "z": 3.12 + }, + "E5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 38.2, + "z": 3.12 + }, + "E6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 38.2, + "z": 3.12 + }, + "E7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 38.2, + "z": 3.12 + }, + "E8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 38.2, + "z": 3.12 + }, + "E9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 38.2, + "z": 3.12 + }, + "F1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 29.26, + "z": 3.12 + }, + "F10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 29.26, + "z": 3.12 + }, + "F11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 29.26, + "z": 3.12 + }, + "F12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 29.26, + "z": 3.12 + }, + "F2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 29.26, + "z": 3.12 + }, + "F3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 29.26, + "z": 3.12 + }, + "F4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 29.26, + "z": 3.12 + }, + "F5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 29.26, + "z": 3.12 + }, + "F6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 29.26, + "z": 3.12 + }, + "F7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 29.26, + "z": 3.12 + }, + "F8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 29.26, + "z": 3.12 + }, + "F9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 29.26, + "z": 3.12 + }, + "G1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 20.32, + "z": 3.12 + }, + "G10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 20.32, + "z": 3.12 + }, + "G11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 20.32, + "z": 3.12 + }, + "G12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 20.32, + "z": 3.12 + }, + "G2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 20.32, + "z": 3.12 + }, + "G3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 20.32, + "z": 3.12 + }, + "G4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 20.32, + "z": 3.12 + }, + "G5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 20.32, + "z": 3.12 + }, + "G6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 20.32, + "z": 3.12 + }, + "G7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 20.32, + "z": 3.12 + }, + "G8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 20.32, + "z": 3.12 + }, + "G9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 20.32, + "z": 3.12 + }, + "H1": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 14.56, + "y": 11.38, + "z": 3.12 + }, + "H10": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 95.02, + "y": 11.38, + "z": 3.12 + }, + "H11": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 103.96, + "y": 11.38, + "z": 3.12 + }, + "H12": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 112.9, + "y": 11.38, + "z": 3.12 + }, + "H2": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 23.5, + "y": 11.38, + "z": 3.12 + }, + "H3": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 32.44, + "y": 11.38, + "z": 3.12 + }, + "H4": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 41.38, + "y": 11.38, + "z": 3.12 + }, + "H5": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 50.32, + "y": 11.38, + "z": 3.12 + }, + "H6": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 59.26, + "y": 11.38, + "z": 3.12 + }, + "H7": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 68.2, + "y": 11.38, + "z": 3.12 + }, + "H8": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 77.14, + "y": 11.38, + "z": 3.12 + }, + "H9": { + "depth": 20.69, + "diameter": 4.74, + "shape": "circular", + "totalLiquidVolume": 270, + "x": 86.08, + "y": 11.38, + "z": 3.12 + } + } + } + ], + "fields": [ + { + "label": "Number of Samples", + "name": "num_col", + "options": [ + { + "label": "8", + "value": 1 + }, + { + "label": "16", + "value": 2 + }, + { + "label": "24", + "value": 3 + } + ], + "type": "dropDown" + }, + { + "label": "P20 Multi-Channel Mount", + "name": "m20_mount", + "options": [ + { + "label": "Right", + "value": "right" + }, + { + "label": "Left", + "value": "left" + } + ], + "type": "dropDown" + }, + { + "label": "P300 Multi-Channel Mount", + "name": "m300_mount", + "options": [ + { + "label": "Left", + "value": "left" + }, + { + "label": "Right", + "value": "right" + } + ], + "type": "dropDown" + } + ], + "instruments": [ + { + "mount": "left", + "name": "p300_multi_gen2" + }, + { + "mount": "right", + "name": "p20_multi_gen2" + } + ], + "labware": [ + { + "name": "Agilent 96 Well Plate 270 \u00b5L on 1", + "share": false, + "slot": "1", + "type": "agilent_96_wellplate_270ul" + }, + { + "name": "Agilent 96 Well Plate 270 \u00b5L on 2", + "share": false, + "slot": "2", + "type": "agilent_96_wellplate_270ul" + }, + { + "name": "NEST 12 Well Reservoir 15 mL on 3", + "share": false, + "slot": "3", + "type": "nest_12_reservoir_15ml" + }, + { + "name": "Opentrons 96 Filter Tip Rack 200 \u00b5L on 7", + "share": false, + "slot": "7", + "type": "opentrons_96_filtertiprack_200ul" + }, + { + "name": "Opentrons 96 Filter Tip Rack 20 \u00b5L on 9", + "share": false, + "slot": "9", + "type": "opentrons_96_filtertiprack_20ul" + }, + { + "name": "Opentrons Fixed Trash on 12", + "share": false, + "slot": "12", + "type": "opentrons_1_trash_1100ml_fixed" + } + ], + "metadata": { + "apiLevel": "2.13", + "author": "Rami Farawi ", + "protocolName": "Kapa Qubit", + "source": "Custom Protocol Request" + }, + "modules": [] +} \ No newline at end of file diff --git a/protoBuilds/kapa-qubit/metadata.json b/protoBuilds/kapa-qubit/metadata.json new file mode 100644 index 000000000..c99ef861d --- /dev/null +++ b/protoBuilds/kapa-qubit/metadata.json @@ -0,0 +1,20 @@ +{ + "files": { + "OT 1 protocol": [], + "OT 2 protocol": [ + "kapa-qubit.ot2.apiv2.py" + ], + "description": [ + "README.md" + ] + }, + "flags": { + "embedded-app": false, + "feature": false, + "hide-from-search": false, + "skip-tests": false + }, + "path": "protocols/kapa-qubit", + "slug": "kapa-qubit", + "status": "ok" +} \ No newline at end of file diff --git a/protocols/kapa-amp-cleanup/README.md b/protocols/kapa-amp-cleanup/README.md new file mode 100644 index 000000000..396e364e9 --- /dev/null +++ b/protocols/kapa-amp-cleanup/README.md @@ -0,0 +1,68 @@ +# Kapa Bead Clean Up + + +### Author +[Opentrons](https://opentrons.com/) + + +## Categories +* Sample Prep + * Plate Filling + + +## Description +This protocol performs a post-amplification 1X Purification using AMPure Beads. For detailed protocol steps, please see below. + + +### Modules +* [Opentrons Magnetic Module (GEN2)](https://shop.opentrons.com/magnetic-module-gen2/) + + +### Labware +* Agilent 96 Well Plate 270 µL +* [NEST 96 Well Plate 100 µL PCR Full Skirt #402501](http://www.cell-nest.com/page94?_l=en&product_id=97&product_category=96) +* [NEST 12 Well Reservoir 15 mL #360102](http://www.cell-nest.com/page94?_l=en&product_id=102) +* Opentrons 96 Filter Tip Rack 200 µL + + +### Pipettes +* [Opentrons P300 8 Channel Electronic Pipette (GEN2)](https://shop.opentrons.com/8-channel-electronic-pipette/) + + +### Deck Setup +![deck](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/kapa-qubit/CLEANUP.png) + + + +### Protocol Steps +1. Premix beads, 200ul, 15-20x +2. Add 90ul (50ul sample in there), Mix at 110ul, 7-10x +3. 5 minute incubation +4. Engage magnet, delay 3 minutes +5. Remove 140ul supernatant into waste. Go down again. +6. 200ul ethanol washes x2. Use one set of tips to add ethanol from top of the well. +7. 2-3 minute dry time. +8. Disengage magnet +9. Resuspend beads with eb, mix 20 times, aspirate low dispense high, default flow rate. +10. Incubate 2 minutes. +11. Engage magnet +12. 20ul to pcr strip tube plate + + + +### Process +1. Input your protocol parameters above. +2. Download your protocol and unzip if needed. +3. Upload your custom labware to the [OT App](https://opentrons.com/ot-app) by navigating to `More` > `Custom Labware` > `Add Labware`, and selecting your labware files (.json extensions) if needed. +4. Upload your protocol file (.py extension) to the [OT App](https://opentrons.com/ot-app) in the `Protocol` tab. +5. Set up your deck according to the deck map. +6. Calibrate your labware, tiprack and pipette using the OT App. For calibration tips, check out our [support articles](https://support.opentrons.com/en/collections/1559720-guide-for-getting-started-with-the-ot-2). +7. Hit "Run". + + +### Additional Notes +If you have any questions about this protocol, please contact the Protocol Development Team by filling out the [Troubleshooting Survey](https://protocol-troubleshooting.paperform.co/). + + +###### Internal +kapa-amp-cleanup diff --git a/protocols/kapa-amp-cleanup/fields.json b/protocols/kapa-amp-cleanup/fields.json new file mode 100644 index 000000000..b790e6cfc --- /dev/null +++ b/protocols/kapa-amp-cleanup/fields.json @@ -0,0 +1,27 @@ +[ + { + "type": "dropDown", + "label": "Number of Samples", + "name": "num_col", + "options": [ + {"label": "8", "value": 1}, + {"label": "16", "value": 2}, + {"label": "24", "value": 3} + ] + }, + { + "type": "int", + "label": "Bead dry time after ethanol wash (minutes)", + "name": "bead_dry_time", + "default": 3 + }, + { + "type": "dropDown", + "label": "P300 Multi-Channel Mount", + "name": "m300_mount", + "options": [ + {"label": "Left", "value": "left"}, + {"label": "Right", "value": "right"} + ] + } +] diff --git a/protocols/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py b/protocols/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py new file mode 100644 index 000000000..2d2a7b693 --- /dev/null +++ b/protocols/kapa-amp-cleanup/kapa-amp-cleanup.ot2.apiv2.py @@ -0,0 +1,121 @@ +metadata = { + 'protocolName': 'Kapa Bead Clean Up', + 'author': 'Rami Farawi ', + 'source': 'Custom Protocol Request', + 'apiLevel': '2.13' +} + + +def run(ctx): + + [num_col, bead_dry_time, m300_mount] = get_values( # noqa: F821 + "num_col", "bead_dry_time", "m300_mount") + + # num_col = 2 + # bead_dry_time = 3 + # m300_mount = 'left' + + # labware + mag_mod = ctx.load_module('magnetic module gen2', 1) + mag_plate = mag_mod.load_labware('nest_96_wellplate_100ul_pcr_full_skirt') + reservoir = ctx.load_labware('nest_12_reservoir_15ml', 3) + elute_plate = ctx.load_labware('agilent_96_wellplate_270ul', 2) + tips = [ctx.load_labware('opentrons_96_filtertiprack_200ul', slot) + for slot in [7, 8]] + + # pipettes + m300 = ctx.load_instrument('p300_multi_gen2', m300_mount, tip_racks=tips) + + # mapping + beads = reservoir['A1'] + ethanol = reservoir['A2'] + eb = reservoir['A3'] + trash = reservoir['A12'].top() + + sample_cols = mag_plate.rows()[0][:num_col] + + def slow_tip_withdrawal(pipette, well_location, to_center=False): + if pipette.mount == 'right': + axis = 'A' + else: + axis = 'Z' + ctx.max_speeds[axis] = 10 + if to_center is False: + pipette.move_to(well_location.top()) + else: + pipette.move_to(well_location.center()) + ctx.max_speeds[axis] = None + + # protocol + m300.pick_up_tip() + m300.mix(20, 200, beads) + ctx.comment('\n---------------ADDING BEADS TO PLATE----------------\n\n') + for col in sample_cols: + if not m300.has_tip: + m300.pick_up_tip() + m300.aspirate(90, beads) + slow_tip_withdrawal(m300, col) + m300.dispense(90, col) + m300.mix(10, 110, col) + m300.drop_tip() + + ctx.delay(minutes=5) + + mag_mod.engage() + + ctx.delay(minutes=3) + + ctx.comment('\n---------------REMOVING SUPER----------------\n\n') + for col in sample_cols: + m300.pick_up_tip() + m300.aspirate(140, col, rate=0.1) + m300.aspirate(20, col.bottom(z=0.6), rate=0.1) + m300.dispense(160, trash) + m300.drop_tip() + + ctx.comment('\n---------------TWO ETHANOL WASHES----------------\n\n') + for _ in range(2): + + m300.pick_up_tip() + for col in sample_cols: + m300.aspirate(200, ethanol) + slow_tip_withdrawal(m300, ethanol) + m300.dispense(200, col.top()) + ctx.delay(seconds=2) + m300.blow_out() + + ctx.delay(seconds=30) + + for col in sample_cols: + if not m300.has_tip: + m300.pick_up_tip() + m300.aspirate(180, col, rate=0.1) + m300.aspirate(20, col.bottom(z=0.6), rate=0.1) + m300.dispense(200, trash) + ctx.delay(seconds=2) + m300.blow_out() + m300.drop_tip() + + ctx.delay(minutes=bead_dry_time) + + mag_mod.disengage() + + ctx.comment('\n---------------Resuspend----------------\n\n') + for col in sample_cols: + m300.pick_up_tip() + m300.aspirate(23, eb) + m300.dispense(23, col) + m300.mix(15, 19, col.bottom(z=0.7)) + m300.drop_tip() + + mag_mod.engage() + ctx.delay(minutes=3) + + ctx.comment('\n---------------REMOVING SUPER----------------\n\n') + for s, d in zip(sample_cols, elute_plate.rows()[0]): + m300.pick_up_tip() + m300.aspirate(20, s.bottom(z=0.7), rate=0.1) + m300.dispense(20, d) + m300.blow_out(d.top()) + m300.touch_tip() + m300.drop_tip() diff --git a/protocols/kapa-amp-cleanup/labware/agilent_96_wellplate_270ul.json b/protocols/kapa-amp-cleanup/labware/agilent_96_wellplate_270ul.json new file mode 100644 index 000000000..8a9386e8c --- /dev/null +++ b/protocols/kapa-amp-cleanup/labware/agilent_96_wellplate_270ul.json @@ -0,0 +1,1125 @@ +{ + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + ], + "brand": { + "brand": "Agilent", + "brandId": [] + }, + "metadata": { + "displayName": "Agilent 96 Well Plate 270 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.46, + "yDimension": 85.16, + "zDimension": 23.81 + }, + "wells": { + "A1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 73.96, + "z": 3.12 + }, + "B1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 65.02, + "z": 3.12 + }, + "C1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 56.08, + "z": 3.12 + }, + "D1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 47.14, + "z": 3.12 + }, + "E1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 38.2, + "z": 3.12 + }, + "F1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 29.26, + "z": 3.12 + }, + "G1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 20.32, + "z": 3.12 + }, + "H1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 11.38, + "z": 3.12 + }, + "A2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 73.96, + "z": 3.12 + }, + "B2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 65.02, + "z": 3.12 + }, + "C2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 56.08, + "z": 3.12 + }, + "D2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 47.14, + "z": 3.12 + }, + "E2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 38.2, + "z": 3.12 + }, + "F2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 29.26, + "z": 3.12 + }, + "G2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 20.32, + "z": 3.12 + }, + "H2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 11.38, + "z": 3.12 + }, + "A3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 73.96, + "z": 3.12 + }, + "B3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 65.02, + "z": 3.12 + }, + "C3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 56.08, + "z": 3.12 + }, + "D3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 47.14, + "z": 3.12 + }, + "E3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 38.2, + "z": 3.12 + }, + "F3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 29.26, + "z": 3.12 + }, + "G3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 20.32, + "z": 3.12 + }, + "H3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 11.38, + "z": 3.12 + }, + "A4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 73.96, + "z": 3.12 + }, + "B4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 65.02, + "z": 3.12 + }, + "C4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 56.08, + "z": 3.12 + }, + "D4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 47.14, + "z": 3.12 + }, + "E4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 38.2, + "z": 3.12 + }, + "F4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 29.26, + "z": 3.12 + }, + "G4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 20.32, + "z": 3.12 + }, + "H4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 11.38, + "z": 3.12 + }, + "A5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 73.96, + "z": 3.12 + }, + "B5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 65.02, + "z": 3.12 + }, + "C5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 56.08, + "z": 3.12 + }, + "D5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 47.14, + "z": 3.12 + }, + "E5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 38.2, + "z": 3.12 + }, + "F5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 29.26, + "z": 3.12 + }, + "G5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 20.32, + "z": 3.12 + }, + "H5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 11.38, + "z": 3.12 + }, + "A6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 73.96, + "z": 3.12 + }, + "B6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 65.02, + "z": 3.12 + }, + "C6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 56.08, + "z": 3.12 + }, + "D6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 47.14, + "z": 3.12 + }, + "E6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 38.2, + "z": 3.12 + }, + "F6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 29.26, + "z": 3.12 + }, + "G6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 20.32, + "z": 3.12 + }, + "H6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 11.38, + "z": 3.12 + }, + "A7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 73.96, + "z": 3.12 + }, + "B7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 65.02, + "z": 3.12 + }, + "C7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 56.08, + "z": 3.12 + }, + "D7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 47.14, + "z": 3.12 + }, + "E7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 38.2, + "z": 3.12 + }, + "F7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 29.26, + "z": 3.12 + }, + "G7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 20.32, + "z": 3.12 + }, + "H7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 11.38, + "z": 3.12 + }, + "A8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 73.96, + "z": 3.12 + }, + "B8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 65.02, + "z": 3.12 + }, + "C8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 56.08, + "z": 3.12 + }, + "D8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 47.14, + "z": 3.12 + }, + "E8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 38.2, + "z": 3.12 + }, + "F8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 29.26, + "z": 3.12 + }, + "G8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 20.32, + "z": 3.12 + }, + "H8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 11.38, + "z": 3.12 + }, + "A9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 73.96, + "z": 3.12 + }, + "B9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 65.02, + "z": 3.12 + }, + "C9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 56.08, + "z": 3.12 + }, + "D9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 47.14, + "z": 3.12 + }, + "E9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 38.2, + "z": 3.12 + }, + "F9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 29.26, + "z": 3.12 + }, + "G9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 20.32, + "z": 3.12 + }, + "H9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 11.38, + "z": 3.12 + }, + "A10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 73.96, + "z": 3.12 + }, + "B10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 65.02, + "z": 3.12 + }, + "C10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 56.08, + "z": 3.12 + }, + "D10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 47.14, + "z": 3.12 + }, + "E10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 38.2, + "z": 3.12 + }, + "F10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 29.26, + "z": 3.12 + }, + "G10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 20.32, + "z": 3.12 + }, + "H10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 11.38, + "z": 3.12 + }, + "A11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 73.96, + "z": 3.12 + }, + "B11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 65.02, + "z": 3.12 + }, + "C11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 56.08, + "z": 3.12 + }, + "D11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 47.14, + "z": 3.12 + }, + "E11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 38.2, + "z": 3.12 + }, + "F11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 29.26, + "z": 3.12 + }, + "G11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 20.32, + "z": 3.12 + }, + "H11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 11.38, + "z": 3.12 + }, + "A12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 73.96, + "z": 3.12 + }, + "B12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 65.02, + "z": 3.12 + }, + "C12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 56.08, + "z": 3.12 + }, + "D12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 47.14, + "z": 3.12 + }, + "E12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 38.2, + "z": 3.12 + }, + "F12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 29.26, + "z": 3.12 + }, + "G12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 20.32, + "z": 3.12 + }, + "H12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 11.38, + "z": 3.12 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "agilent_96_wellplate_270ul" + }, + "namespace": "custom_beta", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} \ No newline at end of file diff --git a/protocols/kapa-qubit/README.md b/protocols/kapa-qubit/README.md new file mode 100644 index 000000000..f38c69184 --- /dev/null +++ b/protocols/kapa-qubit/README.md @@ -0,0 +1,57 @@ +# Kapa Qubit + + +### Author +[Opentrons](https://opentrons.com/) + + +## Categories +* Broad Category + * Specific Category + + +## Description +This protocol prepares a 96 Agilent plate for qubit. For detailed protocol steps, please see below. + + +### Labware +* Agilent 96 Well Plate 270 µL +* [NEST 12 Well Reservoir 15 mL #360102](http://www.cell-nest.com/page94?_l=en&product_id=102) +* Opentrons 96 Filter Tip Rack 200 µL +* Opentrons 96 Filter Tip Rack 20 µL + + +### Pipettes +* [Opentrons P300 8 Channel Electronic Pipette (GEN2)](https://shop.opentrons.com/8-channel-electronic-pipette/) +* [Opentrons P20 8 Channel Electronic Pipette (GEN2)](https://shop.opentrons.com/8-channel-electronic-pipette/) + + +### Deck Setup +![deck](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/kapa-qubit/QUBIT.png) + + + +### Protocol Steps +1. Transfer 190ul of buffer to column 1, 2 of destination plate +2. Transfer 198ul of buffer to eventual sample columns of destination plate +3. 10ul of standard 1 to column 1, 10ul of standard 2 to column 2 of destination plate +4. 2ul from samples to sample columns of destination plate + + + +### Process +1. Input your protocol parameters above. +2. Download your protocol and unzip if needed. +3. Upload your custom labware to the [OT App](https://opentrons.com/ot-app) by navigating to `More` > `Custom Labware` > `Add Labware`, and selecting your labware files (.json extensions) if needed. +4. Upload your protocol file (.py extension) to the [OT App](https://opentrons.com/ot-app) in the `Protocol` tab. +5. Set up your deck according to the deck map. +6. Calibrate your labware, tiprack and pipette using the OT App. For calibration tips, check out our [support articles](https://support.opentrons.com/en/collections/1559720-guide-for-getting-started-with-the-ot-2). +7. Hit "Run". + + +### Additional Notes +If you have any questions about this protocol, please contact the Protocol Development Team by filling out the [Troubleshooting Survey](https://protocol-troubleshooting.paperform.co/). + + +###### Internal +kapa-qubit diff --git a/protocols/kapa-qubit/fields.json b/protocols/kapa-qubit/fields.json new file mode 100644 index 000000000..e42e5cc44 --- /dev/null +++ b/protocols/kapa-qubit/fields.json @@ -0,0 +1,30 @@ +[ + { + "type": "dropDown", + "label": "Number of Samples", + "name": "num_col", + "options": [ + {"label": "8", "value": 1}, + {"label": "16", "value": 2}, + {"label": "24", "value": 3} + ] + }, + { + "type": "dropDown", + "label": "P20 Multi-Channel Mount", + "name": "m20_mount", + "options": [ + {"label": "Right", "value": "right"}, + {"label": "Left", "value": "left"} + ] + }, + { + "type": "dropDown", + "label": "P300 Multi-Channel Mount", + "name": "m300_mount", + "options": [ + {"label": "Left", "value": "left"}, + {"label": "Right", "value": "right"} + ] + } +] diff --git a/protocols/kapa-qubit/kapa-qubit.ot2.apiv2.py b/protocols/kapa-qubit/kapa-qubit.ot2.apiv2.py new file mode 100644 index 000000000..40a7705b0 --- /dev/null +++ b/protocols/kapa-qubit/kapa-qubit.ot2.apiv2.py @@ -0,0 +1,68 @@ +metadata = { + 'protocolName': 'Kapa Qubit', + 'author': 'Rami Farawi ', + 'source': 'Custom Protocol Request', + 'apiLevel': '2.13' +} + + +def run(ctx): + + [num_col, m20_mount, m300_mount] = get_values( # noqa: F821 + "num_col", "m20_mount", "m300_mount") + + # num_col = 3 + # m300_mount = 'left' + # m20_mount = 'right' + + # labware + reservoir = ctx.load_labware('nest_12_reservoir_15ml', 3) + dest_plate = ctx.load_labware('agilent_96_wellplate_270ul', 2) + source_plate = ctx.load_labware('agilent_96_wellplate_270ul', 1) + tips200 = [ctx.load_labware('opentrons_96_filtertiprack_200ul', slot) + for slot in [7]] + tips20 = [ctx.load_labware('opentrons_96_filtertiprack_20ul', slot) + for slot in [9]] + + # pipettes + m300 = ctx.load_instrument('p300_multi_gen2', m300_mount, + tip_racks=tips200) + m20 = ctx.load_instrument('p20_multi_gen2', m20_mount, tip_racks=tips20) + + # mapping + buffer = reservoir['A1'] + standard1 = source_plate['A11'] + standard2 = source_plate['A12'] + sample_cols_source = source_plate.rows()[0][:num_col] + sample_cols_dest = dest_plate.rows()[0][2:2+num_col] + + # transfer buffer to column 1 2 and sample columns + m300.pick_up_tip() + for col in dest_plate.rows()[0][:2]: + m300.aspirate(190, buffer) + m300.dispense(190, col) + ctx.comment('\n\n') + + for col in sample_cols_dest: + m300.aspirate(198, buffer) + m300.dispense(198, col) + m300.drop_tip() + ctx.comment('\n\n') + + # transfer standards + for standard, col in zip([standard1, standard2], dest_plate.rows()[0][:2]): + m20.pick_up_tip() + m20.aspirate(10, standard) + m20.dispense(10, col) + m20.mix(5, 20, col) + m20.blow_out() + m20.drop_tip() + + ctx.comment('\n\n') + for s, d in zip(sample_cols_source, sample_cols_dest): + m20.pick_up_tip() + m20.aspirate(2, s) + m20.dispense(2, d) + m20.mix(5, 20, d) + m20.blow_out() + m20.drop_tip() diff --git a/protocols/kapa-qubit/labware/agilent_96_wellplate_270ul.json b/protocols/kapa-qubit/labware/agilent_96_wellplate_270ul.json new file mode 100644 index 000000000..8a9386e8c --- /dev/null +++ b/protocols/kapa-qubit/labware/agilent_96_wellplate_270ul.json @@ -0,0 +1,1125 @@ +{ + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + ], + "brand": { + "brand": "Agilent", + "brandId": [] + }, + "metadata": { + "displayName": "Agilent 96 Well Plate 270 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.46, + "yDimension": 85.16, + "zDimension": 23.81 + }, + "wells": { + "A1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 73.96, + "z": 3.12 + }, + "B1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 65.02, + "z": 3.12 + }, + "C1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 56.08, + "z": 3.12 + }, + "D1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 47.14, + "z": 3.12 + }, + "E1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 38.2, + "z": 3.12 + }, + "F1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 29.26, + "z": 3.12 + }, + "G1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 20.32, + "z": 3.12 + }, + "H1": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 14.56, + "y": 11.38, + "z": 3.12 + }, + "A2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 73.96, + "z": 3.12 + }, + "B2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 65.02, + "z": 3.12 + }, + "C2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 56.08, + "z": 3.12 + }, + "D2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 47.14, + "z": 3.12 + }, + "E2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 38.2, + "z": 3.12 + }, + "F2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 29.26, + "z": 3.12 + }, + "G2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 20.32, + "z": 3.12 + }, + "H2": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 23.5, + "y": 11.38, + "z": 3.12 + }, + "A3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 73.96, + "z": 3.12 + }, + "B3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 65.02, + "z": 3.12 + }, + "C3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 56.08, + "z": 3.12 + }, + "D3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 47.14, + "z": 3.12 + }, + "E3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 38.2, + "z": 3.12 + }, + "F3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 29.26, + "z": 3.12 + }, + "G3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 20.32, + "z": 3.12 + }, + "H3": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 32.44, + "y": 11.38, + "z": 3.12 + }, + "A4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 73.96, + "z": 3.12 + }, + "B4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 65.02, + "z": 3.12 + }, + "C4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 56.08, + "z": 3.12 + }, + "D4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 47.14, + "z": 3.12 + }, + "E4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 38.2, + "z": 3.12 + }, + "F4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 29.26, + "z": 3.12 + }, + "G4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 20.32, + "z": 3.12 + }, + "H4": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 41.38, + "y": 11.38, + "z": 3.12 + }, + "A5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 73.96, + "z": 3.12 + }, + "B5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 65.02, + "z": 3.12 + }, + "C5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 56.08, + "z": 3.12 + }, + "D5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 47.14, + "z": 3.12 + }, + "E5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 38.2, + "z": 3.12 + }, + "F5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 29.26, + "z": 3.12 + }, + "G5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 20.32, + "z": 3.12 + }, + "H5": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 50.32, + "y": 11.38, + "z": 3.12 + }, + "A6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 73.96, + "z": 3.12 + }, + "B6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 65.02, + "z": 3.12 + }, + "C6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 56.08, + "z": 3.12 + }, + "D6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 47.14, + "z": 3.12 + }, + "E6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 38.2, + "z": 3.12 + }, + "F6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 29.26, + "z": 3.12 + }, + "G6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 20.32, + "z": 3.12 + }, + "H6": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 59.26, + "y": 11.38, + "z": 3.12 + }, + "A7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 73.96, + "z": 3.12 + }, + "B7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 65.02, + "z": 3.12 + }, + "C7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 56.08, + "z": 3.12 + }, + "D7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 47.14, + "z": 3.12 + }, + "E7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 38.2, + "z": 3.12 + }, + "F7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 29.26, + "z": 3.12 + }, + "G7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 20.32, + "z": 3.12 + }, + "H7": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 68.2, + "y": 11.38, + "z": 3.12 + }, + "A8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 73.96, + "z": 3.12 + }, + "B8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 65.02, + "z": 3.12 + }, + "C8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 56.08, + "z": 3.12 + }, + "D8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 47.14, + "z": 3.12 + }, + "E8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 38.2, + "z": 3.12 + }, + "F8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 29.26, + "z": 3.12 + }, + "G8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 20.32, + "z": 3.12 + }, + "H8": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 77.14, + "y": 11.38, + "z": 3.12 + }, + "A9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 73.96, + "z": 3.12 + }, + "B9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 65.02, + "z": 3.12 + }, + "C9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 56.08, + "z": 3.12 + }, + "D9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 47.14, + "z": 3.12 + }, + "E9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 38.2, + "z": 3.12 + }, + "F9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 29.26, + "z": 3.12 + }, + "G9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 20.32, + "z": 3.12 + }, + "H9": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 86.08, + "y": 11.38, + "z": 3.12 + }, + "A10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 73.96, + "z": 3.12 + }, + "B10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 65.02, + "z": 3.12 + }, + "C10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 56.08, + "z": 3.12 + }, + "D10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 47.14, + "z": 3.12 + }, + "E10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 38.2, + "z": 3.12 + }, + "F10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 29.26, + "z": 3.12 + }, + "G10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 20.32, + "z": 3.12 + }, + "H10": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 95.02, + "y": 11.38, + "z": 3.12 + }, + "A11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 73.96, + "z": 3.12 + }, + "B11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 65.02, + "z": 3.12 + }, + "C11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 56.08, + "z": 3.12 + }, + "D11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 47.14, + "z": 3.12 + }, + "E11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 38.2, + "z": 3.12 + }, + "F11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 29.26, + "z": 3.12 + }, + "G11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 20.32, + "z": 3.12 + }, + "H11": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 103.96, + "y": 11.38, + "z": 3.12 + }, + "A12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 73.96, + "z": 3.12 + }, + "B12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 65.02, + "z": 3.12 + }, + "C12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 56.08, + "z": 3.12 + }, + "D12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 47.14, + "z": 3.12 + }, + "E12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 38.2, + "z": 3.12 + }, + "F12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 29.26, + "z": 3.12 + }, + "G12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 20.32, + "z": 3.12 + }, + "H12": { + "depth": 20.69, + "totalLiquidVolume": 270, + "shape": "circular", + "diameter": 4.74, + "x": 112.9, + "y": 11.38, + "z": 3.12 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "agilent_96_wellplate_270ul" + }, + "namespace": "custom_beta", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} \ No newline at end of file From 833cd77091786926ec0c4b64bb84be21bf1c6c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Thu, 4 Jan 2024 16:34:06 -0500 Subject: [PATCH 03/10] fix --- data/data/fields.csv | 1 + protoBuilds/010d6c/010d6c.ot2.apiv2.py.json | 17 ++++++++++++++++- protocols/010d6c/010d6c.ot2.apiv2.py | 19 +++++++++++++------ protocols/010d6c/fields.json | 10 ++++++++++ 4 files changed, 40 insertions(+), 7 deletions(-) diff --git a/data/data/fields.csv b/data/data/fields.csv index bafcdba42..8e2ee317a 100644 --- a/data/data/fields.csv +++ b/data/data/fields.csv @@ -1614,6 +1614,7 @@ use_tuberack_a,1 use_tuberack_b,1 user_enzyme_volume,1 user_enzyme_well,1 +user_input_pause,1 using_magdeck,1 using_tempdeck,4 v_0_tube,1 diff --git a/protoBuilds/010d6c/010d6c.ot2.apiv2.py.json b/protoBuilds/010d6c/010d6c.ot2.apiv2.py.json index 4ade594a7..4346c6d6f 100644 --- a/protoBuilds/010d6c/010d6c.ot2.apiv2.py.json +++ b/protoBuilds/010d6c/010d6c.ot2.apiv2.py.json @@ -1,5 +1,5 @@ { - "content": "# flake8: noqa\n\nmetadata = {\n 'protocolName': 'Ribogreen Assay',\n 'author': 'Rami Farawi ',\n 'source': 'Custom Protocol Request',\n 'apiLevel': '2.13'\n}\n\n\ndef run(ctx):\n\n [csv_samp, plate_standard, diluent_buff_col,\n duplicate_plating, m300_mount, p300_mount] = get_values( # noqa: F821\n \"csv_samp\", \"plate_standard\", \"diluent_buff_col\",\n \"duplicate_plating\", \"m300_mount\", \"p300_mount\")\n\n # p300_mount = 'left'\n # m300_mount = 'right'\n # plate_standard = True\n # diluent_buff_col = 4\n # duplicate_plating = False\n # csv_samp = \"\"\"\n #\n # source slot, source well, dest well\n # 7, A1, A1\n # 8, A1, A2\n # 7, A3, A3\n #\n # \"\"\"\n\n def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top):\n # Split transfer up to allow for more control over touch tip height\n ## p300.transfer(vol, matrix_buff, well, new_tip='never')\n\n # Loop is used if volume is more than pipette max\n current_vol = Vol\n while current_vol > Pipette.max_volume:\n # Aspirate max volume\n Pipette.aspirate(Pipette.max_volume, Source.bottom(z = 4))\n # Touch tip\n Pipette.move_to(Source.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n # Dispense max volume\n if not Dispense_Top:\n Pipette.dispense(Pipette.max_volume, Destination.bottom(z = 3)) # With z offset\n else:\n Pipette.dispense(Pipette.max_volume, Destination.top())\n\n # Touch tip\n Pipette.move_to(Destination.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n # Update current volume\n current_vol -= Pipette.max_volume\n\n # If volume to transfer is 0, do nothing\n if current_vol == 0:\n return()\n\n # If volume more than 0 but less than or equal to max\n\n # Aspirate volume\n Pipette.aspirate(current_vol, Source.bottom(z = 4))\n # Touch tip\n Pipette.move_to(Source.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n # Dispense volume\n if not Dispense_Top:\n Pipette.dispense(current_vol, Destination.bottom(z = 3)) # With z offset\n else:\n Pipette.dispense(current_vol, Destination.top())\n # Touch tip\n Pipette.move_to(Destination.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n\n # labware\n reservoir = ctx.load_labware('corning_12_reservoir', 2)\n try:\n heater_shaker = ctx.load_module('heaterShakerModuleV1', 6)\n heater_shaker.close_labware_latch()\n hs_plate = heater_shaker.load_labware('nunc_96_wellplate_400ul')\n except ValueError:\n hs_plate = ctx.load_labware('nunc_96_wellplate_400ul', 6)\n\n deep_plate = ctx.load_labware('pyramid_96_wellplate_2000ul', 4)\n tuberack_15 = ctx.load_labware('opentrons_15_tuberack_5000ul', 7)\n tuberack_24 = ctx.load_labware('opentrons_24_tuberack_nest_2ml_snapcap', 8)\n tuberack_24 = tuberack_24\n\n tips = [ctx.load_labware('opentrons_96_tiprack_300ul', slot)\n for slot in [1]]\n\n # pipettes\n p300 = ctx.load_instrument('p300_single_gen2', p300_mount, tip_racks=tips)\n m300 = ctx.load_instrument('p300_multi_gen2', m300_mount, tip_racks=tips)\n\n csv_lines = [[val.strip() for val in line.split(',')]\n for line in csv_samp.splitlines()\n if line.split(',')[0].strip()][1:]\n\n # mapping\n matrix_buff = reservoir.wells_by_name()['A1']\n\n triton = reservoir.wells_by_name()['A3']\n\n te = reservoir.wells_by_name()['A5']\n\n dye = reservoir.wells_by_name()['A7']\n\n calibration_solution = tuberack_15.wells()[0]\n\n\n # protocol\n diluent_buff_col = deep_plate.columns()[diluent_buff_col-1]\n if plate_standard:\n ctx.comment('\\n------------ADDING BUFFER TO PLATE------------\\n\\n')\n buffer_vols = [0, 250, 500, 750, 900, 950, 980, 1000]\n\n p300.pick_up_tip()\n p300.mix(1, 300, matrix_buff.bottom(z=4))\n\n for vol, well in zip(buffer_vols, diluent_buff_col):\n\n Transfer_With_TT(\n Pipette = p300,\n Source = matrix_buff,\n Destination = well,\n Vol = vol,\n Dispense_Top = False\n )\n\n p300.drop_tip()\n\n ctx.comment('\\n------------ADDING CALIBRATION-----------\\n\\n')\n calibration_vols = [1000, 750, 500, 250, 100, 50, 20, 0]\n\n p300.pick_up_tip() # Moved to outside of loop\n p300.mix(1, 300, calibration_solution.bottom(z=4)) # Moved to outside of loop\n\n for vol, well in zip(calibration_vols, diluent_buff_col):\n if vol == 0:\n continue\n\n Transfer_With_TT(\n Pipette = p300,\n Source = calibration_solution,\n Destination = well,\n Vol = vol,\n Dispense_Top = True\n )\n\n p300.drop_tip() # Moved to outside of loop\n\n if duplicate_plating:\n ctx.comment('\\n------------DUPLICATE PLATING------------\\n\\n')\n dispense_wells = [hs_plate.wells_by_name()[well]\n for well in ['A1', 'A2', 'A11', 'A12']]\n source_col = diluent_buff_col[0]\n m300.pick_up_tip()\n m300.mix(5, 300, source_col.bottom(z = 3)) # Added in pre-wet\n m300.aspirate(200, source_col.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(source_col.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n for well in dispense_wells:\n m300.dispense(50, well.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(well.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n m300.drop_tip()\n\n else:\n ctx.comment('\\n------------TRIPLICATE PLATING------------\\n\\n')\n dispense_wells = [hs_plate.wells_by_name()[well]\n for well in ['A1', 'A2', 'A3', 'A10', 'A11', 'A12']]\n source_col = diluent_buff_col[0]\n m300.pick_up_tip()\n m300.mix(5, 300, source_col.bottom(z = 3)) # Added in pre-wet\n m300.aspirate(300, source_col.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(source_col.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n for well in dispense_wells:\n m300.dispense(50, well.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(well.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n m300.drop_tip()\n\n ctx.comment('\\n------------ADDING SAMPLE------------\\n\\n')\n\n # Modified for faster sample addition with less tip wastage\n if duplicate_plating:\n reps = 2 * 2\n else:\n reps = 3 * 2\n\n for index, line in enumerate(csv_lines):\n csv_slot = int(line[0])\n\n csv_well = line[1]\n source_well = ctx.loaded_labwares[csv_slot].wells_by_name()[csv_well]\n dest_well = line[2]\n\n # Only pick up tip and aspirate if start of new replicate batch\n if index%reps == 0:\n p300.pick_up_tip()\n p300.mix(1, 50*reps, source_well.bottom(z = 4)) # Added in pre-wet\n p300.aspirate(50*reps, source_well.bottom(z = 4))\n p300.move_to(source_well.top(-3))\n p300.touch_tip(v_offset=1)\n\n p300.dispense(50, hs_plate.wells_by_name()[dest_well].bottom(z = 3)) # Set z offset\n p300.move_to(hs_plate.wells_by_name()[dest_well].top(-3))\n p300.touch_tip(v_offset=1)\n\n # Only drop up tip if end of new replicate batch\n if index%reps == reps - 1:\n p300.drop_tip()\n\n ctx.comment('\\n------------PLATING TRITON------------\\n\\n')\n\n # Slow down aspirate and dispense rate\n m300.flow_rate.dispense *= 2.128\n m300.flow_rate.aspirate *= 2.128\n\n dispense_wells = hs_plate.rows()[0][:6]\n m300.pick_up_tip()\n m300.mix(1, 300, triton.bottom(z = 3))\n m300.aspirate(300, triton.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(triton.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n\n for well in dispense_wells:\n m300.dispense(50, well.top())\n ctx.delay(seconds = 1)\n m300.move_to(well.top(z = 0))\n m300.touch_tip(v_offset=1)\n ctx.delay(seconds = 1)\n\n m300.drop_tip()\n\n ctx.comment('\\n------------PLATING TE------------\\n\\n')\n dispense_wells = hs_plate.rows()[0][6:]\n m300.pick_up_tip()\n m300.mix(1, 300, te.bottom(z = 3))\n m300.aspirate(300, te.bottom(z = 3))\n for well in dispense_wells:\n m300.dispense(50, well.top())\n ctx.delay(seconds = 1)\n m300.move_to(well.top(z = 0))\n m300.touch_tip(v_offset=1)\n ctx.delay(seconds = 1)\n\n m300.drop_tip()\n\n try:\n ctx.pause('Place lid on plate on heater shaker')\n heater_shaker.set_and_wait_for_temperature(37)\n ctx.delay(minutes=10)\n heater_shaker.deactivate_heater()\n ctx.delay(minutes=5)\n ctx.pause('Remove lid on plate on heater shaker')\n except:\n ctx.delay(minutes=10)\n\n ctx.comment('\\n------------PLATING DYE------------\\n\\n')\n\n m300.pick_up_tip()\n m300.mix(1, 300, dye.bottom(z = 3))\n\n # Changed how dye is dispensed so that each well only has one transfer action to preserve accuracy\n for i in range(0, 12, 3):\n wells = [well for well in hs_plate.rows()[0][i : i+3]]\n m300.aspirate(300, dye.bottom(z = 3))\n m300.touch_tip(v_offset=1)\n\n for well in wells:\n m300.dispense(100, well.top())\n ctx.delay(seconds = 1)\n m300.move_to(well.top(z = 0))\n m300.touch_tip(v_offset=1)\n ctx.delay(seconds = 1)\n\n# for _ in range(2):\n# m300.distribute(50, dye, [well.top() for well in hs_plate.rows()[0]],\n# new_tip='never')\n\n m300.drop_tip()\n\n ctx.pause('''\n Plate is ready! Please remove, seal, and transport to the plate reader for\n analysis. Please remember to tidy the robot deck and dispose of any waste.\n ''')\n", + "content": "# flake8: noqa\n\nmetadata = {\n 'protocolName': 'Ribogreen Assay',\n 'author': 'Rami Farawi ',\n 'source': 'Custom Protocol Request',\n 'apiLevel': '2.13'\n}\n\n\ndef run(ctx):\n\n [csv_samp, plate_standard, diluent_buff_col,\n duplicate_plating, m300_mount, p300_mount] = get_values( # noqa: F821\n \"csv_samp\", \"plate_standard\", \"diluent_buff_col\",\n \"duplicate_plating\", \"m300_mount\", \"p300_mount\")\n\n # p300_mount = 'left'\n # m300_mount = 'right'\n # plate_standard = True\n # diluent_buff_col = 4\n # duplicate_plating = False\n # csv_samp = \"\"\"\n #\n # source slot, source well, dest well\n # 7, A1, A1\n # 8, A1, A2\n # 7, A3, A3\n #\n # \"\"\"\n\n def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top):\n # Split transfer up to allow for more control over touch tip height\n ## p300.transfer(vol, matrix_buff, well, new_tip='never')\n\n # Loop is used if volume is more than pipette max\n current_vol = Vol\n while current_vol > Pipette.max_volume:\n # Aspirate max volume\n Pipette.aspirate(Pipette.max_volume, Source.bottom(z = 4))\n # Touch tip\n Pipette.move_to(Source.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n # Dispense max volume\n if not Dispense_Top:\n Pipette.dispense(Pipette.max_volume, Destination.bottom(z = 3)) # With z offset\n else:\n Pipette.dispense(Pipette.max_volume, Destination.top())\n\n # Touch tip\n Pipette.move_to(Destination.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n # Update current volume\n current_vol -= Pipette.max_volume\n\n # If volume to transfer is 0, do nothing\n if current_vol == 0:\n return()\n\n # If volume more than 0 but less than or equal to max\n\n # Aspirate volume\n Pipette.aspirate(current_vol, Source.bottom(z = 4))\n # Touch tip\n Pipette.move_to(Source.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n # Dispense volume\n if not Dispense_Top:\n Pipette.dispense(current_vol, Destination.bottom(z = 3)) # With z offset\n else:\n Pipette.dispense(current_vol, Destination.top())\n # Touch tip\n Pipette.move_to(Destination.top(z = -3))\n Pipette.touch_tip(v_offset=1)\n\n\n # labware\n reservoir = ctx.load_labware('corning_12_reservoir', 2)\n try:\n heater_shaker = ctx.load_module('heaterShakerModuleV1', 6)\n heater_shaker.close_labware_latch()\n hs_plate = heater_shaker.load_labware('nunc_96_wellplate_400ul')\n except ValueError:\n hs_plate = ctx.load_labware('nunc_96_wellplate_400ul', 6)\n\n deep_plate = ctx.load_labware('pyramid_96_wellplate_2000ul', 4)\n tuberack_15 = ctx.load_labware('opentrons_15_tuberack_5000ul', 7)\n tuberack_24 = ctx.load_labware('opentrons_24_tuberack_nest_2ml_snapcap', 8)\n tuberack_24 = tuberack_24\n\n tips = [ctx.load_labware('opentrons_96_tiprack_300ul', slot)\n for slot in [1]]\n\n # pipettes\n p300 = ctx.load_instrument('p300_single_gen2', p300_mount, tip_racks=tips)\n m300 = ctx.load_instrument('p300_multi_gen2', m300_mount, tip_racks=tips)\n\n csv_lines = [[val.strip() for val in line.split(',')]\n for line in csv_samp.splitlines()\n if line.split(',')[0].strip()][1:]\n\n # mapping\n matrix_buff = reservoir.wells_by_name()['A1']\n\n triton = reservoir.wells_by_name()['A3']\n\n te = reservoir.wells_by_name()['A5']\n\n dye = reservoir.wells_by_name()['A7']\n\n calibration_solution = tuberack_15.wells()[0]\n\n\n # protocol\n diluent_buff_col = deep_plate.columns()[diluent_buff_col-1]\n if plate_standard:\n ctx.comment('\\n------------ADDING BUFFER TO PLATE------------\\n\\n')\n buffer_vols = [0, 250, 500, 750, 900, 950, 980, 1000]\n\n p300.pick_up_tip()\n p300.mix(1, 300, matrix_buff.bottom(z=4))\n\n for vol, well in zip(buffer_vols, diluent_buff_col):\n\n Transfer_With_TT(\n Pipette = p300,\n Source = matrix_buff,\n Destination = well,\n Vol = vol,\n Dispense_Top = False\n )\n\n p300.drop_tip()\n\n ctx.comment('\\n------------ADDING CALIBRATION-----------\\n\\n')\n calibration_vols = [1000, 750, 500, 250, 100, 50, 20, 0]\n\n p300.pick_up_tip() # Moved to outside of loop\n p300.mix(1, 300, calibration_solution.bottom(z=4)) # Moved to outside of loop\n\n for vol, well in zip(calibration_vols, diluent_buff_col):\n if vol == 0:\n continue\n\n Transfer_With_TT(\n Pipette = p300,\n Source = calibration_solution,\n Destination = well,\n Vol = vol,\n Dispense_Top = True\n )\n\n p300.drop_tip() # Moved to outside of loop\n\n if duplicate_plating:\n ctx.comment('\\n------------DUPLICATE PLATING------------\\n\\n')\n dispense_wells = [hs_plate.wells_by_name()[well]\n for well in ['A1', 'A2', 'A11', 'A12']]\n source_col = diluent_buff_col[0]\n m300.pick_up_tip()\n m300.mix(5, 300, source_col.bottom(z = 3)) # Added in pre-wet\n m300.aspirate(200, source_col.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(source_col.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n for well in dispense_wells:\n m300.dispense(50, well.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(well.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n m300.drop_tip()\n\n else:\n ctx.comment('\\n------------TRIPLICATE PLATING------------\\n\\n')\n dispense_wells = [hs_plate.wells_by_name()[well]\n for well in ['A1', 'A2', 'A3', 'A10', 'A11', 'A12']]\n source_col = diluent_buff_col[0]\n m300.pick_up_tip()\n m300.mix(5, 300, source_col.bottom(z = 3)) # Added in pre-wet\n m300.aspirate(300, source_col.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(source_col.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n for well in dispense_wells:\n m300.dispense(50, well.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(well.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n m300.drop_tip()\n\n ctx.comment('\\n------------ADDING SAMPLE------------\\n\\n')\n\n # Modified for faster sample addition with less tip wastage\n if duplicate_plating:\n reps = 2 * 2\n else:\n reps = 3 * 2\n\n for index, line in enumerate(csv_lines):\n csv_slot = int(line[0])\n\n csv_well = line[1]\n source_well = ctx.loaded_labwares[csv_slot].wells_by_name()[csv_well]\n dest_well = line[2]\n\n # Only pick up tip and aspirate if start of new replicate batch\n if index%reps == 0:\n p300.pick_up_tip()\n p300.mix(1, 50*reps, source_well.bottom(z = 4)) # Added in pre-wet\n p300.aspirate(50*reps, source_well.bottom(z = 4))\n p300.move_to(source_well.top(-3))\n p300.touch_tip(v_offset=1)\n\n p300.dispense(50, hs_plate.wells_by_name()[dest_well].bottom(z = 3)) # Set z offset\n p300.move_to(hs_plate.wells_by_name()[dest_well].top(-3))\n p300.touch_tip(v_offset=1)\n\n # Only drop up tip if end of new replicate batch\n if index%reps == reps - 1:\n p300.drop_tip()\n\n ctx.comment('\\n------------PLATING TRITON------------\\n\\n')\n\n # Slow down aspirate and dispense rate\n m300.flow_rate.dispense *= 2.128\n m300.flow_rate.aspirate *= 2.128\n\n dispense_wells = hs_plate.rows()[0][:6]\n m300.pick_up_tip()\n m300.mix(1, 300, triton.bottom(z = 3))\n m300.aspirate(300, triton.bottom(z = 3))\n\n # Added in touch tip\n m300.move_to(triton.top(z = -3))\n m300.touch_tip(v_offset=1)\n\n\n for well in dispense_wells:\n m300.dispense(50, well.top())\n ctx.delay(seconds = 1)\n m300.move_to(well.top(z = 0))\n m300.touch_tip(v_offset=1)\n ctx.delay(seconds = 1)\n\n m300.drop_tip()\n\n ctx.comment('\\n------------PLATING TE------------\\n\\n')\n dispense_wells = hs_plate.rows()[0][6:]\n m300.pick_up_tip()\n m300.mix(1, 300, te.bottom(z = 3))\n m300.aspirate(300, te.bottom(z = 3))\n for well in dispense_wells:\n m300.dispense(50, well.top())\n ctx.delay(seconds = 1)\n m300.move_to(well.top(z = 0))\n m300.touch_tip(v_offset=1)\n ctx.delay(seconds = 1)\n\n m300.drop_tip()\n\n try:\n if user_input_pause:\n ctx.pause('Place lid on plate on heater shaker')\n heater_shaker.set_and_wait_for_temperature(37)\n ctx.delay(minutes=10)\n heater_shaker.deactivate_heater()\n ctx.delay(minutes=5)\n ctx.pause('Remove lid on plate on heater shaker')\n else:\n heater_shaker.set_and_wait_for_temperature(37)\n ctx.delay(minutes=10)\n heater_shaker.deactivate_heater()\n ctx.delay(minutes=5)\n\n except:\n ctx.delay(minutes=10)\n\n ctx.comment('\\n------------PLATING DYE------------\\n\\n')\n\n m300.pick_up_tip()\n m300.mix(1, 300, dye.bottom(z = 3))\n\n # Changed how dye is dispensed so that each well only has one transfer action to preserve accuracy\n for i in range(0, 12, 3):\n wells = [well for well in hs_plate.rows()[0][i : i+3]]\n m300.aspirate(300, dye.bottom(z = 3))\n m300.touch_tip(v_offset=1)\n\n for well in wells:\n m300.dispense(100, well.top())\n ctx.delay(seconds = 1)\n m300.move_to(well.top(z = 0))\n m300.touch_tip(v_offset=1)\n ctx.delay(seconds = 1)\n\n# for _ in range(2):\n# m300.distribute(50, dye, [well.top() for well in hs_plate.rows()[0]],\n# new_tip='never')\n\n m300.drop_tip()\n\n ctx.pause('''\n Plate is ready! Please remove, seal, and transport to the plate reader for\n analysis. Please remember to tidy the robot deck and dispose of any waste.\n ''')\n", "custom_labware_defs": [ { "brand": { @@ -2877,6 +2877,21 @@ ], "type": "dropDown" }, + { + "label": "Do you require user input pauses to add and remove plate lid for heating step?", + "name": "user_input_pause", + "options": [ + { + "label": "Yes", + "value": true + }, + { + "label": "No", + "value": false + } + ], + "type": "dropDown" + }, { "label": "P300 Multi-Channel Mount", "name": "m300_mount", diff --git a/protocols/010d6c/010d6c.ot2.apiv2.py b/protocols/010d6c/010d6c.ot2.apiv2.py index a1e0afbb4..da882fa7e 100644 --- a/protocols/010d6c/010d6c.ot2.apiv2.py +++ b/protocols/010d6c/010d6c.ot2.apiv2.py @@ -270,12 +270,19 @@ def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top): m300.drop_tip() try: - ctx.pause('Place lid on plate on heater shaker') - heater_shaker.set_and_wait_for_temperature(37) - ctx.delay(minutes=10) - heater_shaker.deactivate_heater() - ctx.delay(minutes=5) - ctx.pause('Remove lid on plate on heater shaker') + if user_input_pause: + ctx.pause('Place lid on plate on heater shaker') + heater_shaker.set_and_wait_for_temperature(37) + ctx.delay(minutes=10) + heater_shaker.deactivate_heater() + ctx.delay(minutes=5) + ctx.pause('Remove lid on plate on heater shaker') + else: + heater_shaker.set_and_wait_for_temperature(37) + ctx.delay(minutes=10) + heater_shaker.deactivate_heater() + ctx.delay(minutes=5) + except: ctx.delay(minutes=10) diff --git a/protocols/010d6c/fields.json b/protocols/010d6c/fields.json index 28d6b7357..c430593cd 100644 --- a/protocols/010d6c/fields.json +++ b/protocols/010d6c/fields.json @@ -44,6 +44,16 @@ ] }, + { + "type": "dropDown", + "label": "Do you require user input pauses to add and remove plate lid for heating step?", + "name": "user_input_pause", + "options": [ + {"label": "Yes", "value": true}, + {"label": "No", "value": false} + ] + }, + { "type": "dropDown", "label": "P300 Multi-Channel Mount", From bb554c27ceab4b150c1b5c6ec7118d52460cf1d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Tue, 16 Jan 2024 16:39:28 -0500 Subject: [PATCH 04/10] fix --- .../nucleic_acid_purification_with_magnetic_beads/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md index fb41c92df..e68542ae2 100644 --- a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md +++ b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won’t be available after January 31st, 2024. ## Categories * Featured From 2f13c0b61fa2a5171645d9c469b982314ab0960a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Tue, 16 Jan 2024 16:40:11 -0500 Subject: [PATCH 05/10] fix --- .../nucleic_acid_purification_with_magnetic_beads/README.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json b/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json index c57db9346..f9db0592c 100644 --- a/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json +++ b/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json @@ -8,7 +8,7 @@ "description": "With this protocol, you can perform high-quality nucleic acid purifications using magnetic beads and the Opentrons Magnetic Module. This protocol contains flexible parameters that you can customize for many different magnetic bead and nucleic acid types. Use this setup to rapidly iterate and optimize your magbead-based workflows!\nYou can use any magnetic beads you prefer with this protocol, but we have included some reagent recommendations in the Materials Needed section below to help you get started. For more detailed information on how to use this protocol, please see our Technical Note.\n\n\n\n-- Opentrons OT-2\n-- Opentrons Magnetic Module\n-- Opentrons OT-2 Run App (Version 3.1.2 or later)\n-- 200uL or 300 uL Tiprack (Opentrons tips suggested)\n-- 12-row automation-friendly trough\n-- BioRad HardShell 96-Well PCR Plate\n-- Magnetic Beads (Looking for a kit? We recommend trying Omega Bio-tek Mag-Bind\u00ae TotalPure NGS)\n-- Ethanol\n-- Elution Buffer (Typically 10 mM Tris pH 8.0, TE Buffer, or nuclease-free water)\n\n\n\nUsing the customization fields below, set up your protocol as follows:\n\nPipette: Specify your pipette. We recommend using a p50 or p300 multi- or single-channel.\nPipette Mount: Specify which mount (left or right) your pipette is on.\nSample number: Customize the number of samples to run per protocol. A multiple of 8 is recommended when you are using a multichannel pipette.\nSample volume: Specify the starting volume (in uL) of the input sample.\nBead Ratio: Customize the ratio of beads for left or right side size-selection of fragments. The default bead ratio is 1.8x the input sample volume.\nElution Volume: Specify the final volume (in uL) to elute the purified nucleic acid. The Opentrons MagDeck supports elution volumes above 10 \u00b5L.\nIncubation Time: Specify the amount of time (in minutes) that the bead solution and input sample interact.\nSettling Time: Specify the amount of time (in minutes) needed to pellet the beads. Higher volumes may require a longer settling time.\nDrying Time: Specify the drying time (in minutes) needed after wash steps.\n\n\n", "internal": "Nucleic Acid Purification, v1", "markdown": { - "author": "[Opentrons](https://opentrons.com/)\n\n# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won\u2019t be available after January 31st, 2024.\n\n", + "author": "[Opentrons](https://opentrons.com/)\n\n# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won\u2019t be available after January 31st, 2024.\n\n", "categories": "* Featured\n * Nucleic Acid Purification with Magnetic Beads (Universal)\n\n", "description": "With this protocol, you can perform high-quality nucleic acid purifications using magnetic beads and the [Opentrons Magnetic Module](https://shop.opentrons.com/products/magdeck]). This protocol contains flexible parameters that you can customize for many different magnetic bead and nucleic acid types. Use this setup to rapidly iterate and optimize your magbead-based workflows!\n\nYou can use any magnetic beads you prefer with this protocol, but we have included some reagent recommendations in the **Materials Needed** section below to help you get started. For more detailed information on how to use this protocol, please see our [Technical Note](https://s3.amazonaws.com/opentrons-protocol-library-website/Technical+Notes/Nucleic+Acid+Purification+with+Magnetic+Module+OT2+Technical+Note.pdf).\n\n---\n\n---\n\n![Materials Needed](https://s3.amazonaws.com/opentrons-protocol-library-website/custom-README-images/customizable-serial-dilution/materials.png)\n\n-- [Opentrons OT-2](http://opentrons.com/ot-2)\n\n-- [Opentrons Magnetic Module](https://shop.opentrons.com/products/magdeck?_ga=2.171718441.823190023.1542396855-403439593.1535387376)\n\n-- [Opentrons OT-2 Run App (Version 3.1.2 or later)](http://opentrons.com/ot-app)\n\n-- 200uL or 300 uL Tiprack ([Opentrons tips suggested](https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips-racks-9-600-tips))\n\n-- [12-row automation-friendly trough](https://www.usascientific.com/12-channel-automation-reservoir.aspx)\n\n-- [BioRad HardShell 96-Well PCR Plate](http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601)\n\n-- Magnetic Beads (Looking for a kit? We recommend trying [Omega Bio-tek Mag-Bind\u00ae TotalPure NGS](https://shop.opentrons.com/products/mag-bind-total-pure-ngs))\n\n-- Ethanol\n\n-- Elution Buffer (Typically 10 mM Tris pH 8.0, TE Buffer, or nuclease-free water)\n\n---\n\n---\n\n![Setup](https://s3.amazonaws.com/opentrons-protocol-library-website/custom-README-images/001-General+Headings/Setup.png)\n\nUsing the customization fields below, set up your protocol as follows:\n\n * **Pipette:** Specify your pipette. We recommend using a p50 or p300 multi- or single-channel.\n * **Pipette Mount:** Specify which mount (left or right) your pipette is on.\n * **Sample number:** Customize the number of samples to run per protocol. A multiple of 8 is recommended when you are using a multichannel pipette.\n * **Sample volume:** Specify the starting volume (in uL) of the input sample.\n * **Bead Ratio:** Customize the ratio of beads for left or right side size-selection of fragments. *The default bead ratio is 1.8x the input sample volume.*\n * **Elution Volume:** Specify the final volume (in uL) to elute the purified nucleic acid. *The Opentrons MagDeck supports elution volumes above 10 \u00b5L.*\n * **Incubation Time:** Specify the amount of time (in minutes) that the bead solution and input sample interact.\n * **Settling Time:** Specify the amount of time (in minutes) needed to pellet the beads. *Higher volumes may require a longer settling time.*\n * **Drying Time:** Specify the drying time (in minutes) needed after wash steps.\n\n---\n\n---\n\n", "internal": "Nucleic Acid Purification, v1\n\n", From fd42871b660e94b2cb3d36b27fef35935ace2b8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Tue, 16 Jan 2024 16:44:42 -0500 Subject: [PATCH 06/10] fix --- .../nucleic_acid_purification_with_magnetic_beads/README.json | 2 +- .../nucleic_acid_purification_with_magnetic_beads/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json b/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json index f9db0592c..71ac82829 100644 --- a/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json +++ b/protoBuilds/nucleic_acid_purification_with_magnetic_beads/README.json @@ -8,7 +8,7 @@ "description": "With this protocol, you can perform high-quality nucleic acid purifications using magnetic beads and the Opentrons Magnetic Module. This protocol contains flexible parameters that you can customize for many different magnetic bead and nucleic acid types. Use this setup to rapidly iterate and optimize your magbead-based workflows!\nYou can use any magnetic beads you prefer with this protocol, but we have included some reagent recommendations in the Materials Needed section below to help you get started. For more detailed information on how to use this protocol, please see our Technical Note.\n\n\n\n-- Opentrons OT-2\n-- Opentrons Magnetic Module\n-- Opentrons OT-2 Run App (Version 3.1.2 or later)\n-- 200uL or 300 uL Tiprack (Opentrons tips suggested)\n-- 12-row automation-friendly trough\n-- BioRad HardShell 96-Well PCR Plate\n-- Magnetic Beads (Looking for a kit? We recommend trying Omega Bio-tek Mag-Bind\u00ae TotalPure NGS)\n-- Ethanol\n-- Elution Buffer (Typically 10 mM Tris pH 8.0, TE Buffer, or nuclease-free water)\n\n\n\nUsing the customization fields below, set up your protocol as follows:\n\nPipette: Specify your pipette. We recommend using a p50 or p300 multi- or single-channel.\nPipette Mount: Specify which mount (left or right) your pipette is on.\nSample number: Customize the number of samples to run per protocol. A multiple of 8 is recommended when you are using a multichannel pipette.\nSample volume: Specify the starting volume (in uL) of the input sample.\nBead Ratio: Customize the ratio of beads for left or right side size-selection of fragments. The default bead ratio is 1.8x the input sample volume.\nElution Volume: Specify the final volume (in uL) to elute the purified nucleic acid. The Opentrons MagDeck supports elution volumes above 10 \u00b5L.\nIncubation Time: Specify the amount of time (in minutes) that the bead solution and input sample interact.\nSettling Time: Specify the amount of time (in minutes) needed to pellet the beads. Higher volumes may require a longer settling time.\nDrying Time: Specify the drying time (in minutes) needed after wash steps.\n\n\n", "internal": "Nucleic Acid Purification, v1", "markdown": { - "author": "[Opentrons](https://opentrons.com/)\n\n# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won\u2019t be available after January 31st, 2024.\n\n", + "author": "[Opentrons](https://opentrons.com/)\n\n# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won\u2019t be available after January 31st, 2024.\n\n", "categories": "* Featured\n * Nucleic Acid Purification with Magnetic Beads (Universal)\n\n", "description": "With this protocol, you can perform high-quality nucleic acid purifications using magnetic beads and the [Opentrons Magnetic Module](https://shop.opentrons.com/products/magdeck]). This protocol contains flexible parameters that you can customize for many different magnetic bead and nucleic acid types. Use this setup to rapidly iterate and optimize your magbead-based workflows!\n\nYou can use any magnetic beads you prefer with this protocol, but we have included some reagent recommendations in the **Materials Needed** section below to help you get started. For more detailed information on how to use this protocol, please see our [Technical Note](https://s3.amazonaws.com/opentrons-protocol-library-website/Technical+Notes/Nucleic+Acid+Purification+with+Magnetic+Module+OT2+Technical+Note.pdf).\n\n---\n\n---\n\n![Materials Needed](https://s3.amazonaws.com/opentrons-protocol-library-website/custom-README-images/customizable-serial-dilution/materials.png)\n\n-- [Opentrons OT-2](http://opentrons.com/ot-2)\n\n-- [Opentrons Magnetic Module](https://shop.opentrons.com/products/magdeck?_ga=2.171718441.823190023.1542396855-403439593.1535387376)\n\n-- [Opentrons OT-2 Run App (Version 3.1.2 or later)](http://opentrons.com/ot-app)\n\n-- 200uL or 300 uL Tiprack ([Opentrons tips suggested](https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips-racks-9-600-tips))\n\n-- [12-row automation-friendly trough](https://www.usascientific.com/12-channel-automation-reservoir.aspx)\n\n-- [BioRad HardShell 96-Well PCR Plate](http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601)\n\n-- Magnetic Beads (Looking for a kit? We recommend trying [Omega Bio-tek Mag-Bind\u00ae TotalPure NGS](https://shop.opentrons.com/products/mag-bind-total-pure-ngs))\n\n-- Ethanol\n\n-- Elution Buffer (Typically 10 mM Tris pH 8.0, TE Buffer, or nuclease-free water)\n\n---\n\n---\n\n![Setup](https://s3.amazonaws.com/opentrons-protocol-library-website/custom-README-images/001-General+Headings/Setup.png)\n\nUsing the customization fields below, set up your protocol as follows:\n\n * **Pipette:** Specify your pipette. We recommend using a p50 or p300 multi- or single-channel.\n * **Pipette Mount:** Specify which mount (left or right) your pipette is on.\n * **Sample number:** Customize the number of samples to run per protocol. A multiple of 8 is recommended when you are using a multichannel pipette.\n * **Sample volume:** Specify the starting volume (in uL) of the input sample.\n * **Bead Ratio:** Customize the ratio of beads for left or right side size-selection of fragments. *The default bead ratio is 1.8x the input sample volume.*\n * **Elution Volume:** Specify the final volume (in uL) to elute the purified nucleic acid. *The Opentrons MagDeck supports elution volumes above 10 \u00b5L.*\n * **Incubation Time:** Specify the amount of time (in minutes) that the bead solution and input sample interact.\n * **Settling Time:** Specify the amount of time (in minutes) needed to pellet the beads. *Higher volumes may require a longer settling time.*\n * **Drying Time:** Specify the drying time (in minutes) needed after wash steps.\n\n---\n\n---\n\n", "internal": "Nucleic Acid Purification, v1\n\n", diff --git a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md index e68542ae2..54bdf6caf 100644 --- a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md +++ b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won’t be available after January 31st, 2024. ## Categories * Featured From b15f03a58ea7b3c47f5515cf8b5699c92f8a88f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Wed, 17 Jan 2024 10:59:47 -0500 Subject: [PATCH 07/10] fix --- protocols/274d2a/README.md | 2 +- protocols/3359a5/README.md | 2 +- protocols/Opentrons_Logo/README.md | 2 +- protocols/cherrypicking/README.md | 2 +- protocols/customizable_serial_dilution_ot2/README.md | 2 +- protocols/dinosaur/README.md | 2 +- protocols/illumina-nextera-XT-library-prep-part1/README.md | 2 +- protocols/illumina-nextera-XT-library-prep-part2/README.md | 2 +- protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md | 2 +- protocols/macherey-nagel-nucleomag-clean-up/README.md | 2 +- protocols/macherey-nagel-nucleomag-dna-food/README.md | 2 +- protocols/macherey-nagel-nucleomag-tissue/README.md | 2 +- protocols/macherey-nagel-nucleomag-virus/README.md | 2 +- protocols/normalization/README.md | 2 +- .../nucleic_acid_purification_with_magnetic_beads/README.md | 2 +- protocols/omega_biotek_magbind_totalpure_NGS/README.md | 2 +- protocols/pcr_prep_part_1/README.md | 2 +- protocols/pcr_prep_part_2/README.md | 2 +- protocols/sci-macherey-nagel-nucleomag/README.md | 2 +- protocols/sci-mag-bind-blood-tissue-kit/README.md | 2 +- protocols/sci-omegabiotek-extraction-fa/README.md | 2 +- protocols/sci-omegabiotek-magbind-total-rna-96/README.md | 2 +- protocols/sci-omegabiotek-magbind/README.md | 2 +- protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md | 2 +- protocols/sci-zymo-directzol-magbead/README.md | 2 +- protocols/swift-2s-turbo-pt1/README.md | 2 +- protocols/swift-fully-automated/README.md | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/protocols/274d2a/README.md b/protocols/274d2a/README.md index 42bd7a2a4..2b512fca7 100644 --- a/protocols/274d2a/README.md +++ b/protocols/274d2a/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/274d2a). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/274d2a). This page won’t be available after January 31st, 2024. ## Categories * Sample Prep diff --git a/protocols/3359a5/README.md b/protocols/3359a5/README.md index d75b7566c..9b4955c48 100644 --- a/protocols/3359a5/README.md +++ b/protocols/3359a5/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/3359a5). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/3359a5). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/Opentrons_Logo/README.md b/protocols/Opentrons_Logo/README.md index fb2bba11d..d4f19ab22 100644 --- a/protocols/Opentrons_Logo/README.md +++ b/protocols/Opentrons_Logo/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/opentrons_logo). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/opentrons_logo). This page won’t be available after January 31st, 2024. ## Categories * Getting Started diff --git a/protocols/cherrypicking/README.md b/protocols/cherrypicking/README.md index c4f9d1447..cf0439e70 100644 --- a/protocols/cherrypicking/README.md +++ b/protocols/cherrypicking/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/cherrypicking). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/cherrypicking). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/customizable_serial_dilution_ot2/README.md b/protocols/customizable_serial_dilution_ot2/README.md index 21fdf4b88..99e36eaff 100644 --- a/protocols/customizable_serial_dilution_ot2/README.md +++ b/protocols/customizable_serial_dilution_ot2/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/customizable_serial_dilution_ot2). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/customizable_serial_dilution_ot2). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/dinosaur/README.md b/protocols/dinosaur/README.md index 6337b94c5..de85c45ec 100644 --- a/protocols/dinosaur/README.md +++ b/protocols/dinosaur/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/dinosaur). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/dinosaur). This page won’t be available after January 31st, 2024. ## Categories * Getting Started diff --git a/protocols/illumina-nextera-XT-library-prep-part1/README.md b/protocols/illumina-nextera-XT-library-prep-part1/README.md index 08debc37c..9f3e1d432 100644 --- a/protocols/illumina-nextera-XT-library-prep-part1/README.md +++ b/protocols/illumina-nextera-XT-library-prep-part1/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/illumina-nextera-xt-library-prep-part1). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/illumina-nextera-xt-library-prep-part1). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/illumina-nextera-XT-library-prep-part2/README.md b/protocols/illumina-nextera-XT-library-prep-part2/README.md index 305a27612..3c510ba71 100644 --- a/protocols/illumina-nextera-XT-library-prep-part2/README.md +++ b/protocols/illumina-nextera-XT-library-prep-part2/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/illumina-nextera-xt-library-prep-part2). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/illumina-nextera-xt-library-prep-part2). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md b/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md index adf8b6af6..109513430 100644 --- a/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md +++ b/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/macherey-nagel-nucleomag-dna-microbiome). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-dna-microbiome). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-clean-up/README.md b/protocols/macherey-nagel-nucleomag-clean-up/README.md index 97403c1b1..eca08a3c6 100644 --- a/protocols/macherey-nagel-nucleomag-clean-up/README.md +++ b/protocols/macherey-nagel-nucleomag-clean-up/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/macherey-nagel-nucleomag-clean-up). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-clean-up). This page won’t be available after January 31st, 2024. ## Categories * NGS Library Prep diff --git a/protocols/macherey-nagel-nucleomag-dna-food/README.md b/protocols/macherey-nagel-nucleomag-dna-food/README.md index e1ed5309d..e5db24df8 100644 --- a/protocols/macherey-nagel-nucleomag-dna-food/README.md +++ b/protocols/macherey-nagel-nucleomag-dna-food/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/macherey-nagel-nucleomag-dna-food). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-dna-food). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-tissue/README.md b/protocols/macherey-nagel-nucleomag-tissue/README.md index 3d28a2b2f..24de4fef3 100644 --- a/protocols/macherey-nagel-nucleomag-tissue/README.md +++ b/protocols/macherey-nagel-nucleomag-tissue/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/macherey-nagel-nucleomag-tissue). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-tissue). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-virus/README.md b/protocols/macherey-nagel-nucleomag-virus/README.md index 8c5fbc271..88cbf9edd 100644 --- a/protocols/macherey-nagel-nucleomag-virus/README.md +++ b/protocols/macherey-nagel-nucleomag-virus/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/macherey-nagel-nucleomag-virus). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-virus). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/normalization/README.md b/protocols/normalization/README.md index ed2fba1d0..56e05a18c 100644 --- a/protocols/normalization/README.md +++ b/protocols/normalization/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/normalization). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/normalization). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md index 54bdf6caf..6c480e634 100644 --- a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md +++ b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://https://library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/omega_biotek_magbind_totalpure_NGS/README.md b/protocols/omega_biotek_magbind_totalpure_NGS/README.md index 68f75ff1e..e9e623028 100644 --- a/protocols/omega_biotek_magbind_totalpure_NGS/README.md +++ b/protocols/omega_biotek_magbind_totalpure_NGS/README.md @@ -6,7 +6,7 @@ ### Partner [Omega Bio-tek](http://omegabiotek.com/store/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/omega_biotek_magbind_totalpure_ngs). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/omega_biotek_magbind_totalpure_ngs). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/pcr_prep_part_1/README.md b/protocols/pcr_prep_part_1/README.md index f23df14e3..577b308cc 100644 --- a/protocols/pcr_prep_part_1/README.md +++ b/protocols/pcr_prep_part_1/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/pcr_prep_part_1). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/pcr_prep_part_1). This page won’t be available after January 31st, 2024. ## Categories * PCR diff --git a/protocols/pcr_prep_part_2/README.md b/protocols/pcr_prep_part_2/README.md index 2932e362a..dac6200f4 100644 --- a/protocols/pcr_prep_part_2/README.md +++ b/protocols/pcr_prep_part_2/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/pcr_prep_part_2). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/pcr_prep_part_2). This page won’t be available after January 31st, 2024. ## Categories * PCR diff --git a/protocols/sci-macherey-nagel-nucleomag/README.md b/protocols/sci-macherey-nagel-nucleomag/README.md index 8dd64fcd5..5d2aa4cec 100644 --- a/protocols/sci-macherey-nagel-nucleomag/README.md +++ b/protocols/sci-macherey-nagel-nucleomag/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-mag-bind-blood-tissue-kit/README.md b/protocols/sci-mag-bind-blood-tissue-kit/README.md index 07ca71348..cb633cf79 100644 --- a/protocols/sci-mag-bind-blood-tissue-kit/README.md +++ b/protocols/sci-mag-bind-blood-tissue-kit/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-mag-bind-blood-tissue-kit). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-mag-bind-blood-tissue-kit). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-extraction-fa/README.md b/protocols/sci-omegabiotek-extraction-fa/README.md index 5a42b5dbe..b21f2fe53 100644 --- a/protocols/sci-omegabiotek-extraction-fa/README.md +++ b/protocols/sci-omegabiotek-extraction-fa/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-omegabiotek-extraction-fa). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-extraction-fa). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-magbind-total-rna-96/README.md b/protocols/sci-omegabiotek-magbind-total-rna-96/README.md index 906e5f615..23a8bc995 100644 --- a/protocols/sci-omegabiotek-magbind-total-rna-96/README.md +++ b/protocols/sci-omegabiotek-magbind-total-rna-96/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-omegabiotek-magbind-total-rna-96). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-magbind-total-rna-96). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-magbind/README.md b/protocols/sci-omegabiotek-magbind/README.md index d11dc2626..e8a520a2c 100644 --- a/protocols/sci-omegabiotek-magbind/README.md +++ b/protocols/sci-omegabiotek-magbind/README.md @@ -2,7 +2,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-omegabiotek-magbind). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-magbind). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md b/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md index d19306175..fd5fcc125 100644 --- a/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md +++ b/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-promega-magazorb-dna-mini-prep-kit). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-promega-magazorb-dna-mini-prep-kit). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-zymo-directzol-magbead/README.md b/protocols/sci-zymo-directzol-magbead/README.md index 78970cb76..452871f4a 100644 --- a/protocols/sci-zymo-directzol-magbead/README.md +++ b/protocols/sci-zymo-directzol-magbead/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/sci-zymo-directzol-magbead). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-zymo-directzol-magbead). This page won’t be available after January 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/swift-2s-turbo-pt1/README.md b/protocols/swift-2s-turbo-pt1/README.md index ff09ff2b8..d4eb2720c 100644 --- a/protocols/swift-2s-turbo-pt1/README.md +++ b/protocols/swift-2s-turbo-pt1/README.md @@ -6,7 +6,7 @@ ### Partner [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/swift-2s-turbo-pt1). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/swift-2s-turbo-pt1). This page won’t be available after January 31st, 2024. ## Categories * Featured diff --git a/protocols/swift-fully-automated/README.md b/protocols/swift-fully-automated/README.md index c818c20c5..2cc67aad8 100644 --- a/protocols/swift-fully-automated/README.md +++ b/protocols/swift-fully-automated/README.md @@ -6,7 +6,7 @@ ### Partner [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](library.opentrons.com/p/swift-fully-automated). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/swift-fully-automated). This page won’t be available after January 31st, 2024. ## Categories * NGS Library Prep From fa4944eb091539af90044a95589429d348d3e6c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramifarawi=E2=80=9D?= <“rami.farawi@opentrons.com”> Date: Wed, 17 Jan 2024 11:06:48 -0500 Subject: [PATCH 08/10] fix --- protocols/00222e-dd/README.md | 2 +- protocols/00222e-seed/README.md | 2 +- protocols/00222e/README.md | 2 +- protocols/002af3/README.md | 2 +- protocols/0045f1/README.md | 2 +- protocols/007992/README.md | 2 +- protocols/00a214-protocol-1/README.md | 2 +- protocols/00a214-protocol-2/README.md | 2 +- protocols/00a214-protocol-3/README.md | 2 +- protocols/00a214-protocol-4/README.md | 2 +- protocols/00a214-protocol-5/README.md | 2 +- protocols/00a577/README.md | 2 +- protocols/00a6e5/README.md | 2 +- protocols/00bbd7/README.md | 2 +- protocols/00c517-pt2/README.md | 2 +- protocols/00c517/README.md | 2 +- protocols/00f7b1_part10/README.md | 2 +- protocols/00f7b1_part2/README.md | 2 +- protocols/00f7b1_part3/README.md | 2 +- protocols/00f7b1_part4/README.md | 2 +- protocols/00f7b1_part5/README.md | 2 +- protocols/00f7b1_part6/README.md | 2 +- protocols/00f7b1_part7/README.md | 2 +- protocols/00f7b1_part8/README.md | 2 +- protocols/00f7b1_part9/README.md | 2 +- protocols/010526/README.md | 2 +- protocols/010d6c/README.md | 2 +- protocols/0175a4/README.md | 2 +- protocols/017860/README.md | 2 +- protocols/019a7d/README.md | 2 +- protocols/019a7d_part_2/README.md | 2 +- protocols/01a6b9/README.md | 2 +- protocols/01b4a2/README.md | 2 +- protocols/022548-2/README.md | 2 +- protocols/022548/README.md | 2 +- protocols/022a99/README.md | 2 +- protocols/029f5b/README.md | 2 +- protocols/02b308/README.md | 2 +- protocols/02pnzp/README.md | 2 +- protocols/030dd8-amplify/README.md | 2 +- protocols/030dd8-amplify2/README.md | 2 +- protocols/030dd8-anneal/README.md | 2 +- protocols/030dd8-cleanup/README.md | 2 +- protocols/030dd8-synthesize/README.md | 2 +- protocols/030dd8-tagment/README.md | 2 +- protocols/030dd8/README.md | 2 +- protocols/036016/README.md | 2 +- protocols/039ecb/README.md | 2 +- protocols/03f9cd/README.md | 2 +- protocols/041adf/README.md | 2 +- protocols/04318b/README.md | 2 +- protocols/0451f3/README.md | 2 +- protocols/04552f/README.md | 2 +- protocols/0479ad-cp/README.md | 2 +- protocols/0479ad-part-2/README.md | 2 +- protocols/0479ad-part-3/README.md | 2 +- protocols/0479ad-part-4/README.md | 2 +- protocols/0479ad-part-5/README.md | 2 +- protocols/0479ad/README.md | 2 +- protocols/04bec0/README.md | 2 +- protocols/04eeb1-part-2/README.md | 2 +- protocols/04eeb1-part-3/README.md | 2 +- protocols/04eeb1-part-4/README.md | 2 +- protocols/04eeb1-part-5/README.md | 2 +- protocols/04eeb1-part-6/README.md | 2 +- protocols/04eeb1-part-7/README.md | 2 +- protocols/04eeb1/README.md | 2 +- protocols/04f310/README.md | 2 +- protocols/04f4e7/README.md | 2 +- protocols/04fed3/README.md | 2 +- protocols/051557/README.md | 2 +- protocols/0523c2/README.md | 2 +- protocols/052d03/README.md | 2 +- protocols/0530d8-pt2/README.md | 2 +- protocols/0530d8/README.md | 2 +- protocols/053386-pt2/README.md | 2 +- protocols/053386-pt3/README.md | 2 +- protocols/053386/README.md | 2 +- protocols/0556be-bmda/README.md | 2 +- protocols/0556be-covid-mm-qc-v3/README.md | 2 +- protocols/0556be-covid-mm-qc/README.md | 2 +- protocols/0556be-covid-ntc/README.md | 2 +- protocols/055b94/README.md | 2 +- protocols/055f76/README.md | 2 +- protocols/056543/README.md | 2 +- protocols/056f47/README.md | 2 +- protocols/058124/README.md | 2 +- protocols/059126/README.md | 2 +- protocols/05f673/README.md | 2 +- protocols/05fb0f/README.md | 2 +- protocols/060c4f/README.md | 2 +- protocols/063611-part-2/README.md | 2 +- protocols/063611/README.md | 2 +- protocols/06ab09/README.md | 2 +- protocols/06da40/README.md | 2 +- protocols/06e5b6/README.md | 2 +- protocols/072463/README.md | 2 +- protocols/075bee/README.md | 2 +- protocols/076f67/README.md | 2 +- protocols/079db2/README.md | 2 +- protocols/07c65a/README.md | 2 +- protocols/07caf7/README.md | 2 +- protocols/08207f/README.md | 2 +- protocols/0845ab/README.md | 2 +- protocols/0849c2/README.md | 2 +- protocols/08878b/README.md | 2 +- protocols/089108/README.md | 2 +- protocols/08aeaa/README.md | 2 +- protocols/08bbaf/README.md | 2 +- protocols/08e3eb/README.md | 2 +- protocols/08fd01-pt2/README.md | 2 +- protocols/08fd01-pt3/README.md | 2 +- protocols/08fd01/README.md | 2 +- protocols/0909e6/README.md | 2 +- protocols/090c2e/README.md | 2 +- protocols/0944e4/README.md | 2 +- protocols/0961d2-part1/README.md | 2 +- protocols/0961d2-part2/README.md | 2 +- protocols/0961d2-part3/README.md | 2 +- protocols/0961d2-part4/README.md | 2 +- protocols/0966ae/README.md | 2 +- protocols/09cdbe/README.md | 2 +- protocols/0a23c6/README.md | 2 +- protocols/0a25f2/README.md | 2 +- protocols/0a33e8/README.md | 2 +- protocols/0a9b58/README.md | 2 +- protocols/0aa51a/README.md | 2 +- protocols/0add76/README.md | 2 +- protocols/0aee8a/README.md | 2 +- protocols/0b83b7/README.md | 2 +- protocols/0b97ae-protocol-2A/README.md | 2 +- protocols/0b97ae-protocol-2B/README.md | 2 +- protocols/0b97ae-protocol-3B/README.md | 2 +- protocols/0b97ae/README.md | 2 +- protocols/0b98cc/README.md | 2 +- protocols/0ba998-2/README.md | 2 +- protocols/0ba998-3/README.md | 2 +- protocols/0ba998-4/README.md | 2 +- protocols/0ba998/README.md | 2 +- protocols/0bd707/README.md | 2 +- protocols/0be1bf/README.md | 2 +- protocols/0bf4f4-pt2/README.md | 2 +- protocols/0bf4f4-pt3/README.md | 2 +- protocols/0bf4f4/README.md | 2 +- protocols/0c24ca/README.md | 2 +- protocols/0c3e45/README.md | 2 +- protocols/0ca318-pt2/README.md | 2 +- protocols/0ca318/README.md | 2 +- protocols/0cded6-amplify/README.md | 2 +- protocols/0cded6-amplify2/README.md | 2 +- protocols/0cded6-cleanup/README.md | 2 +- protocols/0cded6-synthesize/README.md | 2 +- protocols/0cded6-tagment/README.md | 2 +- protocols/0cded6/README.md | 2 +- protocols/0d2950/README.md | 2 +- protocols/0d868e-part2/README.md | 2 +- protocols/0d868e/README.md | 2 +- protocols/0dda91/README.md | 2 +- protocols/0df680/README.md | 2 +- protocols/0e39fc/README.md | 2 +- protocols/0e525c/README.md | 2 +- protocols/0e696e/README.md | 2 +- protocols/0e7175-pt2/README.md | 2 +- protocols/0e7175/README.md | 2 +- protocols/0e8475/README.md | 2 +- protocols/0e8e3/README.md | 2 +- protocols/0eaeb5/README.md | 2 +- protocols/0edc68/README.md | 2 +- protocols/0ef96f/README.md | 2 +- protocols/0f3b60/README.md | 2 +- protocols/0f409e/README.md | 2 +- protocols/0f4405/README.md | 2 +- protocols/0f5985/README.md | 2 +- protocols/0f5c31/README.md | 2 +- protocols/0f7910/README.md | 2 +- protocols/0fa015/README.md | 2 +- protocols/0fd3dd/README.md | 2 +- protocols/0fdc01/README.md | 2 +- protocols/0ff0c3/README.md | 2 +- protocols/1033g1/README.md | 2 +- protocols/10bf60-station-B/README.md | 2 +- protocols/10bf60-station-C/README.md | 2 +- protocols/111210-part-10/README.md | 2 +- protocols/111210-part-2/README.md | 2 +- protocols/111210-part-3/README.md | 2 +- protocols/111210-part-4/README.md | 2 +- protocols/111210-part-5/README.md | 2 +- protocols/111210-part-6/README.md | 2 +- protocols/111210-part-7/README.md | 2 +- protocols/111210-part-8/README.md | 2 +- protocols/111210-part-9/README.md | 2 +- protocols/111210/README.md | 2 +- protocols/115d98/README.md | 2 +- protocols/1185d3/README.md | 2 +- protocols/118e8c/README.md | 2 +- protocols/11bb6a-part-2/README.md | 2 +- protocols/11bb6a-part-3/README.md | 2 +- protocols/11bb6a-part-4/README.md | 2 +- protocols/11bb6a-part-5/README.md | 2 +- protocols/11bb6a-part-6/README.md | 2 +- protocols/11bb6a-part-7/README.md | 2 +- protocols/11bb6a-part-8/README.md | 2 +- protocols/11bb6a-part-9/README.md | 2 +- protocols/11bb6a/README.md | 2 +- protocols/11beaa/README.md | 2 +- protocols/1211/README.md | 2 +- protocols/121d15-2-384/README.md | 2 +- protocols/121d15-2-96-Greiner-1000/README.md | 2 +- protocols/121d15-2-96-Greiner-500/README.md | 2 +- protocols/121d15-2-96-Irish-2200/README.md | 2 +- protocols/121d15-3/README.md | 2 +- protocols/121d15-4/README.md | 2 +- protocols/121d15-5/README.md | 2 +- protocols/121d15-6/README.md | 2 +- protocols/121d15-7-2ml-15ml-aliquot/README.md | 2 +- protocols/121d15-7-2ml-15ml-pool/README.md | 2 +- protocols/121d15-7-2ml-2ml-aliquot/README.md | 2 +- protocols/121d15-7-2ml-2ml-pool/README.md | 2 +- protocols/121d15-repeat/README.md | 2 +- protocols/121d15/README.md | 2 +- protocols/12213d/README.md | 2 +- protocols/131de0/README.md | 2 +- protocols/139815/README.md | 2 +- protocols/13ac78/README.md | 2 +- protocols/13c0b8/README.md | 2 +- protocols/13ea1e-part2/README.md | 2 +- protocols/13ea1e/README.md | 2 +- protocols/13fd88/README.md | 2 +- protocols/141a1a/README.md | 2 +- protocols/1440ad/README.md | 2 +- protocols/1464-2/README.md | 2 +- protocols/1464-3/README.md | 2 +- protocols/1464/README.md | 2 +- protocols/1477ea/README.md | 2 +- protocols/1479/README.md | 2 +- protocols/14b685/README.md | 2 +- protocols/154ec5/README.md | 2 +- protocols/1577-v2/README.md | 2 +- protocols/158d42/README.md | 2 +- protocols/15dc4c/README.md | 2 +- protocols/1601a9/README.md | 2 +- protocols/1649b1/README.md | 2 +- protocols/165a77/README.md | 2 +- protocols/16b3fb/README.md | 2 +- protocols/17cb2d/README.md | 2 +- protocols/17d210-part-2/README.md | 2 +- protocols/17d210-part-3/README.md | 2 +- protocols/17d210-part-4/README.md | 2 +- protocols/17d210-part-5/README.md | 2 +- protocols/17d210/README.md | 2 +- protocols/18050b/README.md | 2 +- protocols/18d6a1/README.md | 2 +- protocols/18e62e/README.md | 2 +- protocols/19313a/README.md | 2 +- protocols/1980cd/README.md | 2 +- protocols/199721/README.md | 2 +- protocols/19fc32/README.md | 2 +- protocols/1a2343/README.md | 2 +- protocols/1adec6-2/README.md | 2 +- protocols/1adec6-3/README.md | 2 +- protocols/1adec6-4/README.md | 2 +- protocols/1adec6-5/README.md | 2 +- protocols/1adec6-6/README.md | 2 +- protocols/1adec6-7/README.md | 2 +- protocols/1adec6/README.md | 2 +- protocols/1af856/README.md | 2 +- protocols/1b2788/README.md | 2 +- protocols/1bcd67/README.md | 2 +- protocols/1c086c/README.md | 2 +- protocols/1c3611/README.md | 2 +- protocols/1c8468/README.md | 2 +- protocols/1ccd23-station-A/README.md | 2 +- protocols/1ccd23-station-B/README.md | 2 +- protocols/1ccd23-station-C/README.md | 2 +- protocols/1ce6aa/README.md | 2 +- protocols/1d37e5/README.md | 2 +- protocols/1d6d1b/README.md | 2 +- protocols/1dbc24/README.md | 2 +- protocols/1dec68/README.md | 2 +- protocols/1dfebe/README.md | 2 +- protocols/1e744e/README.md | 2 +- protocols/1eeb01/README.md | 2 +- protocols/1ef67e/README.md | 2 +- protocols/1f62ba/README.md | 2 +- protocols/1f8b55/README.md | 2 +- protocols/1f96ca-part-2/README.md | 2 +- protocols/1f96ca/README.md | 2 +- protocols/1fcf02/README.md | 2 +- protocols/203136/README.md | 2 +- protocols/2082dd/README.md | 2 +- protocols/211a24/README.md | 2 +- protocols/211fe1/README.md | 2 +- protocols/21e4d8-pt1/README.md | 2 +- protocols/21e4d8-pt2/README.md | 2 +- protocols/21e4d8-pt3/README.md | 2 +- protocols/21u968/README.md | 2 +- protocols/226d24/README.md | 2 +- protocols/234495/README.md | 2 +- protocols/243973/README.md | 2 +- protocols/245eb2/README.md | 2 +- protocols/25a03d/README.md | 2 +- protocols/269b21/README.md | 2 +- protocols/26a414/README.md | 2 +- protocols/26c304/README.md | 2 +- protocols/272c63/README.md | 2 +- protocols/274d2a/README.md | 2 +- protocols/277a3d/README.md | 2 +- protocols/280ea4/README.md | 2 +- protocols/2905a4/README.md | 2 +- protocols/29225e-part-2/README.md | 2 +- protocols/29225e/README.md | 2 +- protocols/29414b-ot/README.md | 2 +- protocols/29414b/README.md | 2 +- protocols/2942dd/README.md | 2 +- protocols/295c73/README.md | 2 +- protocols/298069/README.md | 2 +- protocols/29effa-buffer/README.md | 2 +- protocols/29effa-mastermix/README.md | 2 +- protocols/29f643/README.md | 2 +- protocols/2a370c/README.md | 2 +- protocols/2aee74-48-2/README.md | 2 +- protocols/2aee74-48-3/README.md | 2 +- protocols/2aee74-48/README.md | 2 +- protocols/2aee74-96-2/README.md | 2 +- protocols/2aee74-96-3/README.md | 2 +- protocols/2aee74-96/README.md | 2 +- protocols/2b3642/README.md | 2 +- protocols/2b9486/README.md | 2 +- protocols/2bba96/README.md | 2 +- protocols/2bdff3/README.md | 2 +- protocols/2c19aa/README.md | 2 +- protocols/2c62b7/README.md | 2 +- protocols/2c81c0/README.md | 2 +- protocols/2c83f7/README.md | 2 +- protocols/2cc59d/README.md | 2 +- protocols/2d7126/README.md | 2 +- protocols/2d7d86/README.md | 2 +- protocols/2d9a0c/README.md | 2 +- protocols/2df9f8-pt2/README.md | 2 +- protocols/2df9f8-pt3/README.md | 2 +- protocols/2df9f8-pt4/README.md | 2 +- protocols/2df9f8/README.md | 2 +- protocols/2e84cc/README.md | 2 +- protocols/2ed4de-2/README.md | 2 +- protocols/2ed4de/README.md | 2 +- protocols/2ee5be/README.md | 2 +- protocols/300073-2/README.md | 2 +- protocols/300073/README.md | 2 +- protocols/30174a/README.md | 2 +- protocols/30450c-part-2/README.md | 2 +- protocols/30450c/README.md | 2 +- protocols/313086-logixsmart-station-B/README.md | 2 +- protocols/313086/README.md | 2 +- protocols/315118/README.md | 2 +- protocols/32207e/README.md | 2 +- protocols/3308b4/README.md | 2 +- protocols/3359a5/README.md | 2 +- protocols/33900b/README.md | 2 +- protocols/33a449/README.md | 2 +- protocols/33b12a/README.md | 2 +- protocols/33y0f3/README.md | 2 +- protocols/343001/README.md | 2 +- protocols/35269b/README.md | 2 +- protocols/355b30/README.md | 2 +- protocols/357404/README.md | 2 +- protocols/35b1a9/README.md | 2 +- protocols/3607d5-2/README.md | 2 +- protocols/3607d5-3/README.md | 2 +- protocols/3607d5-4/README.md | 2 +- protocols/3607d5-5/README.md | 2 +- protocols/3607d5/README.md | 2 +- protocols/3633ca/README.md | 2 +- protocols/3662e6/README.md | 2 +- protocols/37190e/README.md | 2 +- protocols/37de37/README.md | 2 +- protocols/37ffa5/README.md | 2 +- protocols/384b23-plate-transfer/README.md | 2 +- protocols/384b23-pooling/README.md | 2 +- protocols/384b23-tube-transfer/README.md | 2 +- protocols/387961/README.md | 2 +- protocols/38efd4/README.md | 2 +- protocols/3955db/README.md | 2 +- protocols/39b4c7/README.md | 2 +- protocols/39bbbb/README.md | 2 +- protocols/3a49b6/README.md | 2 +- protocols/3b0db0/README.md | 2 +- protocols/3b3d2f/README.md | 2 +- protocols/3b3f1c/README.md | 2 +- protocols/3bc25d/README.md | 2 +- protocols/3c9aec/README.md | 2 +- protocols/3cf31f/README.md | 2 +- protocols/3d02be/README.md | 2 +- protocols/3d942d/README.md | 2 +- protocols/3db190-manual/README.md | 2 +- protocols/3db190/README.md | 2 +- protocols/3e0bef/README.md | 2 +- protocols/3e3c9d-protocol-Adding-BTM/README.md | 2 +- protocols/3e3c9d-protocol-Adding-Water-RBC/README.md | 2 +- protocols/3e3c9d-protocol-master-rbc-transfer/README.md | 2 +- protocols/3e3c9d-protocols-adding-wistd-water/README.md | 2 +- protocols/3fad82-part-2/README.md | 2 +- protocols/3fad82-part-3/README.md | 2 +- protocols/3fad82/README.md | 2 +- protocols/3fb582/README.md | 2 +- protocols/400b8e/README.md | 2 +- protocols/407d5e/README.md | 2 +- protocols/412ec7/README.md | 2 +- protocols/414aaa/README.md | 2 +- protocols/4175de/README.md | 2 +- protocols/41ece2/README.md | 2 +- protocols/422b1e/README.md | 2 +- protocols/42d27b/README.md | 2 +- protocols/43163c/README.md | 2 +- protocols/43d313-part-2/README.md | 2 +- protocols/43d313-part-3/README.md | 2 +- protocols/43d313-part-4/README.md | 2 +- protocols/43d313-part-5/README.md | 2 +- protocols/43d313-part-6/README.md | 2 +- protocols/43d313-part-7/README.md | 2 +- protocols/43d313-part-8/README.md | 2 +- protocols/43d313-part-9/README.md | 2 +- protocols/43d313/README.md | 2 +- protocols/441cc8/README.md | 2 +- protocols/4471ba/README.md | 2 +- protocols/44981c/README.md | 2 +- protocols/44b1ac/README.md | 2 +- protocols/44b43c/README.md | 2 +- protocols/453b5a/README.md | 2 +- protocols/4568fa-2/README.md | 2 +- protocols/4568fa/README.md | 2 +- protocols/459a55/README.md | 2 +- protocols/459cc2/README.md | 2 +- protocols/45a320/README.md | 2 +- protocols/470d8c/README.md | 2 +- protocols/48648f/README.md | 2 +- protocols/4883fc/README.md | 2 +- protocols/4920bc/README.md | 2 +- protocols/49b828/README.md | 2 +- protocols/49de51-pt1/README.md | 2 +- protocols/49de51-pt2/README.md | 2 +- protocols/49de51/README.md | 2 +- protocols/4a0be6/README.md | 2 +- protocols/4a5f32/README.md | 2 +- protocols/4b4a80-adapter_ligation/README.md | 2 +- protocols/4b4a80-fragmentation/README.md | 2 +- protocols/4b4a80-pcr_enrichment/README.md | 2 +- protocols/4b4a80-size_selection/README.md | 2 +- protocols/4b7268/README.md | 2 +- protocols/4b76c0/README.md | 2 +- protocols/4bdd14/README.md | 2 +- protocols/4c8861/README.md | 2 +- protocols/4d9b8b/README.md | 2 +- protocols/4e4c0c/README.md | 2 +- protocols/4ee4d6-part2/README.md | 2 +- protocols/4ee4d6/README.md | 2 +- protocols/4f7a6f/README.md | 2 +- protocols/4fa62e/README.md | 2 +- protocols/4fc750/README.md | 2 +- protocols/50486f-v2-part1/README.md | 2 +- protocols/50486f-v2-part2/README.md | 2 +- protocols/50486f-v2-part3/README.md | 2 +- protocols/50486f-v2-part4/README.md | 2 +- protocols/50486f-v2-part5/README.md | 2 +- protocols/50c11b/README.md | 2 +- protocols/516336-part-2/README.md | 2 +- protocols/516336/README.md | 2 +- protocols/5191b6/README.md | 2 +- protocols/51b9a5/README.md | 2 +- protocols/51df08/README.md | 2 +- protocols/528c16/README.md | 2 +- protocols/52d238/README.md | 2 +- protocols/53134e/README.md | 2 +- protocols/53e6bc_mastermix_creation/README.md | 2 +- protocols/53fec2/README.md | 2 +- protocols/543bf9/README.md | 2 +- protocols/5520f0/README.md | 2 +- protocols/558d02/README.md | 2 +- protocols/559aa0/README.md | 2 +- protocols/563624/README.md | 2 +- protocols/5654c0/README.md | 2 +- protocols/5689f5/README.md | 2 +- protocols/56a6a1/README.md | 2 +- protocols/56b4ec/README.md | 2 +- protocols/581011-pt2/README.md | 2 +- protocols/581011/README.md | 2 +- protocols/5829d7/README.md | 2 +- protocols/58d57d/README.md | 2 +- protocols/5a2a35/README.md | 2 +- protocols/5a3797-protocol-1/README.md | 2 +- protocols/5a3797-protocol-2/README.md | 2 +- protocols/5a3797-protocol-3/README.md | 2 +- protocols/5a5767/README.md | 2 +- protocols/5b16ef-pt2/README.md | 2 +- protocols/5b16ef/README.md | 2 +- protocols/5b8174/README.md | 2 +- protocols/5c14ad/README.md | 2 +- protocols/5c24e2/README.md | 2 +- protocols/5c50d9/README.md | 2 +- protocols/5c7384-hhu/README.md | 2 +- protocols/5c7384/README.md | 2 +- protocols/5dcd88/README.md | 2 +- protocols/5eee17/README.md | 2 +- protocols/5f37a2/README.md | 2 +- protocols/5f791f/README.md | 2 +- protocols/5f7d18/README.md | 2 +- protocols/5fa647/README.md | 2 +- protocols/6030b7/README.md | 2 +- protocols/60d861-2/README.md | 2 +- protocols/60d861-3/README.md | 2 +- protocols/60d861/README.md | 2 +- protocols/6151af/README.md | 2 +- protocols/62679a/README.md | 2 +- protocols/629f38/README.md | 2 +- protocols/6401f1/README.md | 2 +- protocols/640a85/README.md | 2 +- protocols/642c73/README.md | 2 +- protocols/649b67/README.md | 2 +- protocols/64c54a/README.md | 2 +- protocols/657ee9-2/README.md | 2 +- protocols/657ee9-3/README.md | 2 +- protocols/657ee9-4/README.md | 2 +- protocols/657ee9/README.md | 2 +- protocols/659888/README.md | 2 +- protocols/65ed01/README.md | 2 +- protocols/66aa48/README.md | 2 +- protocols/66e60f/README.md | 2 +- protocols/68ce98/README.md | 2 +- protocols/69486f/README.md | 2 +- protocols/698b9e-part2/README.md | 2 +- protocols/698b9e/README.md | 2 +- protocols/69cf81-2/README.md | 2 +- protocols/69cf81/README.md | 2 +- protocols/69db93/README.md | 2 +- protocols/6a77d9/README.md | 2 +- protocols/6a93a2-part2/README.md | 2 +- protocols/6a93a2-part3/README.md | 2 +- protocols/6a93a2-part4/README.md | 2 +- protocols/6a93a2-part5/README.md | 2 +- protocols/6a93a2/README.md | 2 +- protocols/6aee6e/README.md | 2 +- protocols/6af807-amendment/README.md | 2 +- protocols/6af807/README.md | 2 +- protocols/6b51bd/README.md | 2 +- protocols/6b8c90-2/README.md | 2 +- protocols/6b8c90-3/README.md | 2 +- protocols/6b8c90/README.md | 2 +- protocols/6b9ee3/README.md | 2 +- protocols/6bc986-part-2/README.md | 2 +- protocols/6bc986-part-3/README.md | 2 +- protocols/6bc986-part-4/README.md | 2 +- protocols/6bc986-part-5/README.md | 2 +- protocols/6bc986-part-6/README.md | 2 +- protocols/6bc986/README.md | 2 +- protocols/6be1f8/README.md | 2 +- protocols/6c27ee/README.md | 2 +- protocols/6c7447/README.md | 2 +- protocols/6cb818/README.md | 2 +- protocols/6cd9d6/README.md | 2 +- protocols/6d2e65/README.md | 2 +- protocols/6d3eda/README.md | 2 +- protocols/6d7eb7/README.md | 2 +- protocols/6d7fc3-part-2/README.md | 2 +- protocols/6d7fc3-part-3/README.md | 2 +- protocols/6d7fc3-part-4/README.md | 2 +- protocols/6d7fc3-part-5/README.md | 2 +- protocols/6d7fc3-part-6/README.md | 2 +- protocols/6d7fc3-part-7/README.md | 2 +- protocols/6d7fc3/README.md | 2 +- protocols/6d901d-2/README.md | 2 +- protocols/6d901d/README.md | 2 +- protocols/6e160e/README.md | 2 +- protocols/6e2509-v2/README.md | 2 +- protocols/6e2509/README.md | 2 +- protocols/6ec4dd-2/README.md | 2 +- protocols/6ec4dd/README.md | 2 +- protocols/6f2d9b/README.md | 2 +- protocols/6f4e2c/README.md | 2 +- protocols/6faa1e/README.md | 2 +- protocols/6fe477-workflow-1/README.md | 2 +- protocols/6fe477-workflow-2/README.md | 2 +- protocols/6ff9e9/README.md | 2 +- protocols/701319/README.md | 2 +- protocols/70567f/README.md | 2 +- protocols/7062c9-2/README.md | 2 +- protocols/7062c9-aliquot/README.md | 2 +- protocols/7062c9/README.md | 2 +- protocols/71381b/README.md | 2 +- protocols/7363e4/README.md | 2 +- protocols/74312c/README.md | 2 +- protocols/743f54/README.md | 2 +- protocols/74750e/README.md | 2 +- protocols/747d99-assay-1/README.md | 2 +- protocols/747d99-assay-2/README.md | 2 +- protocols/74841a-2/README.md | 2 +- protocols/74841a/README.md | 2 +- protocols/74b303/README.md | 2 +- protocols/751127/README.md | 2 +- protocols/75cfa6/README.md | 2 +- protocols/76174b/README.md | 2 +- protocols/7663a6/README.md | 2 +- protocols/76ab0e/README.md | 2 +- protocols/76ba23-bisulfite_conversion/README.md | 2 +- protocols/76ba23-pcr1/README.md | 2 +- protocols/76ba23-pcr2/README.md | 2 +- protocols/76ba23-pooling/README.md | 2 +- protocols/76ba23/README.md | 2 +- protocols/76c562/README.md | 2 +- protocols/772041/README.md | 2 +- protocols/776039/README.md | 2 +- protocols/7805de-part-2/README.md | 2 +- protocols/7805de-part-3/README.md | 2 +- protocols/7805de-part-4/README.md | 2 +- protocols/7805de/README.md | 2 +- protocols/7855ef-part2/README.md | 2 +- protocols/7855ef-part3/README.md | 2 +- protocols/7855ef-part4/README.md | 2 +- protocols/7855ef-plate-part2/README.md | 2 +- protocols/7855ef-plate-part3/README.md | 2 +- protocols/7855ef-plate-part4/README.md | 2 +- protocols/7855ef-plate/README.md | 2 +- protocols/7855ef/README.md | 2 +- protocols/78d33c-part-2/README.md | 2 +- protocols/78d33c-part-3/README.md | 2 +- protocols/78d33c-part-4/README.md | 2 +- protocols/78d33c-part-5/README.md | 2 +- protocols/78d33c-part-6/README.md | 2 +- protocols/78d33c/README.md | 2 +- protocols/796af8/README.md | 2 +- protocols/797dee-normalization/README.md | 2 +- protocols/79e9a1-cleanup/README.md | 2 +- protocols/7a1ae8/README.md | 2 +- protocols/7a3e4b/README.md | 2 +- protocols/7aa3fd-library-pooling/README.md | 2 +- protocols/7aa3fd-library-quantification/README.md | 2 +- protocols/7aa3fd-size-selection/README.md | 2 +- protocols/7aad4e/README.md | 2 +- protocols/7ada78-pt2/README.md | 2 +- protocols/7ada78/README.md | 2 +- protocols/7cfbde/README.md | 2 +- protocols/7e3b31/README.md | 2 +- protocols/7e4c3e-1/README.md | 2 +- protocols/7e4c3e-2/README.md | 2 +- protocols/7e4c3e-3/README.md | 2 +- protocols/7e4c3e-4/README.md | 2 +- protocols/7e4c3e-5/README.md | 2 +- protocols/7e4c3e-6/README.md | 2 +- protocols/7f0f89/README.md | 2 +- protocols/7f9595/README.md | 2 +- protocols/7fc7b1/README.md | 2 +- protocols/85b0dc/README.md | 2 +- protocols/8nhsa0-norm/README.md | 2 +- protocols/8nhsa0/README.md | 2 +- protocols/9038af/README.md | 2 +- protocols/925d07-cp/README.md | 2 +- protocols/925d07-pla/README.md | 2 +- protocols/925d07-q/README.md | 2 +- protocols/925d07-v3/README.md | 2 +- protocols/9778eb/README.md | 2 +- protocols/9778eb_mass_norm/README.md | 2 +- protocols/9778eb_spri/README.md | 2 +- protocols/979d28-normalization/README.md | 2 +- protocols/979d28-pcr/README.md | 2 +- protocols/979d28/README.md | 2 +- protocols/9ot019/README.md | 2 +- protocols/ML-normalization-cdna-library/README.md | 2 +- protocols/ML-normalization/README.md | 2 +- protocols/Opentrons_Logo/README.md | 2 +- protocols/arcis-multi-test/README.md | 2 +- protocols/arcis-single-test/README.md | 2 +- protocols/batch-test-plating/README.md | 2 +- protocols/bc-rnadvance-viral-feat/README.md | 2 +- protocols/bc-rnadvance-viral/README.md | 2 +- protocols/bms-illumina-dna-prep/README.md | 2 +- protocols/bpg-rna-extraction/README.md | 2 +- protocols/cepheid/README.md | 2 +- protocols/cerillo/README.md | 2 +- protocols/checkit/README.md | 2 +- protocols/cherrypicking/README.md | 2 +- protocols/cherrypicking_simple/README.md | 2 +- protocols/complete-pcr/README.md | 2 +- protocols/covid19-rna-extraction/README.md | 2 +- protocols/csv_transfer/README.md | 2 +- protocols/customizable_serial_dilution_ot2/README.md | 2 +- protocols/demo/README.md | 2 +- protocols/dinosaur/README.md | 2 +- protocols/dynabeads_plate_prep_1/README.md | 2 +- protocols/dynabeads_plate_prep_2/README.md | 2 +- protocols/dz1j39/README.md | 2 +- protocols/e54ada/README.md | 2 +- protocols/e54ada_rt/README.md | 2 +- protocols/e9ff8d/README.md | 2 +- protocols/e9ff8d_part2/README.md | 2 +- protocols/e9ff8d_part3/README.md | 2 +- protocols/e9ff8d_part4/README.md | 2 +- protocols/ff5763/README.md | 2 +- protocols/ff5763_part2/README.md | 2 +- protocols/ff5763_part3/README.md | 2 +- protocols/ff5763_part4/README.md | 2 +- protocols/ff5763_part5/README.md | 2 +- protocols/generic_ngs_prep/README.md | 2 +- protocols/generic_pcr_prep_1/README.md | 2 +- protocols/generic_pcr_prep_2/README.md | 2 +- protocols/generic_protein_purification/README.md | 2 +- protocols/generic_station_A/README.md | 2 +- protocols/generic_station_C/README.md | 2 +- protocols/gna_octea/README.md | 2 +- protocols/gna_octea_v2/README.md | 2 +- protocols/gsdx/README.md | 2 +- protocols/heater-shaker-beta/README.md | 2 +- protocols/i7g1ym/README.md | 2 +- protocols/illumina-nextera-XT-library-prep-part1/README.md | 2 +- protocols/illumina-nextera-XT-library-prep-part2/README.md | 2 +- protocols/illumina-nextera-XT-library-prep-part3/README.md | 2 +- protocols/illumina-nextera-XT-library-prep-part4/README.md | 2 +- protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md | 2 +- protocols/macherey-nagel-nucleomag-clean-up/README.md | 2 +- protocols/macherey-nagel-nucleomag-dna-food/README.md | 2 +- protocols/macherey-nagel-nucleomag-pathogen/README.md | 2 +- protocols/macherey-nagel-nucleomag-rna/README.md | 2 +- protocols/macherey-nagel-nucleomag-size-select/README.md | 2 +- protocols/macherey-nagel-nucleomag-tissue/README.md | 2 +- protocols/macherey-nagel-nucleomag-virus/README.md | 2 +- protocols/magnesil/README.md | 2 +- .../nextera-flex-library-prep-amplify-tagmented-dna/README.md | 2 +- .../nextera-flex-library-prep-cherrypick-samples/README.md | 2 +- protocols/nextera-flex-library-prep-cleanup-libraries/README.md | 2 +- protocols/nextera-flex-library-prep-post-tag-cleanup/README.md | 2 +- protocols/nextera-flex-library-prep-tagment-dna/README.md | 2 +- protocols/normalization/README.md | 2 +- .../nucleic_acid_purification_with_magnetic_beads/README.md | 2 +- protocols/omega-biotek-xpress/README.md | 2 +- protocols/omega_biotek_magbind_totalpure_NGS/README.md | 2 +- protocols/onsite-bms-48plate/README.md | 2 +- protocols/onsite-bms/README.md | 2 +- protocols/onsite-circlelabs/README.md | 2 +- protocols/onsite-dmso/README.md | 2 +- protocols/onsite-ganda-1/README.md | 2 +- protocols/onsite-ganda-2/README.md | 2 +- protocols/onsite-ganda-3/README.md | 2 +- protocols/onsite-ganda-4/README.md | 2 +- protocols/onsite_atila_nasal/README.md | 2 +- protocols/onsite_atila_saliva/README.md | 2 +- protocols/onsite_atila_saliva384_pt1/README.md | 2 +- protocols/onsite_atila_saliva384_pt2/README.md | 2 +- protocols/onsite_egenesis/README.md | 2 +- protocols/onsite_egenesis_part2/README.md | 2 +- protocols/onsite_galatea_mag_bind/README.md | 2 +- protocols/onsite_galatea_normalization/README.md | 2 +- protocols/onsite_galatea_pre_normalization/README.md | 2 +- protocols/pcr_prep_part_1/README.md | 2 +- protocols/pcr_prep_part_2/README.md | 2 +- protocols/pcr_test_plan/README.md | 2 +- protocols/pooling/README.md | 2 +- protocols/primer_hydration/README.md | 2 +- protocols/promega-maxwell/README.md | 2 +- protocols/quintara_onsite_nanopore/README.md | 2 +- protocols/quintara_onsite_nanopore_pooling/README.md | 2 +- protocols/quintara_onsite_part1/README.md | 2 +- protocols/quintara_onsite_part1_384/README.md | 2 +- protocols/quintara_onsite_part2/README.md | 2 +- protocols/quintara_onsite_part3/README.md | 2 +- protocols/quintara_onsite_part4/README.md | 2 +- protocols/rem-pcr-plate/README.md | 2 +- protocols/sci-amplex-red/README.md | 2 +- .../README.md | 2 +- protocols/sci-dynabeads-ip-1/README.md | 2 +- protocols/sci-dynabeads-ip-2/README.md | 2 +- protocols/sci-dynabeads-tube-1/README.md | 2 +- protocols/sci-dynabeads-tube-2/README.md | 2 +- protocols/sci-idt-normalase/README.md | 2 +- protocols/sci-idt-xgen-ez/README.md | 2 +- protocols/sci-idt-xgen-mc/README.md | 2 +- protocols/sci-illumina-dna-prep/README.md | 2 +- protocols/sci-illumina-rna-enrichment-normalization/README.md | 2 +- protocols/sci-lucif-assay1-for4/README.md | 2 +- protocols/sci-lucif-assay1/README.md | 2 +- protocols/sci-lucif-assay2-for4/README.md | 2 +- protocols/sci-lucif-assay2/README.md | 2 +- protocols/sci-lucif-assay3-for4/README.md | 2 +- protocols/sci-lucif-assay3/README.md | 2 +- protocols/sci-lucif-assay4-for4/README.md | 2 +- protocols/sci-lucif-assay4/README.md | 2 +- protocols/sci-macherey-nagel-nucleomag/README.md | 2 +- protocols/sci-mag-bind-blood-tissue-kit/README.md | 2 +- protocols/sci-mgi-mgieasy-nucleic-acid-extraction-kit/README.md | 2 +- protocols/sci-neb-next-ultra/README.md | 2 +- protocols/sci-omegabiotek-extraction-fa/README.md | 2 +- protocols/sci-omegabiotek-extraction/README.md | 2 +- protocols/sci-omegabiotek-magbind-temp/README.md | 2 +- protocols/sci-omegabiotek-magbind-total-rna-96/README.md | 2 +- protocols/sci-omegabiotek-magbind/README.md | 2 +- protocols/sci-phytip-neutralization/README.md | 2 +- protocols/sci-phytip-plate-prep/README.md | 2 +- protocols/sci-phytip-protein-A/README.md | 2 +- protocols/sci-phytip-protein-puri/README.md | 2 +- protocols/sci-pierce-ninta-magnetic-beads-part-2/README.md | 2 +- protocols/sci-pierce-ninta-magnetic-beads/README.md | 2 +- protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md | 2 +- .../README.md | 2 +- protocols/sci-roche-hyperprep/README.md | 2 +- protocols/sci-tecan-cortisol-saliva-elisa/README.md | 2 +- protocols/sci-thermofisher-magmax/README.md | 2 +- protocols/sci-zymo-directzol-magbead/README.md | 2 +- protocols/sci-zymo-quick-dna-rna-magbead/README.md | 2 +- protocols/speaker-test/README.md | 2 +- protocols/standard-biotools-da-192/README.md | 2 +- protocols/standard-biotools-da-48/README.md | 2 +- protocols/standard-biotools-da-96/README.md | 2 +- protocols/swift-2s-turbo-pt1/README.md | 2 +- protocols/swift-2s-turbo-pt2/README.md | 2 +- protocols/swift-2s-turbo-pt3/README.md | 2 +- protocols/swift-fully-automated-custom/README.md | 2 +- protocols/swift-fully-automated/README.md | 2 +- protocols/testdrive/README.md | 2 +- protocols/thermocycler-csv/README.md | 2 +- protocols/thermocycler/README.md | 2 +- protocols/user-upload_ZooMS_Protocol/README.md | 2 +- protocols/zymo-quick-96/README.md | 2 +- protocols/zymo-quick-custom/README.md | 2 +- protocols/zymo-quick/README.md | 2 +- protocols/zymo-ribofree-cleanup/README.md | 2 +- .../README.md | 2 +- protocols/zymo-ribofree-library-index-pcr/README.md | 2 +- protocols/zymo-ribofree-p5-adapter-ligation/README.md | 2 +- protocols/zymo-ribofree-p7-adapter-ligation/README.md | 2 +- protocols/zymo-rna-extraction/README.md | 2 +- 826 files changed, 826 insertions(+), 826 deletions(-) diff --git a/protocols/00222e-dd/README.md b/protocols/00222e-dd/README.md index 7c02f0a6a..1dedcb25e 100644 --- a/protocols/00222e-dd/README.md +++ b/protocols/00222e-dd/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/00222e-seed/README.md b/protocols/00222e-seed/README.md index a1b0c4cb8..7ad11c87a 100644 --- a/protocols/00222e-seed/README.md +++ b/protocols/00222e-seed/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/00222e/README.md b/protocols/00222e/README.md index 2b4319440..6e7d36fbd 100644 --- a/protocols/00222e/README.md +++ b/protocols/00222e/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/002af3/README.md b/protocols/002af3/README.md index 5ba62f551..6a72c7a7c 100644 --- a/protocols/002af3/README.md +++ b/protocols/002af3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0045f1/README.md b/protocols/0045f1/README.md index dd7c6d55e..f75735bd5 100644 --- a/protocols/0045f1/README.md +++ b/protocols/0045f1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/007992/README.md b/protocols/007992/README.md index 8d0b29c8a..2b108e10a 100644 --- a/protocols/007992/README.md +++ b/protocols/007992/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/00a214-protocol-1/README.md b/protocols/00a214-protocol-1/README.md index 7a411e999..55dbe50ab 100644 --- a/protocols/00a214-protocol-1/README.md +++ b/protocols/00a214-protocol-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00a214-protocol-2/README.md b/protocols/00a214-protocol-2/README.md index e51768e54..8a8027eef 100644 --- a/protocols/00a214-protocol-2/README.md +++ b/protocols/00a214-protocol-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00a214-protocol-3/README.md b/protocols/00a214-protocol-3/README.md index fc22fa6cb..a9250e18b 100644 --- a/protocols/00a214-protocol-3/README.md +++ b/protocols/00a214-protocol-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00a214-protocol-4/README.md b/protocols/00a214-protocol-4/README.md index dba1217bb..e0e77dfea 100644 --- a/protocols/00a214-protocol-4/README.md +++ b/protocols/00a214-protocol-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00a214-protocol-5/README.md b/protocols/00a214-protocol-5/README.md index c34750b5f..1ea55ded6 100644 --- a/protocols/00a214-protocol-5/README.md +++ b/protocols/00a214-protocol-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00a577/README.md b/protocols/00a577/README.md index ba9b869a7..7954919d4 100644 --- a/protocols/00a577/README.md +++ b/protocols/00a577/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Purification diff --git a/protocols/00a6e5/README.md b/protocols/00a6e5/README.md index 31e162e6d..b03091259 100644 --- a/protocols/00a6e5/README.md +++ b/protocols/00a6e5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00bbd7/README.md b/protocols/00bbd7/README.md index 74b088839..a557e2d50 100644 --- a/protocols/00bbd7/README.md +++ b/protocols/00bbd7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00c517-pt2/README.md b/protocols/00c517-pt2/README.md index 5a03385a1..830f3c27f 100644 --- a/protocols/00c517-pt2/README.md +++ b/protocols/00c517-pt2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00c517/README.md b/protocols/00c517/README.md index d58cd1d64..f8c22e6ed 100644 --- a/protocols/00c517/README.md +++ b/protocols/00c517/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/00f7b1_part10/README.md b/protocols/00f7b1_part10/README.md index 6af704637..c212755ed 100644 --- a/protocols/00f7b1_part10/README.md +++ b/protocols/00f7b1_part10/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part2/README.md b/protocols/00f7b1_part2/README.md index 97fae3538..344c9853d 100644 --- a/protocols/00f7b1_part2/README.md +++ b/protocols/00f7b1_part2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part3/README.md b/protocols/00f7b1_part3/README.md index 34504cc4c..c7387a243 100644 --- a/protocols/00f7b1_part3/README.md +++ b/protocols/00f7b1_part3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part4/README.md b/protocols/00f7b1_part4/README.md index c1afa9941..765d5d6bd 100644 --- a/protocols/00f7b1_part4/README.md +++ b/protocols/00f7b1_part4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part5/README.md b/protocols/00f7b1_part5/README.md index e4aa3a898..3aeb1fdd0 100644 --- a/protocols/00f7b1_part5/README.md +++ b/protocols/00f7b1_part5/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part6/README.md b/protocols/00f7b1_part6/README.md index 5aa75ff17..71d93f7e8 100644 --- a/protocols/00f7b1_part6/README.md +++ b/protocols/00f7b1_part6/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part7/README.md b/protocols/00f7b1_part7/README.md index 20f667079..fdcbde912 100644 --- a/protocols/00f7b1_part7/README.md +++ b/protocols/00f7b1_part7/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part8/README.md b/protocols/00f7b1_part8/README.md index 3d7907731..1b899f64b 100644 --- a/protocols/00f7b1_part8/README.md +++ b/protocols/00f7b1_part8/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/00f7b1_part9/README.md b/protocols/00f7b1_part9/README.md index 960fb5471..0449aba31 100644 --- a/protocols/00f7b1_part9/README.md +++ b/protocols/00f7b1_part9/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/010526/README.md b/protocols/010526/README.md index 715478aa9..74a04d315 100644 --- a/protocols/010526/README.md +++ b/protocols/010526/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/010d6c/README.md b/protocols/010d6c/README.md index f513bec1f..e6dbbd018 100644 --- a/protocols/010d6c/README.md +++ b/protocols/010d6c/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0175a4/README.md b/protocols/0175a4/README.md index a5f56b7a9..9bf689002 100644 --- a/protocols/0175a4/README.md +++ b/protocols/0175a4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/017860/README.md b/protocols/017860/README.md index ad715f118..3c4ddf920 100644 --- a/protocols/017860/README.md +++ b/protocols/017860/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/019a7d/README.md b/protocols/019a7d/README.md index c44297abb..ce2843638 100644 --- a/protocols/019a7d/README.md +++ b/protocols/019a7d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/019a7d_part_2/README.md b/protocols/019a7d_part_2/README.md index 5a1017322..d36126cf8 100644 --- a/protocols/019a7d_part_2/README.md +++ b/protocols/019a7d_part_2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/01a6b9/README.md b/protocols/01a6b9/README.md index 4815e37ad..ca4130ad7 100644 --- a/protocols/01a6b9/README.md +++ b/protocols/01a6b9/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/01b4a2/README.md b/protocols/01b4a2/README.md index 47c1a529a..b8249cc57 100644 --- a/protocols/01b4a2/README.md +++ b/protocols/01b4a2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/022548-2/README.md b/protocols/022548-2/README.md index a7bc50c25..f24e1a52e 100644 --- a/protocols/022548-2/README.md +++ b/protocols/022548-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/022548/README.md b/protocols/022548/README.md index 5b901d566..370f63f03 100644 --- a/protocols/022548/README.md +++ b/protocols/022548/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/022a99/README.md b/protocols/022a99/README.md index 4f224b1c2..af979a904 100644 --- a/protocols/022a99/README.md +++ b/protocols/022a99/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories diff --git a/protocols/029f5b/README.md b/protocols/029f5b/README.md index 4ada8aeb1..8d8a44535 100644 --- a/protocols/029f5b/README.md +++ b/protocols/029f5b/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * SAMPLE PREP diff --git a/protocols/02b308/README.md b/protocols/02b308/README.md index d8d0d7a75..83583dd45 100644 --- a/protocols/02b308/README.md +++ b/protocols/02b308/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/02pnzp/README.md b/protocols/02pnzp/README.md index d5a0a4cfc..4045624b2 100644 --- a/protocols/02pnzp/README.md +++ b/protocols/02pnzp/README.md @@ -3,7 +3,7 @@ Michael Fichtner -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * DNA/RNA diff --git a/protocols/030dd8-amplify/README.md b/protocols/030dd8-amplify/README.md index 9385e4f1b..46dba3c2b 100644 --- a/protocols/030dd8-amplify/README.md +++ b/protocols/030dd8-amplify/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/030dd8-amplify2/README.md b/protocols/030dd8-amplify2/README.md index 86443397d..c1c23d6ce 100644 --- a/protocols/030dd8-amplify2/README.md +++ b/protocols/030dd8-amplify2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/030dd8-anneal/README.md b/protocols/030dd8-anneal/README.md index 5c53ca236..c23479bd4 100644 --- a/protocols/030dd8-anneal/README.md +++ b/protocols/030dd8-anneal/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/030dd8-cleanup/README.md b/protocols/030dd8-cleanup/README.md index e06811473..42278473b 100644 --- a/protocols/030dd8-cleanup/README.md +++ b/protocols/030dd8-cleanup/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/030dd8-synthesize/README.md b/protocols/030dd8-synthesize/README.md index 43ad6fefc..b85800065 100644 --- a/protocols/030dd8-synthesize/README.md +++ b/protocols/030dd8-synthesize/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/030dd8-tagment/README.md b/protocols/030dd8-tagment/README.md index c31ac334c..7a4f5366d 100644 --- a/protocols/030dd8-tagment/README.md +++ b/protocols/030dd8-tagment/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/030dd8/README.md b/protocols/030dd8/README.md index f664b62e3..e08243754 100644 --- a/protocols/030dd8/README.md +++ b/protocols/030dd8/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/036016/README.md b/protocols/036016/README.md index dbcb53f7c..fd1c5ec24 100644 --- a/protocols/036016/README.md +++ b/protocols/036016/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/039ecb/README.md b/protocols/039ecb/README.md index 82a418314..493af20c4 100644 --- a/protocols/039ecb/README.md +++ b/protocols/039ecb/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/03f9cd/README.md b/protocols/03f9cd/README.md index 394d83ef6..c830a5146 100644 --- a/protocols/03f9cd/README.md +++ b/protocols/03f9cd/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/041adf/README.md b/protocols/041adf/README.md index 253a641f3..bf4608805 100644 --- a/protocols/041adf/README.md +++ b/protocols/041adf/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/04318b/README.md b/protocols/04318b/README.md index ab7a20dcf..4f9997300 100644 --- a/protocols/04318b/README.md +++ b/protocols/04318b/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0451f3/README.md b/protocols/0451f3/README.md index bc816b5c5..833f202c3 100644 --- a/protocols/0451f3/README.md +++ b/protocols/0451f3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Purification & Extraction diff --git a/protocols/04552f/README.md b/protocols/04552f/README.md index 0c9465426..d4c8e392a 100644 --- a/protocols/04552f/README.md +++ b/protocols/04552f/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0479ad-cp/README.md b/protocols/0479ad-cp/README.md index 3697c75d0..3ff0f695f 100644 --- a/protocols/0479ad-cp/README.md +++ b/protocols/0479ad-cp/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0479ad-part-2/README.md b/protocols/0479ad-part-2/README.md index 781851efc..1bd5b4ed4 100644 --- a/protocols/0479ad-part-2/README.md +++ b/protocols/0479ad-part-2/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0479ad-part-3/README.md b/protocols/0479ad-part-3/README.md index 9dcc42461..671bdb6e4 100644 --- a/protocols/0479ad-part-3/README.md +++ b/protocols/0479ad-part-3/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0479ad-part-4/README.md b/protocols/0479ad-part-4/README.md index 61e1fc37e..1c3f15000 100644 --- a/protocols/0479ad-part-4/README.md +++ b/protocols/0479ad-part-4/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0479ad-part-5/README.md b/protocols/0479ad-part-5/README.md index 13fe2ee02..d44ddcb3f 100644 --- a/protocols/0479ad-part-5/README.md +++ b/protocols/0479ad-part-5/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0479ad/README.md b/protocols/0479ad/README.md index 500e413cf..a85459989 100644 --- a/protocols/0479ad/README.md +++ b/protocols/0479ad/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04bec0/README.md b/protocols/04bec0/README.md index 48ac55e49..a587f1caa 100644 --- a/protocols/04bec0/README.md +++ b/protocols/04bec0/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/04eeb1-part-2/README.md b/protocols/04eeb1-part-2/README.md index 4e7d2659e..baa3f4eb9 100644 --- a/protocols/04eeb1-part-2/README.md +++ b/protocols/04eeb1-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04eeb1-part-3/README.md b/protocols/04eeb1-part-3/README.md index a26e3e52e..666c4c626 100644 --- a/protocols/04eeb1-part-3/README.md +++ b/protocols/04eeb1-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04eeb1-part-4/README.md b/protocols/04eeb1-part-4/README.md index 11b61d731..23613ee87 100644 --- a/protocols/04eeb1-part-4/README.md +++ b/protocols/04eeb1-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04eeb1-part-5/README.md b/protocols/04eeb1-part-5/README.md index c7a6c2a59..6e98c55c1 100644 --- a/protocols/04eeb1-part-5/README.md +++ b/protocols/04eeb1-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04eeb1-part-6/README.md b/protocols/04eeb1-part-6/README.md index ae4844357..6c98a467f 100644 --- a/protocols/04eeb1-part-6/README.md +++ b/protocols/04eeb1-part-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04eeb1-part-7/README.md b/protocols/04eeb1-part-7/README.md index bad69f5f5..3d0b9a7b1 100644 --- a/protocols/04eeb1-part-7/README.md +++ b/protocols/04eeb1-part-7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04eeb1/README.md b/protocols/04eeb1/README.md index 240e7c180..1c9244502 100644 --- a/protocols/04eeb1/README.md +++ b/protocols/04eeb1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/04f310/README.md b/protocols/04f310/README.md index ce908e3b8..d02197619 100644 --- a/protocols/04f310/README.md +++ b/protocols/04f310/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/04f4e7/README.md b/protocols/04f4e7/README.md index a64dc3db6..47ed905fe 100644 --- a/protocols/04f4e7/README.md +++ b/protocols/04f4e7/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/04fed3/README.md b/protocols/04fed3/README.md index 8b06ef8b7..452dfc742 100644 --- a/protocols/04fed3/README.md +++ b/protocols/04fed3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/051557/README.md b/protocols/051557/README.md index 388d2ab31..1069e58d2 100644 --- a/protocols/051557/README.md +++ b/protocols/051557/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0523c2/README.md b/protocols/0523c2/README.md index 89b766727..6b385bdc1 100644 --- a/protocols/0523c2/README.md +++ b/protocols/0523c2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/052d03/README.md b/protocols/052d03/README.md index 341df2fca..6b3900023 100644 --- a/protocols/052d03/README.md +++ b/protocols/052d03/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0530d8-pt2/README.md b/protocols/0530d8-pt2/README.md index 8b638f136..d59ba6cb0 100644 --- a/protocols/0530d8-pt2/README.md +++ b/protocols/0530d8-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/0530d8/README.md b/protocols/0530d8/README.md index b7b40c575..ea57a5dd9 100644 --- a/protocols/0530d8/README.md +++ b/protocols/0530d8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/053386-pt2/README.md b/protocols/053386-pt2/README.md index c9ad9e9e6..7f4d59cd3 100644 --- a/protocols/053386-pt2/README.md +++ b/protocols/053386-pt2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/053386-pt3/README.md b/protocols/053386-pt3/README.md index e8359bfe7..ee4b4dd77 100644 --- a/protocols/053386-pt3/README.md +++ b/protocols/053386-pt3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/053386/README.md b/protocols/053386/README.md index 30bd88b50..4342b8e8e 100644 --- a/protocols/053386/README.md +++ b/protocols/053386/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0556be-bmda/README.md b/protocols/0556be-bmda/README.md index 2134159d8..cae5785ec 100644 --- a/protocols/0556be-bmda/README.md +++ b/protocols/0556be-bmda/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0556be-covid-mm-qc-v3/README.md b/protocols/0556be-covid-mm-qc-v3/README.md index e3063bc7b..8ebadace4 100644 --- a/protocols/0556be-covid-mm-qc-v3/README.md +++ b/protocols/0556be-covid-mm-qc-v3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0556be-covid-mm-qc/README.md b/protocols/0556be-covid-mm-qc/README.md index f6ef7c8b9..491ad0eeb 100644 --- a/protocols/0556be-covid-mm-qc/README.md +++ b/protocols/0556be-covid-mm-qc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0556be-covid-ntc/README.md b/protocols/0556be-covid-ntc/README.md index 202665b84..a6f5eff99 100644 --- a/protocols/0556be-covid-ntc/README.md +++ b/protocols/0556be-covid-ntc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/055b94/README.md b/protocols/055b94/README.md index 3853ec65b..ddb62a6ff 100644 --- a/protocols/055b94/README.md +++ b/protocols/055b94/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/055f76/README.md b/protocols/055f76/README.md index 3c7a1800d..f3db47fb0 100644 --- a/protocols/055f76/README.md +++ b/protocols/055f76/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/056543/README.md b/protocols/056543/README.md index 6709b41ac..5a0f42f60 100644 --- a/protocols/056543/README.md +++ b/protocols/056543/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/056f47/README.md b/protocols/056f47/README.md index 362eb4336..18c255f16 100644 --- a/protocols/056f47/README.md +++ b/protocols/056f47/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/058124/README.md b/protocols/058124/README.md index 6df3babc0..bc1b1734d 100644 --- a/protocols/058124/README.md +++ b/protocols/058124/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/059126/README.md b/protocols/059126/README.md index 9af968981..cbc2c4f6a 100644 --- a/protocols/059126/README.md +++ b/protocols/059126/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/05f673/README.md b/protocols/05f673/README.md index 79f1e1fcc..e7fa1e831 100644 --- a/protocols/05f673/README.md +++ b/protocols/05f673/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/05fb0f/README.md b/protocols/05fb0f/README.md index 2eb3618ef..b56f937bb 100644 --- a/protocols/05fb0f/README.md +++ b/protocols/05fb0f/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/060c4f/README.md b/protocols/060c4f/README.md index 8b3d5a3d2..c5a714f97 100644 --- a/protocols/060c4f/README.md +++ b/protocols/060c4f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/063611-part-2/README.md b/protocols/063611-part-2/README.md index 715d7b31b..8edfc9e88 100644 --- a/protocols/063611-part-2/README.md +++ b/protocols/063611-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/063611/README.md b/protocols/063611/README.md index 4e88cecdb..0f9843da3 100644 --- a/protocols/063611/README.md +++ b/protocols/063611/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/06ab09/README.md b/protocols/06ab09/README.md index 4199fa4e2..0f5143d5b 100644 --- a/protocols/06ab09/README.md +++ b/protocols/06ab09/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/06da40/README.md b/protocols/06da40/README.md index 26dda564f..a392cc4a9 100644 --- a/protocols/06da40/README.md +++ b/protocols/06da40/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/06e5b6/README.md b/protocols/06e5b6/README.md index 2a7ebb1e3..0b1eb72b2 100644 --- a/protocols/06e5b6/README.md +++ b/protocols/06e5b6/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/072463/README.md b/protocols/072463/README.md index 9ddc8ea9f..8c576b8b5 100644 --- a/protocols/072463/README.md +++ b/protocols/072463/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/075bee/README.md b/protocols/075bee/README.md index acfbb0217..77f660a71 100644 --- a/protocols/075bee/README.md +++ b/protocols/075bee/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/076f67/README.md b/protocols/076f67/README.md index aeb5a7b81..842aeea02 100644 --- a/protocols/076f67/README.md +++ b/protocols/076f67/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/079db2/README.md b/protocols/079db2/README.md index 700781795..a5ebf4c34 100644 --- a/protocols/079db2/README.md +++ b/protocols/079db2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/07c65a/README.md b/protocols/07c65a/README.md index d68ba7d5c..f7bfb5372 100644 --- a/protocols/07c65a/README.md +++ b/protocols/07c65a/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/07caf7/README.md b/protocols/07caf7/README.md index 517f2fc0a..10a5a4f06 100644 --- a/protocols/07caf7/README.md +++ b/protocols/07caf7/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/08207f/README.md b/protocols/08207f/README.md index 3f9918da0..19b750128 100644 --- a/protocols/08207f/README.md +++ b/protocols/08207f/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Normalization diff --git a/protocols/0845ab/README.md b/protocols/0845ab/README.md index d26fa459c..102b2dd61 100644 --- a/protocols/0845ab/README.md +++ b/protocols/0845ab/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0849c2/README.md b/protocols/0849c2/README.md index a885b9803..19c6fe030 100644 --- a/protocols/0849c2/README.md +++ b/protocols/0849c2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/08878b/README.md b/protocols/08878b/README.md index 5e6e2f0d4..92d370378 100644 --- a/protocols/08878b/README.md +++ b/protocols/08878b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/089108/README.md b/protocols/089108/README.md index 94fa5c691..9880c0810 100644 --- a/protocols/089108/README.md +++ b/protocols/089108/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NUCLEIC ACID EXTRACTION & PURIFICATION diff --git a/protocols/08aeaa/README.md b/protocols/08aeaa/README.md index 41d707584..3f7dbfd34 100644 --- a/protocols/08aeaa/README.md +++ b/protocols/08aeaa/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/08bbaf/README.md b/protocols/08bbaf/README.md index 561104468..36a22dfd9 100644 --- a/protocols/08bbaf/README.md +++ b/protocols/08bbaf/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/08e3eb/README.md b/protocols/08e3eb/README.md index 1e886ddae..b118948a9 100644 --- a/protocols/08e3eb/README.md +++ b/protocols/08e3eb/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/08fd01-pt2/README.md b/protocols/08fd01-pt2/README.md index 618185708..373d086f1 100644 --- a/protocols/08fd01-pt2/README.md +++ b/protocols/08fd01-pt2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/08fd01-pt3/README.md b/protocols/08fd01-pt3/README.md index b92ea5583..2891cf3cd 100644 --- a/protocols/08fd01-pt3/README.md +++ b/protocols/08fd01-pt3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/08fd01/README.md b/protocols/08fd01/README.md index 3d2a0b3a7..2d97e6157 100644 --- a/protocols/08fd01/README.md +++ b/protocols/08fd01/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0909e6/README.md b/protocols/0909e6/README.md index 24fb01436..81f10a601 100644 --- a/protocols/0909e6/README.md +++ b/protocols/0909e6/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/090c2e/README.md b/protocols/090c2e/README.md index 00c478eaf..2959102cf 100644 --- a/protocols/090c2e/README.md +++ b/protocols/090c2e/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories diff --git a/protocols/0944e4/README.md b/protocols/0944e4/README.md index a89977891..4c40407de 100644 --- a/protocols/0944e4/README.md +++ b/protocols/0944e4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0961d2-part1/README.md b/protocols/0961d2-part1/README.md index 9e0f5ecbb..194418ef7 100644 --- a/protocols/0961d2-part1/README.md +++ b/protocols/0961d2-part1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0961d2-part2/README.md b/protocols/0961d2-part2/README.md index aa664cb7f..0c4fb6430 100644 --- a/protocols/0961d2-part2/README.md +++ b/protocols/0961d2-part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0961d2-part3/README.md b/protocols/0961d2-part3/README.md index 059898475..228485c7c 100644 --- a/protocols/0961d2-part3/README.md +++ b/protocols/0961d2-part3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0961d2-part4/README.md b/protocols/0961d2-part4/README.md index 63d763965..ef01070a3 100644 --- a/protocols/0961d2-part4/README.md +++ b/protocols/0961d2-part4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0966ae/README.md b/protocols/0966ae/README.md index 97b1ed9c7..4932d904a 100644 --- a/protocols/0966ae/README.md +++ b/protocols/0966ae/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/09cdbe/README.md b/protocols/09cdbe/README.md index 703f15be7..2165e44d6 100644 --- a/protocols/09cdbe/README.md +++ b/protocols/09cdbe/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0a23c6/README.md b/protocols/0a23c6/README.md index 5835f59aa..ee882d6cd 100644 --- a/protocols/0a23c6/README.md +++ b/protocols/0a23c6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0a25f2/README.md b/protocols/0a25f2/README.md index 0b8e98644..82ee5022b 100644 --- a/protocols/0a25f2/README.md +++ b/protocols/0a25f2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0a33e8/README.md b/protocols/0a33e8/README.md index cb7bc20b3..c27d6f694 100644 --- a/protocols/0a33e8/README.md +++ b/protocols/0a33e8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0a9b58/README.md b/protocols/0a9b58/README.md index 04f30b911..e7a09c24d 100644 --- a/protocols/0a9b58/README.md +++ b/protocols/0a9b58/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0aa51a/README.md b/protocols/0aa51a/README.md index 64c3c6e7c..1d9417e77 100644 --- a/protocols/0aa51a/README.md +++ b/protocols/0aa51a/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0add76/README.md b/protocols/0add76/README.md index cc6583491..fe88ed3b6 100644 --- a/protocols/0add76/README.md +++ b/protocols/0add76/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0aee8a/README.md b/protocols/0aee8a/README.md index 7c6171164..a4f663694 100644 --- a/protocols/0aee8a/README.md +++ b/protocols/0aee8a/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0b83b7/README.md b/protocols/0b83b7/README.md index 15da3ae4f..23d937ea6 100644 --- a/protocols/0b83b7/README.md +++ b/protocols/0b83b7/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0b97ae-protocol-2A/README.md b/protocols/0b97ae-protocol-2A/README.md index 50fc77484..771bcd45b 100644 --- a/protocols/0b97ae-protocol-2A/README.md +++ b/protocols/0b97ae-protocol-2A/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS LIBRARY PREP diff --git a/protocols/0b97ae-protocol-2B/README.md b/protocols/0b97ae-protocol-2B/README.md index 6f6bc29c6..afc8b66dc 100644 --- a/protocols/0b97ae-protocol-2B/README.md +++ b/protocols/0b97ae-protocol-2B/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS LIBRARY PREP diff --git a/protocols/0b97ae-protocol-3B/README.md b/protocols/0b97ae-protocol-3B/README.md index fea543853..69c3ea373 100644 --- a/protocols/0b97ae-protocol-3B/README.md +++ b/protocols/0b97ae-protocol-3B/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS LIBRARY PREP diff --git a/protocols/0b97ae/README.md b/protocols/0b97ae/README.md index 8331fd929..e0aeb9f8c 100644 --- a/protocols/0b97ae/README.md +++ b/protocols/0b97ae/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * SAMPLE PREP diff --git a/protocols/0b98cc/README.md b/protocols/0b98cc/README.md index 2150141c2..4ffecf075 100644 --- a/protocols/0b98cc/README.md +++ b/protocols/0b98cc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0ba998-2/README.md b/protocols/0ba998-2/README.md index c26a64eab..846dd54da 100644 --- a/protocols/0ba998-2/README.md +++ b/protocols/0ba998-2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0ba998-3/README.md b/protocols/0ba998-3/README.md index 5c6de0ed4..85498c91e 100644 --- a/protocols/0ba998-3/README.md +++ b/protocols/0ba998-3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0ba998-4/README.md b/protocols/0ba998-4/README.md index 9fae99f81..106253ab4 100644 --- a/protocols/0ba998-4/README.md +++ b/protocols/0ba998-4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0ba998/README.md b/protocols/0ba998/README.md index f58710bda..f9738078a 100644 --- a/protocols/0ba998/README.md +++ b/protocols/0ba998/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0bd707/README.md b/protocols/0bd707/README.md index 5c1d71ff7..106aecaf3 100644 --- a/protocols/0bd707/README.md +++ b/protocols/0bd707/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0be1bf/README.md b/protocols/0be1bf/README.md index ccf2323bc..3e1edff6c 100644 --- a/protocols/0be1bf/README.md +++ b/protocols/0be1bf/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0bf4f4-pt2/README.md b/protocols/0bf4f4-pt2/README.md index 6aca50f97..553f0e991 100644 --- a/protocols/0bf4f4-pt2/README.md +++ b/protocols/0bf4f4-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0bf4f4-pt3/README.md b/protocols/0bf4f4-pt3/README.md index a7fcd341b..12c509e7f 100644 --- a/protocols/0bf4f4-pt3/README.md +++ b/protocols/0bf4f4-pt3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0bf4f4/README.md b/protocols/0bf4f4/README.md index bd7c38e19..09f9c3bd3 100644 --- a/protocols/0bf4f4/README.md +++ b/protocols/0bf4f4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0c24ca/README.md b/protocols/0c24ca/README.md index 8e8e51d20..3de629a02 100644 --- a/protocols/0c24ca/README.md +++ b/protocols/0c24ca/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0c3e45/README.md b/protocols/0c3e45/README.md index 2a5ee9cfc..a9dc38230 100644 --- a/protocols/0c3e45/README.md +++ b/protocols/0c3e45/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0ca318-pt2/README.md b/protocols/0ca318-pt2/README.md index ae4e90778..8a7d5446e 100644 --- a/protocols/0ca318-pt2/README.md +++ b/protocols/0ca318-pt2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0ca318/README.md b/protocols/0ca318/README.md index b1bd1cae7..f77254e71 100644 --- a/protocols/0ca318/README.md +++ b/protocols/0ca318/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0cded6-amplify/README.md b/protocols/0cded6-amplify/README.md index 361995b53..a0710e342 100644 --- a/protocols/0cded6-amplify/README.md +++ b/protocols/0cded6-amplify/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0cded6-amplify2/README.md b/protocols/0cded6-amplify2/README.md index d236f0c51..cd5c45e21 100644 --- a/protocols/0cded6-amplify2/README.md +++ b/protocols/0cded6-amplify2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0cded6-cleanup/README.md b/protocols/0cded6-cleanup/README.md index 06a06cf52..5e0d2aefa 100644 --- a/protocols/0cded6-cleanup/README.md +++ b/protocols/0cded6-cleanup/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0cded6-synthesize/README.md b/protocols/0cded6-synthesize/README.md index 296040c4a..46c9b798c 100644 --- a/protocols/0cded6-synthesize/README.md +++ b/protocols/0cded6-synthesize/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0cded6-tagment/README.md b/protocols/0cded6-tagment/README.md index cea10d5e5..6c817279f 100644 --- a/protocols/0cded6-tagment/README.md +++ b/protocols/0cded6-tagment/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0cded6/README.md b/protocols/0cded6/README.md index 7c432d219..711448381 100644 --- a/protocols/0cded6/README.md +++ b/protocols/0cded6/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0d2950/README.md b/protocols/0d2950/README.md index f06ecc25e..19d9d66b7 100644 --- a/protocols/0d2950/README.md +++ b/protocols/0d2950/README.md @@ -7,7 +7,7 @@ [appliedbiosystems](https://www.thermofisher.com/content/dam/LifeTech/Documents/PDFs/clinical/taqpath-COVID-19-combo-kit-full-instructions-for-use.pdf) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0d868e-part2/README.md b/protocols/0d868e-part2/README.md index 49608eff2..12c503c68 100644 --- a/protocols/0d868e-part2/README.md +++ b/protocols/0d868e-part2/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0d868e/README.md b/protocols/0d868e/README.md index 554d4cc87..fa307e71e 100644 --- a/protocols/0d868e/README.md +++ b/protocols/0d868e/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0dda91/README.md b/protocols/0dda91/README.md index 4cb5a52ab..74eb2e5dd 100644 --- a/protocols/0dda91/README.md +++ b/protocols/0dda91/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0df680/README.md b/protocols/0df680/README.md index 7ea39ff94..fd4a9be81 100644 --- a/protocols/0df680/README.md +++ b/protocols/0df680/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0e39fc/README.md b/protocols/0e39fc/README.md index 41bbba1b4..44fa3d44e 100644 --- a/protocols/0e39fc/README.md +++ b/protocols/0e39fc/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0e525c/README.md b/protocols/0e525c/README.md index 94e5b3b2f..22c0588c5 100644 --- a/protocols/0e525c/README.md +++ b/protocols/0e525c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0e696e/README.md b/protocols/0e696e/README.md index dcfa0ecab..d03ae0d65 100644 --- a/protocols/0e696e/README.md +++ b/protocols/0e696e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0e7175-pt2/README.md b/protocols/0e7175-pt2/README.md index 54efc9902..291518b31 100644 --- a/protocols/0e7175-pt2/README.md +++ b/protocols/0e7175-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0e7175/README.md b/protocols/0e7175/README.md index ff6f04c1c..bb62c503c 100644 --- a/protocols/0e7175/README.md +++ b/protocols/0e7175/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0e8475/README.md b/protocols/0e8475/README.md index 415daeb30..41e440f6b 100644 --- a/protocols/0e8475/README.md +++ b/protocols/0e8475/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0e8e3/README.md b/protocols/0e8e3/README.md index df4039eba..63a28adc2 100644 --- a/protocols/0e8e3/README.md +++ b/protocols/0e8e3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0eaeb5/README.md b/protocols/0eaeb5/README.md index a46779053..498248375 100644 --- a/protocols/0eaeb5/README.md +++ b/protocols/0eaeb5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS diff --git a/protocols/0edc68/README.md b/protocols/0edc68/README.md index 3bbc9b0be..033c2c774 100644 --- a/protocols/0edc68/README.md +++ b/protocols/0edc68/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/0ef96f/README.md b/protocols/0ef96f/README.md index 0df6451c4..7728731bd 100644 --- a/protocols/0ef96f/README.md +++ b/protocols/0ef96f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0f3b60/README.md b/protocols/0f3b60/README.md index 75df82fed..5d9d4a6ba 100644 --- a/protocols/0f3b60/README.md +++ b/protocols/0f3b60/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0f409e/README.md b/protocols/0f409e/README.md index 922d5e432..05a06a56e 100644 --- a/protocols/0f409e/README.md +++ b/protocols/0f409e/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0f4405/README.md b/protocols/0f4405/README.md index 63eb79587..3cae5ee9e 100644 --- a/protocols/0f4405/README.md +++ b/protocols/0f4405/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/0f5985/README.md b/protocols/0f5985/README.md index a5e812e3e..9f3464de3 100644 --- a/protocols/0f5985/README.md +++ b/protocols/0f5985/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/0f5c31/README.md b/protocols/0f5c31/README.md index bf32edbd1..13a3fe20f 100644 --- a/protocols/0f5c31/README.md +++ b/protocols/0f5c31/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteiomics diff --git a/protocols/0f7910/README.md b/protocols/0f7910/README.md index 0a0a51c9e..14381145d 100644 --- a/protocols/0f7910/README.md +++ b/protocols/0f7910/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0fa015/README.md b/protocols/0fa015/README.md index 21cc60f7a..25d08a84d 100644 --- a/protocols/0fa015/README.md +++ b/protocols/0fa015/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/0fd3dd/README.md b/protocols/0fd3dd/README.md index a3fba3453..60680133b 100644 --- a/protocols/0fd3dd/README.md +++ b/protocols/0fd3dd/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PROTEINS & PROTEOMICS diff --git a/protocols/0fdc01/README.md b/protocols/0fdc01/README.md index 8b160a9a0..a2127b4e4 100644 --- a/protocols/0fdc01/README.md +++ b/protocols/0fdc01/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/0ff0c3/README.md b/protocols/0ff0c3/README.md index 6846ac9ca..7191f89fe 100644 --- a/protocols/0ff0c3/README.md +++ b/protocols/0ff0c3/README.md @@ -5,7 +5,7 @@ Nucleic Acid Purification [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/1033g1/README.md b/protocols/1033g1/README.md index 924706d73..b243bffc5 100644 --- a/protocols/1033g1/README.md +++ b/protocols/1033g1/README.md @@ -6,7 +6,7 @@ Vasudha Nair -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Cell and Tissue Culture diff --git a/protocols/10bf60-station-B/README.md b/protocols/10bf60-station-B/README.md index fb712a332..8276fb93b 100644 --- a/protocols/10bf60-station-B/README.md +++ b/protocols/10bf60-station-B/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/10bf60-station-C/README.md b/protocols/10bf60-station-C/README.md index 3858c6246..2b9cd6415 100644 --- a/protocols/10bf60-station-C/README.md +++ b/protocols/10bf60-station-C/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/111210-part-10/README.md b/protocols/111210-part-10/README.md index 93f3d0fbb..84df35f46 100644 --- a/protocols/111210-part-10/README.md +++ b/protocols/111210-part-10/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-2/README.md b/protocols/111210-part-2/README.md index 6a8812a68..89b774127 100644 --- a/protocols/111210-part-2/README.md +++ b/protocols/111210-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-3/README.md b/protocols/111210-part-3/README.md index fd6629ac0..486d078f7 100644 --- a/protocols/111210-part-3/README.md +++ b/protocols/111210-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-4/README.md b/protocols/111210-part-4/README.md index 82f20b23d..a9dee5834 100644 --- a/protocols/111210-part-4/README.md +++ b/protocols/111210-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-5/README.md b/protocols/111210-part-5/README.md index f680829b5..4addecae3 100644 --- a/protocols/111210-part-5/README.md +++ b/protocols/111210-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-6/README.md b/protocols/111210-part-6/README.md index 89d4781ba..7cf787f95 100644 --- a/protocols/111210-part-6/README.md +++ b/protocols/111210-part-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-7/README.md b/protocols/111210-part-7/README.md index 0a6054224..98cd9e65c 100644 --- a/protocols/111210-part-7/README.md +++ b/protocols/111210-part-7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-8/README.md b/protocols/111210-part-8/README.md index 78ea51b2c..a75c31057 100644 --- a/protocols/111210-part-8/README.md +++ b/protocols/111210-part-8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210-part-9/README.md b/protocols/111210-part-9/README.md index e04fea704..65df6cf04 100644 --- a/protocols/111210-part-9/README.md +++ b/protocols/111210-part-9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/111210/README.md b/protocols/111210/README.md index f27f3fe91..f4e10efe6 100644 --- a/protocols/111210/README.md +++ b/protocols/111210/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/115d98/README.md b/protocols/115d98/README.md index a25d5516c..4e90b2017 100644 --- a/protocols/115d98/README.md +++ b/protocols/115d98/README.md @@ -7,7 +7,7 @@ [BasisDx](https://www.basisdx.org/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1185d3/README.md b/protocols/1185d3/README.md index e56f2fa45..97f8f7c1a 100644 --- a/protocols/1185d3/README.md +++ b/protocols/1185d3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/118e8c/README.md b/protocols/118e8c/README.md index 05ee7d5fa..0fb688c18 100644 --- a/protocols/118e8c/README.md +++ b/protocols/118e8c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/11bb6a-part-2/README.md b/protocols/11bb6a-part-2/README.md index 62be95ebf..52ceac743 100644 --- a/protocols/11bb6a-part-2/README.md +++ b/protocols/11bb6a-part-2/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-3/README.md b/protocols/11bb6a-part-3/README.md index 66e8112f0..528757d4b 100644 --- a/protocols/11bb6a-part-3/README.md +++ b/protocols/11bb6a-part-3/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-4/README.md b/protocols/11bb6a-part-4/README.md index 4b0c1259d..4e0464ddc 100644 --- a/protocols/11bb6a-part-4/README.md +++ b/protocols/11bb6a-part-4/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-5/README.md b/protocols/11bb6a-part-5/README.md index c9f18e03e..a124e950d 100644 --- a/protocols/11bb6a-part-5/README.md +++ b/protocols/11bb6a-part-5/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-6/README.md b/protocols/11bb6a-part-6/README.md index a31adbb7c..2af8ab800 100644 --- a/protocols/11bb6a-part-6/README.md +++ b/protocols/11bb6a-part-6/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-7/README.md b/protocols/11bb6a-part-7/README.md index 2a69b1408..2459a2ff9 100644 --- a/protocols/11bb6a-part-7/README.md +++ b/protocols/11bb6a-part-7/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-8/README.md b/protocols/11bb6a-part-8/README.md index ba4e85062..8029fedc1 100644 --- a/protocols/11bb6a-part-8/README.md +++ b/protocols/11bb6a-part-8/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a-part-9/README.md b/protocols/11bb6a-part-9/README.md index 75c11b51f..f7c443ebc 100644 --- a/protocols/11bb6a-part-9/README.md +++ b/protocols/11bb6a-part-9/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11bb6a/README.md b/protocols/11bb6a/README.md index 09b7ab070..1f5ea8752 100644 --- a/protocols/11bb6a/README.md +++ b/protocols/11bb6a/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/11beaa/README.md b/protocols/11beaa/README.md index 5d94f2937..a8dc3cded 100644 --- a/protocols/11beaa/README.md +++ b/protocols/11beaa/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/1211/README.md b/protocols/1211/README.md index b9423e573..4e632e8dc 100644 --- a/protocols/1211/README.md +++ b/protocols/1211/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-2-384/README.md b/protocols/121d15-2-384/README.md index cd75bf404..efa20d935 100644 --- a/protocols/121d15-2-384/README.md +++ b/protocols/121d15-2-384/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-2-96-Greiner-1000/README.md b/protocols/121d15-2-96-Greiner-1000/README.md index 056ff66a3..38c61d4aa 100644 --- a/protocols/121d15-2-96-Greiner-1000/README.md +++ b/protocols/121d15-2-96-Greiner-1000/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-2-96-Greiner-500/README.md b/protocols/121d15-2-96-Greiner-500/README.md index 064da3004..f559fa736 100644 --- a/protocols/121d15-2-96-Greiner-500/README.md +++ b/protocols/121d15-2-96-Greiner-500/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-2-96-Irish-2200/README.md b/protocols/121d15-2-96-Irish-2200/README.md index 51c67eb9c..42e3129a9 100644 --- a/protocols/121d15-2-96-Irish-2200/README.md +++ b/protocols/121d15-2-96-Irish-2200/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-3/README.md b/protocols/121d15-3/README.md index 89d83f55b..ecff24872 100644 --- a/protocols/121d15-3/README.md +++ b/protocols/121d15-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-4/README.md b/protocols/121d15-4/README.md index c9310d964..a3135d06d 100644 --- a/protocols/121d15-4/README.md +++ b/protocols/121d15-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-5/README.md b/protocols/121d15-5/README.md index 7f8ca5916..9587b99f8 100644 --- a/protocols/121d15-5/README.md +++ b/protocols/121d15-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-6/README.md b/protocols/121d15-6/README.md index 8a05748e7..e3f9b9b68 100644 --- a/protocols/121d15-6/README.md +++ b/protocols/121d15-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-7-2ml-15ml-aliquot/README.md b/protocols/121d15-7-2ml-15ml-aliquot/README.md index 778ba8f80..019c6ecb7 100644 --- a/protocols/121d15-7-2ml-15ml-aliquot/README.md +++ b/protocols/121d15-7-2ml-15ml-aliquot/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-7-2ml-15ml-pool/README.md b/protocols/121d15-7-2ml-15ml-pool/README.md index 778ba8f80..019c6ecb7 100644 --- a/protocols/121d15-7-2ml-15ml-pool/README.md +++ b/protocols/121d15-7-2ml-15ml-pool/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-7-2ml-2ml-aliquot/README.md b/protocols/121d15-7-2ml-2ml-aliquot/README.md index 60a7f99f3..2de13e2be 100644 --- a/protocols/121d15-7-2ml-2ml-aliquot/README.md +++ b/protocols/121d15-7-2ml-2ml-aliquot/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-7-2ml-2ml-pool/README.md b/protocols/121d15-7-2ml-2ml-pool/README.md index 3c98ac247..64b615847 100644 --- a/protocols/121d15-7-2ml-2ml-pool/README.md +++ b/protocols/121d15-7-2ml-2ml-pool/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15-repeat/README.md b/protocols/121d15-repeat/README.md index 4b657da31..3ce67869c 100644 --- a/protocols/121d15-repeat/README.md +++ b/protocols/121d15-repeat/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/121d15/README.md b/protocols/121d15/README.md index 5e92aee8f..b1a410f46 100644 --- a/protocols/121d15/README.md +++ b/protocols/121d15/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/12213d/README.md b/protocols/12213d/README.md index 8f384c26e..fe2cbed6e 100644 --- a/protocols/12213d/README.md +++ b/protocols/12213d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/131de0/README.md b/protocols/131de0/README.md index 870c2d7db..ecb9c05f0 100644 --- a/protocols/131de0/README.md +++ b/protocols/131de0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/139815/README.md b/protocols/139815/README.md index 3f0c63768..5c8dde05e 100644 --- a/protocols/139815/README.md +++ b/protocols/139815/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/13ac78/README.md b/protocols/13ac78/README.md index c73e4600d..29da95ec0 100644 --- a/protocols/13ac78/README.md +++ b/protocols/13ac78/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/13c0b8/README.md b/protocols/13c0b8/README.md index c37ad4c2e..6777248a1 100644 --- a/protocols/13c0b8/README.md +++ b/protocols/13c0b8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/13ea1e-part2/README.md b/protocols/13ea1e-part2/README.md index 8cc85462d..fd5e11ab1 100644 --- a/protocols/13ea1e-part2/README.md +++ b/protocols/13ea1e-part2/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/13ea1e/README.md b/protocols/13ea1e/README.md index d559cf1c9..35f837044 100644 --- a/protocols/13ea1e/README.md +++ b/protocols/13ea1e/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/13fd88/README.md b/protocols/13fd88/README.md index c6a221f03..2e5abe0fe 100644 --- a/protocols/13fd88/README.md +++ b/protocols/13fd88/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/141a1a/README.md b/protocols/141a1a/README.md index f8e1d8c4a..473bac674 100644 --- a/protocols/141a1a/README.md +++ b/protocols/141a1a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1440ad/README.md b/protocols/1440ad/README.md index 655189022..00277d60e 100644 --- a/protocols/1440ad/README.md +++ b/protocols/1440ad/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/1464-2/README.md b/protocols/1464-2/README.md index 97cece847..a24328c47 100644 --- a/protocols/1464-2/README.md +++ b/protocols/1464-2/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1464-3/README.md b/protocols/1464-3/README.md index 99e29fe1b..2b36af445 100644 --- a/protocols/1464-3/README.md +++ b/protocols/1464-3/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1464/README.md b/protocols/1464/README.md index fee28781a..f646b17d8 100644 --- a/protocols/1464/README.md +++ b/protocols/1464/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1477ea/README.md b/protocols/1477ea/README.md index 9a7fcf2b0..3899b9597 100644 --- a/protocols/1477ea/README.md +++ b/protocols/1477ea/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1479/README.md b/protocols/1479/README.md index a6b682bc3..3cc66c585 100644 --- a/protocols/1479/README.md +++ b/protocols/1479/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/14b685/README.md b/protocols/14b685/README.md index 6780bf70c..6541563ab 100644 --- a/protocols/14b685/README.md +++ b/protocols/14b685/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/154ec5/README.md b/protocols/154ec5/README.md index 8bae3ae6d..b8d5877f7 100644 --- a/protocols/154ec5/README.md +++ b/protocols/154ec5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1577-v2/README.md b/protocols/1577-v2/README.md index b0badd45a..587395d2e 100644 --- a/protocols/1577-v2/README.md +++ b/protocols/1577-v2/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/158d42/README.md b/protocols/158d42/README.md index 3d3eb25ab..bac7e360f 100644 --- a/protocols/158d42/README.md +++ b/protocols/158d42/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/15dc4c/README.md b/protocols/15dc4c/README.md index 3501d98bd..b896082bf 100644 --- a/protocols/15dc4c/README.md +++ b/protocols/15dc4c/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1601a9/README.md b/protocols/1601a9/README.md index 0d1a65aab..4838e2e4e 100644 --- a/protocols/1601a9/README.md +++ b/protocols/1601a9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/1649b1/README.md b/protocols/1649b1/README.md index 228b0b90b..7d036bde5 100644 --- a/protocols/1649b1/README.md +++ b/protocols/1649b1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/165a77/README.md b/protocols/165a77/README.md index 66a45f3c9..90da54fe9 100644 --- a/protocols/165a77/README.md +++ b/protocols/165a77/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/16b3fb/README.md b/protocols/16b3fb/README.md index 0f0adb437..5fb9fd6ff 100644 --- a/protocols/16b3fb/README.md +++ b/protocols/16b3fb/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/17cb2d/README.md b/protocols/17cb2d/README.md index 998a1644b..6e6b93f1a 100644 --- a/protocols/17cb2d/README.md +++ b/protocols/17cb2d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/17d210-part-2/README.md b/protocols/17d210-part-2/README.md index 76bcfffa8..00904fcc7 100644 --- a/protocols/17d210-part-2/README.md +++ b/protocols/17d210-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/17d210-part-3/README.md b/protocols/17d210-part-3/README.md index 2b2afa46e..66f143c71 100644 --- a/protocols/17d210-part-3/README.md +++ b/protocols/17d210-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/17d210-part-4/README.md b/protocols/17d210-part-4/README.md index b0ac60ce3..a1615ef37 100644 --- a/protocols/17d210-part-4/README.md +++ b/protocols/17d210-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/17d210-part-5/README.md b/protocols/17d210-part-5/README.md index 3ba27a56d..417fceb04 100644 --- a/protocols/17d210-part-5/README.md +++ b/protocols/17d210-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/17d210/README.md b/protocols/17d210/README.md index ce77a99de..d8368a72c 100644 --- a/protocols/17d210/README.md +++ b/protocols/17d210/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/18050b/README.md b/protocols/18050b/README.md index 627f9d431..217f92cb7 100644 --- a/protocols/18050b/README.md +++ b/protocols/18050b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/18d6a1/README.md b/protocols/18d6a1/README.md index 2de95dbed..5b403de99 100644 --- a/protocols/18d6a1/README.md +++ b/protocols/18d6a1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/18e62e/README.md b/protocols/18e62e/README.md index e4b93eb7e..01518d572 100644 --- a/protocols/18e62e/README.md +++ b/protocols/18e62e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/19313a/README.md b/protocols/19313a/README.md index 6db73710e..0143c1610 100644 --- a/protocols/19313a/README.md +++ b/protocols/19313a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/1980cd/README.md b/protocols/1980cd/README.md index 0fe0e044a..ce80ef51e 100644 --- a/protocols/1980cd/README.md +++ b/protocols/1980cd/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/199721/README.md b/protocols/199721/README.md index 2b08f05a4..137a0a31e 100644 --- a/protocols/199721/README.md +++ b/protocols/199721/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/19fc32/README.md b/protocols/19fc32/README.md index 459ef9f8c..436ee5b8e 100644 --- a/protocols/19fc32/README.md +++ b/protocols/19fc32/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/1a2343/README.md b/protocols/1a2343/README.md index 0afd205cc..6d9fb06d9 100644 --- a/protocols/1a2343/README.md +++ b/protocols/1a2343/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/1adec6-2/README.md b/protocols/1adec6-2/README.md index 61c8fc651..c5be914d7 100644 --- a/protocols/1adec6-2/README.md +++ b/protocols/1adec6-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1adec6-3/README.md b/protocols/1adec6-3/README.md index fed535cf2..ee79db050 100644 --- a/protocols/1adec6-3/README.md +++ b/protocols/1adec6-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1adec6-4/README.md b/protocols/1adec6-4/README.md index 36ab48164..688c702c8 100644 --- a/protocols/1adec6-4/README.md +++ b/protocols/1adec6-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1adec6-5/README.md b/protocols/1adec6-5/README.md index fd5809a86..08d5e62e7 100644 --- a/protocols/1adec6-5/README.md +++ b/protocols/1adec6-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1adec6-6/README.md b/protocols/1adec6-6/README.md index af14e43ae..9f0c437dd 100644 --- a/protocols/1adec6-6/README.md +++ b/protocols/1adec6-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1adec6-7/README.md b/protocols/1adec6-7/README.md index 483ff3a0f..015c89aae 100644 --- a/protocols/1adec6-7/README.md +++ b/protocols/1adec6-7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1adec6/README.md b/protocols/1adec6/README.md index b8bacb591..d17bc0b2f 100644 --- a/protocols/1adec6/README.md +++ b/protocols/1adec6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1af856/README.md b/protocols/1af856/README.md index ecf3cbbd4..b0438d1d6 100644 --- a/protocols/1af856/README.md +++ b/protocols/1af856/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/1b2788/README.md b/protocols/1b2788/README.md index 2f4c55c77..fdad0a29a 100644 --- a/protocols/1b2788/README.md +++ b/protocols/1b2788/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/1bcd67/README.md b/protocols/1bcd67/README.md index 8143eef3f..a4f0e10a9 100644 --- a/protocols/1bcd67/README.md +++ b/protocols/1bcd67/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1c086c/README.md b/protocols/1c086c/README.md index daa45d6e6..b8b8629ed 100644 --- a/protocols/1c086c/README.md +++ b/protocols/1c086c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1c3611/README.md b/protocols/1c3611/README.md index a1c385109..e2a66bdcc 100644 --- a/protocols/1c3611/README.md +++ b/protocols/1c3611/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/1c8468/README.md b/protocols/1c8468/README.md index da7f3b9a5..2283e99fb 100644 --- a/protocols/1c8468/README.md +++ b/protocols/1c8468/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/1ccd23-station-A/README.md b/protocols/1ccd23-station-A/README.md index cd2066b2b..8069503c0 100644 --- a/protocols/1ccd23-station-A/README.md +++ b/protocols/1ccd23-station-A/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/1ccd23-station-B/README.md b/protocols/1ccd23-station-B/README.md index 65af1851e..4a7040d53 100644 --- a/protocols/1ccd23-station-B/README.md +++ b/protocols/1ccd23-station-B/README.md @@ -4,7 +4,7 @@ [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/1ccd23-station-C/README.md b/protocols/1ccd23-station-C/README.md index f006e0993..dc400be83 100644 --- a/protocols/1ccd23-station-C/README.md +++ b/protocols/1ccd23-station-C/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/1ce6aa/README.md b/protocols/1ce6aa/README.md index 9749d7b1d..72a2fd1de 100644 --- a/protocols/1ce6aa/README.md +++ b/protocols/1ce6aa/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1d37e5/README.md b/protocols/1d37e5/README.md index 28a2137d1..c20c45822 100644 --- a/protocols/1d37e5/README.md +++ b/protocols/1d37e5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1d6d1b/README.md b/protocols/1d6d1b/README.md index 84ebede8e..a86bbd335 100644 --- a/protocols/1d6d1b/README.md +++ b/protocols/1d6d1b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1dbc24/README.md b/protocols/1dbc24/README.md index 5b12c33f9..659402a50 100644 --- a/protocols/1dbc24/README.md +++ b/protocols/1dbc24/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1dec68/README.md b/protocols/1dec68/README.md index c61f0102e..26d32c3ef 100644 --- a/protocols/1dec68/README.md +++ b/protocols/1dec68/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1dfebe/README.md b/protocols/1dfebe/README.md index 97018ef4d..fd7f84284 100644 --- a/protocols/1dfebe/README.md +++ b/protocols/1dfebe/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1e744e/README.md b/protocols/1e744e/README.md index fde556b68..1392b7ac4 100644 --- a/protocols/1e744e/README.md +++ b/protocols/1e744e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/1eeb01/README.md b/protocols/1eeb01/README.md index cf4fc3fa4..820d97e35 100644 --- a/protocols/1eeb01/README.md +++ b/protocols/1eeb01/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/1ef67e/README.md b/protocols/1ef67e/README.md index fd43d4944..bbb7407d1 100644 --- a/protocols/1ef67e/README.md +++ b/protocols/1ef67e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/1f62ba/README.md b/protocols/1f62ba/README.md index b545e4de7..b62318994 100644 --- a/protocols/1f62ba/README.md +++ b/protocols/1f62ba/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/1f8b55/README.md b/protocols/1f8b55/README.md index 03739f83f..560eec154 100644 --- a/protocols/1f8b55/README.md +++ b/protocols/1f8b55/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/1f96ca-part-2/README.md b/protocols/1f96ca-part-2/README.md index 58036ea9f..65d7e0e48 100644 --- a/protocols/1f96ca-part-2/README.md +++ b/protocols/1f96ca-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/1f96ca/README.md b/protocols/1f96ca/README.md index e75c16165..aedc088af 100644 --- a/protocols/1f96ca/README.md +++ b/protocols/1f96ca/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/1fcf02/README.md b/protocols/1fcf02/README.md index 32b4e0109..b1c7bbbe5 100644 --- a/protocols/1fcf02/README.md +++ b/protocols/1fcf02/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/203136/README.md b/protocols/203136/README.md index ed5c1636b..0dc1beb53 100644 --- a/protocols/203136/README.md +++ b/protocols/203136/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/2082dd/README.md b/protocols/2082dd/README.md index 8d369015c..6dc44fd40 100644 --- a/protocols/2082dd/README.md +++ b/protocols/2082dd/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/211a24/README.md b/protocols/211a24/README.md index ae64ffa12..d7c14f8f1 100644 --- a/protocols/211a24/README.md +++ b/protocols/211a24/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/211fe1/README.md b/protocols/211fe1/README.md index e4301b559..973b7f0a8 100644 --- a/protocols/211fe1/README.md +++ b/protocols/211fe1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/21e4d8-pt1/README.md b/protocols/21e4d8-pt1/README.md index 66ad14fa9..d85357738 100644 --- a/protocols/21e4d8-pt1/README.md +++ b/protocols/21e4d8-pt1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/21e4d8-pt2/README.md b/protocols/21e4d8-pt2/README.md index ab1a3526e..d949b407a 100644 --- a/protocols/21e4d8-pt2/README.md +++ b/protocols/21e4d8-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/21e4d8-pt3/README.md b/protocols/21e4d8-pt3/README.md index 17c7ba376..8351e222f 100644 --- a/protocols/21e4d8-pt3/README.md +++ b/protocols/21e4d8-pt3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/21u968/README.md b/protocols/21u968/README.md index 3eb25840a..77620de3e 100644 --- a/protocols/21u968/README.md +++ b/protocols/21u968/README.md @@ -6,7 +6,7 @@ Iva Pitelkova -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * DNA/RNA diff --git a/protocols/226d24/README.md b/protocols/226d24/README.md index db93f63e7..8c5e30191 100644 --- a/protocols/226d24/README.md +++ b/protocols/226d24/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/234495/README.md b/protocols/234495/README.md index 519431a80..b082e0bbe 100644 --- a/protocols/234495/README.md +++ b/protocols/234495/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/243973/README.md b/protocols/243973/README.md index 2b0cbfa97..a79a29561 100644 --- a/protocols/243973/README.md +++ b/protocols/243973/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/245eb2/README.md b/protocols/245eb2/README.md index 23274dd7a..239d58469 100644 --- a/protocols/245eb2/README.md +++ b/protocols/245eb2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/25a03d/README.md b/protocols/25a03d/README.md index 8cb4b704f..48e768b89 100644 --- a/protocols/25a03d/README.md +++ b/protocols/25a03d/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/269b21/README.md b/protocols/269b21/README.md index 6ea421b3d..bf86c8ef0 100644 --- a/protocols/269b21/README.md +++ b/protocols/269b21/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/26a414/README.md b/protocols/26a414/README.md index 8d3683a55..04a0fe1f8 100644 --- a/protocols/26a414/README.md +++ b/protocols/26a414/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/26c304/README.md b/protocols/26c304/README.md index 5b67529c4..57dd53851 100644 --- a/protocols/26c304/README.md +++ b/protocols/26c304/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/272c63/README.md b/protocols/272c63/README.md index a7a37c432..388c07d71 100644 --- a/protocols/272c63/README.md +++ b/protocols/272c63/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/274d2a/README.md b/protocols/274d2a/README.md index 2b512fca7..d24bf119f 100644 --- a/protocols/274d2a/README.md +++ b/protocols/274d2a/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/274d2a). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/274d2a). This page won’t be available after March 31st, 2024. ## Categories * Sample Prep diff --git a/protocols/277a3d/README.md b/protocols/277a3d/README.md index e6805732c..1ff43409a 100644 --- a/protocols/277a3d/README.md +++ b/protocols/277a3d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/280ea4/README.md b/protocols/280ea4/README.md index ea2368630..41ea385b6 100644 --- a/protocols/280ea4/README.md +++ b/protocols/280ea4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/2905a4/README.md b/protocols/2905a4/README.md index 95b8e1b13..a32a969bd 100644 --- a/protocols/2905a4/README.md +++ b/protocols/2905a4/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories diff --git a/protocols/29225e-part-2/README.md b/protocols/29225e-part-2/README.md index f3b2101b4..47188070a 100644 --- a/protocols/29225e-part-2/README.md +++ b/protocols/29225e-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/29225e/README.md b/protocols/29225e/README.md index 3b7a0fb12..df19ac07c 100644 --- a/protocols/29225e/README.md +++ b/protocols/29225e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/29414b-ot/README.md b/protocols/29414b-ot/README.md index 768267ba2..a0bc6ab09 100644 --- a/protocols/29414b-ot/README.md +++ b/protocols/29414b-ot/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Getting Started diff --git a/protocols/29414b/README.md b/protocols/29414b/README.md index d1785f6bc..69f959419 100644 --- a/protocols/29414b/README.md +++ b/protocols/29414b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Getting Started diff --git a/protocols/2942dd/README.md b/protocols/2942dd/README.md index c05cdd323..aec7c075d 100644 --- a/protocols/2942dd/README.md +++ b/protocols/2942dd/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/295c73/README.md b/protocols/295c73/README.md index 1b608908f..bab2173ba 100644 --- a/protocols/295c73/README.md +++ b/protocols/295c73/README.md @@ -1,7 +1,7 @@ # Accel-Amplicon® Plus EGFR Pathway Panel -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/298069/README.md b/protocols/298069/README.md index 3ef17a71f..dac543114 100644 --- a/protocols/298069/README.md +++ b/protocols/298069/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/29effa-buffer/README.md b/protocols/29effa-buffer/README.md index 8112f26cb..077b81bb3 100644 --- a/protocols/29effa-buffer/README.md +++ b/protocols/29effa-buffer/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/29effa-mastermix/README.md b/protocols/29effa-mastermix/README.md index d85f9acfa..21fe0ce89 100644 --- a/protocols/29effa-mastermix/README.md +++ b/protocols/29effa-mastermix/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/29f643/README.md b/protocols/29f643/README.md index ebcd7533c..f18e6c058 100644 --- a/protocols/29f643/README.md +++ b/protocols/29f643/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2a370c/README.md b/protocols/2a370c/README.md index a3348b2e6..3a67e60a3 100644 --- a/protocols/2a370c/README.md +++ b/protocols/2a370c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/2aee74-48-2/README.md b/protocols/2aee74-48-2/README.md index 97db5250d..f07366c9b 100644 --- a/protocols/2aee74-48-2/README.md +++ b/protocols/2aee74-48-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/2aee74-48-3/README.md b/protocols/2aee74-48-3/README.md index 951ba5aa6..0f104f481 100644 --- a/protocols/2aee74-48-3/README.md +++ b/protocols/2aee74-48-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/2aee74-48/README.md b/protocols/2aee74-48/README.md index c1e2ae168..c00edc832 100644 --- a/protocols/2aee74-48/README.md +++ b/protocols/2aee74-48/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/2aee74-96-2/README.md b/protocols/2aee74-96-2/README.md index 20ccab837..052818dad 100644 --- a/protocols/2aee74-96-2/README.md +++ b/protocols/2aee74-96-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/2aee74-96-3/README.md b/protocols/2aee74-96-3/README.md index 8b42020df..aabb2bb41 100644 --- a/protocols/2aee74-96-3/README.md +++ b/protocols/2aee74-96-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/2aee74-96/README.md b/protocols/2aee74-96/README.md index de45b3765..9ecb37913 100644 --- a/protocols/2aee74-96/README.md +++ b/protocols/2aee74-96/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/2b3642/README.md b/protocols/2b3642/README.md index 52b8bc11c..d06abe63a 100644 --- a/protocols/2b3642/README.md +++ b/protocols/2b3642/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/2b9486/README.md b/protocols/2b9486/README.md index 290b24500..cf53d8cfc 100644 --- a/protocols/2b9486/README.md +++ b/protocols/2b9486/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/2bba96/README.md b/protocols/2bba96/README.md index bc8f81d4d..e78d3cf76 100644 --- a/protocols/2bba96/README.md +++ b/protocols/2bba96/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2bdff3/README.md b/protocols/2bdff3/README.md index 0ea8b85ff..30c93cda9 100644 --- a/protocols/2bdff3/README.md +++ b/protocols/2bdff3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2c19aa/README.md b/protocols/2c19aa/README.md index 37c6daddf..6e58e4758 100644 --- a/protocols/2c19aa/README.md +++ b/protocols/2c19aa/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2c62b7/README.md b/protocols/2c62b7/README.md index e7f362a21..f20863728 100644 --- a/protocols/2c62b7/README.md +++ b/protocols/2c62b7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/2c81c0/README.md b/protocols/2c81c0/README.md index 67a3b71e5..012e4a1c2 100644 --- a/protocols/2c81c0/README.md +++ b/protocols/2c81c0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/2c83f7/README.md b/protocols/2c83f7/README.md index 7eb0d8aac..f56be8078 100644 --- a/protocols/2c83f7/README.md +++ b/protocols/2c83f7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/2cc59d/README.md b/protocols/2cc59d/README.md index 9b7c788b8..6b85c281a 100644 --- a/protocols/2cc59d/README.md +++ b/protocols/2cc59d/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2d7126/README.md b/protocols/2d7126/README.md index 3f260b92e..7137a3cbe 100644 --- a/protocols/2d7126/README.md +++ b/protocols/2d7126/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2d7d86/README.md b/protocols/2d7d86/README.md index ccfa66a0a..2069a5b51 100644 --- a/protocols/2d7d86/README.md +++ b/protocols/2d7d86/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/2d9a0c/README.md b/protocols/2d9a0c/README.md index ed2743eb8..25c2fe399 100644 --- a/protocols/2d9a0c/README.md +++ b/protocols/2d9a0c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/2df9f8-pt2/README.md b/protocols/2df9f8-pt2/README.md index 933a3712f..87a33dd0f 100644 --- a/protocols/2df9f8-pt2/README.md +++ b/protocols/2df9f8-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/2df9f8-pt3/README.md b/protocols/2df9f8-pt3/README.md index d81e5e4f6..50b2aa19b 100644 --- a/protocols/2df9f8-pt3/README.md +++ b/protocols/2df9f8-pt3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/2df9f8-pt4/README.md b/protocols/2df9f8-pt4/README.md index b43b54bc6..4a2bc5a6d 100644 --- a/protocols/2df9f8-pt4/README.md +++ b/protocols/2df9f8-pt4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2df9f8/README.md b/protocols/2df9f8/README.md index 9447519a0..7ae5fa583 100644 --- a/protocols/2df9f8/README.md +++ b/protocols/2df9f8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/2e84cc/README.md b/protocols/2e84cc/README.md index f9c4d6bf4..e008d9ff6 100644 --- a/protocols/2e84cc/README.md +++ b/protocols/2e84cc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/2ed4de-2/README.md b/protocols/2ed4de-2/README.md index e90c166ad..58d6a4a40 100644 --- a/protocols/2ed4de-2/README.md +++ b/protocols/2ed4de-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2ed4de/README.md b/protocols/2ed4de/README.md index 7fe717d0d..b103c79b3 100644 --- a/protocols/2ed4de/README.md +++ b/protocols/2ed4de/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/2ee5be/README.md b/protocols/2ee5be/README.md index d662b3b07..3007327f3 100644 --- a/protocols/2ee5be/README.md +++ b/protocols/2ee5be/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/300073-2/README.md b/protocols/300073-2/README.md index 58cff5916..ffa7092bb 100644 --- a/protocols/300073-2/README.md +++ b/protocols/300073-2/README.md @@ -3,7 +3,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/300073/README.md b/protocols/300073/README.md index 1f5c94582..bb8674265 100644 --- a/protocols/300073/README.md +++ b/protocols/300073/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/30174a/README.md b/protocols/30174a/README.md index 93fa4366e..9ee84526a 100644 --- a/protocols/30174a/README.md +++ b/protocols/30174a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/30450c-part-2/README.md b/protocols/30450c-part-2/README.md index 315da0c44..8eedb0f6c 100644 --- a/protocols/30450c-part-2/README.md +++ b/protocols/30450c-part-2/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/30450c/README.md b/protocols/30450c/README.md index 48f329bda..dbf081ab0 100644 --- a/protocols/30450c/README.md +++ b/protocols/30450c/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/313086-logixsmart-station-B/README.md b/protocols/313086-logixsmart-station-B/README.md index b19103f1e..3c8018ec2 100644 --- a/protocols/313086-logixsmart-station-B/README.md +++ b/protocols/313086-logixsmart-station-B/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/313086/README.md b/protocols/313086/README.md index 368c871ab..a1f31a3b1 100644 --- a/protocols/313086/README.md +++ b/protocols/313086/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/315118/README.md b/protocols/315118/README.md index d68e3bf7a..a78ace314 100644 --- a/protocols/315118/README.md +++ b/protocols/315118/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/32207e/README.md b/protocols/32207e/README.md index 6bd8bb9d5..2d007442c 100644 --- a/protocols/32207e/README.md +++ b/protocols/32207e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3308b4/README.md b/protocols/3308b4/README.md index 97f6531b5..55d58db69 100644 --- a/protocols/3308b4/README.md +++ b/protocols/3308b4/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/3359a5/README.md b/protocols/3359a5/README.md index 9b4955c48..d6aca0867 100644 --- a/protocols/3359a5/README.md +++ b/protocols/3359a5/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/3359a5). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/3359a5). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/33900b/README.md b/protocols/33900b/README.md index b9c9e90b3..1138a52c5 100644 --- a/protocols/33900b/README.md +++ b/protocols/33900b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/33a449/README.md b/protocols/33a449/README.md index d4f4c8a57..6c703010c 100644 --- a/protocols/33a449/README.md +++ b/protocols/33a449/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/33b12a/README.md b/protocols/33b12a/README.md index e10e3890e..171353d09 100644 --- a/protocols/33b12a/README.md +++ b/protocols/33b12a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/33y0f3/README.md b/protocols/33y0f3/README.md index 98182e039..c88e77313 100644 --- a/protocols/33y0f3/README.md +++ b/protocols/33y0f3/README.md @@ -6,7 +6,7 @@ Lachlan Munro -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Microbiology diff --git a/protocols/343001/README.md b/protocols/343001/README.md index 661cbf96a..bc7cd5480 100644 --- a/protocols/343001/README.md +++ b/protocols/343001/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/35269b/README.md b/protocols/35269b/README.md index 7ce8a9b02..3489431e2 100644 --- a/protocols/35269b/README.md +++ b/protocols/35269b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/355b30/README.md b/protocols/355b30/README.md index 84bbdbd30..9451cb488 100644 --- a/protocols/355b30/README.md +++ b/protocols/355b30/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/357404/README.md b/protocols/357404/README.md index 9813f7911..edf4abe2a 100644 --- a/protocols/357404/README.md +++ b/protocols/357404/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/35b1a9/README.md b/protocols/35b1a9/README.md index 20e23d616..397bbf7e7 100644 --- a/protocols/35b1a9/README.md +++ b/protocols/35b1a9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3607d5-2/README.md b/protocols/3607d5-2/README.md index dc7991412..349674342 100644 --- a/protocols/3607d5-2/README.md +++ b/protocols/3607d5-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/3607d5-3/README.md b/protocols/3607d5-3/README.md index ad9d0ee12..9ec3d8b0e 100644 --- a/protocols/3607d5-3/README.md +++ b/protocols/3607d5-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/3607d5-4/README.md b/protocols/3607d5-4/README.md index ff8e51fa4..3ac221a58 100644 --- a/protocols/3607d5-4/README.md +++ b/protocols/3607d5-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3607d5-5/README.md b/protocols/3607d5-5/README.md index 2f8c60275..aa20e76db 100644 --- a/protocols/3607d5-5/README.md +++ b/protocols/3607d5-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3607d5/README.md b/protocols/3607d5/README.md index 2bd74e160..eafa23379 100644 --- a/protocols/3607d5/README.md +++ b/protocols/3607d5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/3633ca/README.md b/protocols/3633ca/README.md index d778a74d5..1dce515ce 100644 --- a/protocols/3633ca/README.md +++ b/protocols/3633ca/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3662e6/README.md b/protocols/3662e6/README.md index 39bdd6437..4c9eca3b6 100644 --- a/protocols/3662e6/README.md +++ b/protocols/3662e6/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/37190e/README.md b/protocols/37190e/README.md index d26cc6cb2..a28c9bda2 100644 --- a/protocols/37190e/README.md +++ b/protocols/37190e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/37de37/README.md b/protocols/37de37/README.md index 575f48fab..be6ab8f64 100644 --- a/protocols/37de37/README.md +++ b/protocols/37de37/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/37ffa5/README.md b/protocols/37ffa5/README.md index 1765a21c0..e90aadc11 100644 --- a/protocols/37ffa5/README.md +++ b/protocols/37ffa5/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/384b23-plate-transfer/README.md b/protocols/384b23-plate-transfer/README.md index 358219a6b..addd4364f 100644 --- a/protocols/384b23-plate-transfer/README.md +++ b/protocols/384b23-plate-transfer/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/384b23-pooling/README.md b/protocols/384b23-pooling/README.md index 0b8a14ee5..03c47b6cb 100644 --- a/protocols/384b23-pooling/README.md +++ b/protocols/384b23-pooling/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Normalization diff --git a/protocols/384b23-tube-transfer/README.md b/protocols/384b23-tube-transfer/README.md index 8d65a4fee..fd5e11f7f 100644 --- a/protocols/384b23-tube-transfer/README.md +++ b/protocols/384b23-tube-transfer/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/387961/README.md b/protocols/387961/README.md index c9707d55b..ad6697c67 100644 --- a/protocols/387961/README.md +++ b/protocols/387961/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/38efd4/README.md b/protocols/38efd4/README.md index 6bc44ad4c..84f81b2ca 100644 --- a/protocols/38efd4/README.md +++ b/protocols/38efd4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/), Ricardo Padua, Brandeis University -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3955db/README.md b/protocols/3955db/README.md index 94b2ddf1a..0cfe5debd 100644 --- a/protocols/3955db/README.md +++ b/protocols/3955db/README.md @@ -7,7 +7,7 @@ [BasisDx](https://www.basisdx.org/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/39b4c7/README.md b/protocols/39b4c7/README.md index 1de21d1e3..2bd2d9d1d 100644 --- a/protocols/39b4c7/README.md +++ b/protocols/39b4c7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/39bbbb/README.md b/protocols/39bbbb/README.md index 30cb4faaa..342784884 100644 --- a/protocols/39bbbb/README.md +++ b/protocols/39bbbb/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3a49b6/README.md b/protocols/3a49b6/README.md index 86eaf5dd6..8318dce7c 100644 --- a/protocols/3a49b6/README.md +++ b/protocols/3a49b6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3b0db0/README.md b/protocols/3b0db0/README.md index 13031bce2..20e3d1d45 100644 --- a/protocols/3b0db0/README.md +++ b/protocols/3b0db0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/3b3d2f/README.md b/protocols/3b3d2f/README.md index 18a3f2f5d..6a40935c7 100644 --- a/protocols/3b3d2f/README.md +++ b/protocols/3b3d2f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/3b3f1c/README.md b/protocols/3b3f1c/README.md index 258391971..0118a3789 100644 --- a/protocols/3b3f1c/README.md +++ b/protocols/3b3f1c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3bc25d/README.md b/protocols/3bc25d/README.md index e77e4d595..9db96bdea 100644 --- a/protocols/3bc25d/README.md +++ b/protocols/3bc25d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/3c9aec/README.md b/protocols/3c9aec/README.md index e246a508e..855917129 100644 --- a/protocols/3c9aec/README.md +++ b/protocols/3c9aec/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sterile Workflows diff --git a/protocols/3cf31f/README.md b/protocols/3cf31f/README.md index 8bac93fa1..7a990c35f 100644 --- a/protocols/3cf31f/README.md +++ b/protocols/3cf31f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3d02be/README.md b/protocols/3d02be/README.md index 24e901038..b38a61ae1 100644 --- a/protocols/3d02be/README.md +++ b/protocols/3d02be/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3d942d/README.md b/protocols/3d942d/README.md index ffe38a13a..3eeed62bf 100644 --- a/protocols/3d942d/README.md +++ b/protocols/3d942d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/3db190-manual/README.md b/protocols/3db190-manual/README.md index d5549e22d..49e99f2ec 100644 --- a/protocols/3db190-manual/README.md +++ b/protocols/3db190-manual/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/3db190/README.md b/protocols/3db190/README.md index 17d7f2879..18fea312c 100644 --- a/protocols/3db190/README.md +++ b/protocols/3db190/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/3e0bef/README.md b/protocols/3e0bef/README.md index 0b30760bf..e88b80068 100644 --- a/protocols/3e0bef/README.md +++ b/protocols/3e0bef/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/3e3c9d-protocol-Adding-BTM/README.md b/protocols/3e3c9d-protocol-Adding-BTM/README.md index 3f7263158..6ff4756fc 100644 --- a/protocols/3e3c9d-protocol-Adding-BTM/README.md +++ b/protocols/3e3c9d-protocol-Adding-BTM/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3e3c9d-protocol-Adding-Water-RBC/README.md b/protocols/3e3c9d-protocol-Adding-Water-RBC/README.md index 1310216ce..9abdb18c3 100644 --- a/protocols/3e3c9d-protocol-Adding-Water-RBC/README.md +++ b/protocols/3e3c9d-protocol-Adding-Water-RBC/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3e3c9d-protocol-master-rbc-transfer/README.md b/protocols/3e3c9d-protocol-master-rbc-transfer/README.md index cf48b1512..8906a2cbf 100644 --- a/protocols/3e3c9d-protocol-master-rbc-transfer/README.md +++ b/protocols/3e3c9d-protocol-master-rbc-transfer/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3e3c9d-protocols-adding-wistd-water/README.md b/protocols/3e3c9d-protocols-adding-wistd-water/README.md index 75449becd..1cc2540a9 100644 --- a/protocols/3e3c9d-protocols-adding-wistd-water/README.md +++ b/protocols/3e3c9d-protocols-adding-wistd-water/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/3fad82-part-2/README.md b/protocols/3fad82-part-2/README.md index 19186fddb..bbdfebded 100644 --- a/protocols/3fad82-part-2/README.md +++ b/protocols/3fad82-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/3fad82-part-3/README.md b/protocols/3fad82-part-3/README.md index de0783410..8d55a33df 100644 --- a/protocols/3fad82-part-3/README.md +++ b/protocols/3fad82-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/3fad82/README.md b/protocols/3fad82/README.md index 0d1a62723..1c16184b9 100644 --- a/protocols/3fad82/README.md +++ b/protocols/3fad82/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/3fb582/README.md b/protocols/3fb582/README.md index 6365a6ceb..030ab386d 100644 --- a/protocols/3fb582/README.md +++ b/protocols/3fb582/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/400b8e/README.md b/protocols/400b8e/README.md index 0d6e7cead..80f255874 100644 --- a/protocols/400b8e/README.md +++ b/protocols/400b8e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/407d5e/README.md b/protocols/407d5e/README.md index e8dd52447..7f09ee286 100644 --- a/protocols/407d5e/README.md +++ b/protocols/407d5e/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/412ec7/README.md b/protocols/412ec7/README.md index 7ffcae088..9ed4474d1 100644 --- a/protocols/412ec7/README.md +++ b/protocols/412ec7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Serial Dilution diff --git a/protocols/414aaa/README.md b/protocols/414aaa/README.md index 854e34b19..ea435abc5 100644 --- a/protocols/414aaa/README.md +++ b/protocols/414aaa/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4175de/README.md b/protocols/4175de/README.md index 0c2fcf947..26e940e1b 100644 --- a/protocols/4175de/README.md +++ b/protocols/4175de/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/41ece2/README.md b/protocols/41ece2/README.md index 06db7ca1b..f7b021c1e 100644 --- a/protocols/41ece2/README.md +++ b/protocols/41ece2/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/422b1e/README.md b/protocols/422b1e/README.md index b61644c10..23d1cff05 100644 --- a/protocols/422b1e/README.md +++ b/protocols/422b1e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Titration diff --git a/protocols/42d27b/README.md b/protocols/42d27b/README.md index 01de86093..8134988ba 100644 --- a/protocols/42d27b/README.md +++ b/protocols/42d27b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/43163c/README.md b/protocols/43163c/README.md index cc7b9e206..e986a4333 100644 --- a/protocols/43163c/README.md +++ b/protocols/43163c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/43d313-part-2/README.md b/protocols/43d313-part-2/README.md index bec5cf644..717e35f88 100644 --- a/protocols/43d313-part-2/README.md +++ b/protocols/43d313-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-3/README.md b/protocols/43d313-part-3/README.md index 450a5a295..5d96d750c 100644 --- a/protocols/43d313-part-3/README.md +++ b/protocols/43d313-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-4/README.md b/protocols/43d313-part-4/README.md index 596928d54..509c1739e 100644 --- a/protocols/43d313-part-4/README.md +++ b/protocols/43d313-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-5/README.md b/protocols/43d313-part-5/README.md index 99c265c61..c01d7729c 100644 --- a/protocols/43d313-part-5/README.md +++ b/protocols/43d313-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-6/README.md b/protocols/43d313-part-6/README.md index 2077807c1..9b428993e 100644 --- a/protocols/43d313-part-6/README.md +++ b/protocols/43d313-part-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-7/README.md b/protocols/43d313-part-7/README.md index b247ada1b..9b08e2971 100644 --- a/protocols/43d313-part-7/README.md +++ b/protocols/43d313-part-7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-8/README.md b/protocols/43d313-part-8/README.md index 56f4944b8..5dd00080a 100644 --- a/protocols/43d313-part-8/README.md +++ b/protocols/43d313-part-8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313-part-9/README.md b/protocols/43d313-part-9/README.md index 042f57b5c..643fb028e 100644 --- a/protocols/43d313-part-9/README.md +++ b/protocols/43d313-part-9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/43d313/README.md b/protocols/43d313/README.md index a4fccf6d5..a09f08576 100644 --- a/protocols/43d313/README.md +++ b/protocols/43d313/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/441cc8/README.md b/protocols/441cc8/README.md index 5322e5f86..ad83097e1 100644 --- a/protocols/441cc8/README.md +++ b/protocols/441cc8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4471ba/README.md b/protocols/4471ba/README.md index 633672aa2..81e0f2066 100644 --- a/protocols/4471ba/README.md +++ b/protocols/4471ba/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/44981c/README.md b/protocols/44981c/README.md index dbc778890..2f448b0b9 100644 --- a/protocols/44981c/README.md +++ b/protocols/44981c/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/44b1ac/README.md b/protocols/44b1ac/README.md index bce8b3411..1a8ca8e3a 100644 --- a/protocols/44b1ac/README.md +++ b/protocols/44b1ac/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/44b43c/README.md b/protocols/44b43c/README.md index 3515c328b..de3a57dbf 100644 --- a/protocols/44b43c/README.md +++ b/protocols/44b43c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/453b5a/README.md b/protocols/453b5a/README.md index d31a9fd8d..1a2043deb 100644 --- a/protocols/453b5a/README.md +++ b/protocols/453b5a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/4568fa-2/README.md b/protocols/4568fa-2/README.md index 5808a13d7..0a2ddbfda 100644 --- a/protocols/4568fa-2/README.md +++ b/protocols/4568fa-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4568fa/README.md b/protocols/4568fa/README.md index 35600cfd7..8b664150a 100644 --- a/protocols/4568fa/README.md +++ b/protocols/4568fa/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/459a55/README.md b/protocols/459a55/README.md index a2c9642ec..19154235a 100644 --- a/protocols/459a55/README.md +++ b/protocols/459a55/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/459cc2/README.md b/protocols/459cc2/README.md index d24bc8bab..cdd2caec1 100644 --- a/protocols/459cc2/README.md +++ b/protocols/459cc2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/45a320/README.md b/protocols/45a320/README.md index e2e74ddbe..cd052f99e 100644 --- a/protocols/45a320/README.md +++ b/protocols/45a320/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/470d8c/README.md b/protocols/470d8c/README.md index 224d5fa92..687ad8537 100644 --- a/protocols/470d8c/README.md +++ b/protocols/470d8c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/48648f/README.md b/protocols/48648f/README.md index 1ff0ebab6..f68e5f8a7 100644 --- a/protocols/48648f/README.md +++ b/protocols/48648f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/4883fc/README.md b/protocols/4883fc/README.md index 19b4c2b42..290de7cc1 100644 --- a/protocols/4883fc/README.md +++ b/protocols/4883fc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4920bc/README.md b/protocols/4920bc/README.md index 7389b26c5..0a6e4c1b2 100644 --- a/protocols/4920bc/README.md +++ b/protocols/4920bc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/49b828/README.md b/protocols/49b828/README.md index dae7d060e..1821646df 100644 --- a/protocols/49b828/README.md +++ b/protocols/49b828/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/49de51-pt1/README.md b/protocols/49de51-pt1/README.md index 741a69840..2b54820ff 100644 --- a/protocols/49de51-pt1/README.md +++ b/protocols/49de51-pt1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/49de51-pt2/README.md b/protocols/49de51-pt2/README.md index ee4ab5f1c..d7ffa64db 100644 --- a/protocols/49de51-pt2/README.md +++ b/protocols/49de51-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/49de51/README.md b/protocols/49de51/README.md index 61e5261bb..0235faf6f 100644 --- a/protocols/49de51/README.md +++ b/protocols/49de51/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/4a0be6/README.md b/protocols/4a0be6/README.md index dbc59b9a9..caacb146c 100644 --- a/protocols/4a0be6/README.md +++ b/protocols/4a0be6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4a5f32/README.md b/protocols/4a5f32/README.md index e0698b3ff..088f37c2b 100644 --- a/protocols/4a5f32/README.md +++ b/protocols/4a5f32/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories diff --git a/protocols/4b4a80-adapter_ligation/README.md b/protocols/4b4a80-adapter_ligation/README.md index a14daf7f7..f9ead205f 100644 --- a/protocols/4b4a80-adapter_ligation/README.md +++ b/protocols/4b4a80-adapter_ligation/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4b4a80-fragmentation/README.md b/protocols/4b4a80-fragmentation/README.md index 7ca833309..98598bcdc 100644 --- a/protocols/4b4a80-fragmentation/README.md +++ b/protocols/4b4a80-fragmentation/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4b4a80-pcr_enrichment/README.md b/protocols/4b4a80-pcr_enrichment/README.md index d49e8d147..bfbb244d6 100644 --- a/protocols/4b4a80-pcr_enrichment/README.md +++ b/protocols/4b4a80-pcr_enrichment/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4b4a80-size_selection/README.md b/protocols/4b4a80-size_selection/README.md index ff318adce..9620759bb 100644 --- a/protocols/4b4a80-size_selection/README.md +++ b/protocols/4b4a80-size_selection/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4b7268/README.md b/protocols/4b7268/README.md index 6254cfec6..708d08d5b 100644 --- a/protocols/4b7268/README.md +++ b/protocols/4b7268/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/4b76c0/README.md b/protocols/4b76c0/README.md index 87f6cde4f..2c0c2f39f 100644 --- a/protocols/4b76c0/README.md +++ b/protocols/4b76c0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4bdd14/README.md b/protocols/4bdd14/README.md index 2b27d7f7c..c122b8bdd 100644 --- a/protocols/4bdd14/README.md +++ b/protocols/4bdd14/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4c8861/README.md b/protocols/4c8861/README.md index a2dfeba77..71c4f5a5b 100644 --- a/protocols/4c8861/README.md +++ b/protocols/4c8861/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4d9b8b/README.md b/protocols/4d9b8b/README.md index cad484cfc..93530e438 100644 --- a/protocols/4d9b8b/README.md +++ b/protocols/4d9b8b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4e4c0c/README.md b/protocols/4e4c0c/README.md index 5f20c89b7..ad6bf566e 100644 --- a/protocols/4e4c0c/README.md +++ b/protocols/4e4c0c/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4ee4d6-part2/README.md b/protocols/4ee4d6-part2/README.md index 035f0fcf4..21000363f 100644 --- a/protocols/4ee4d6-part2/README.md +++ b/protocols/4ee4d6-part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4ee4d6/README.md b/protocols/4ee4d6/README.md index 0dc800185..3e75b806e 100644 --- a/protocols/4ee4d6/README.md +++ b/protocols/4ee4d6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/4f7a6f/README.md b/protocols/4f7a6f/README.md index 95aab6460..79dc8e290 100644 --- a/protocols/4f7a6f/README.md +++ b/protocols/4f7a6f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/4fa62e/README.md b/protocols/4fa62e/README.md index d36967121..7a7ed8433 100644 --- a/protocols/4fa62e/README.md +++ b/protocols/4fa62e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/4fc750/README.md b/protocols/4fc750/README.md index 476e767e5..9cee0a05b 100644 --- a/protocols/4fc750/README.md +++ b/protocols/4fc750/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/50486f-v2-part1/README.md b/protocols/50486f-v2-part1/README.md index bed7841cc..a638caaef 100644 --- a/protocols/50486f-v2-part1/README.md +++ b/protocols/50486f-v2-part1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/50486f-v2-part2/README.md b/protocols/50486f-v2-part2/README.md index f0233d8dd..486cbd3c9 100644 --- a/protocols/50486f-v2-part2/README.md +++ b/protocols/50486f-v2-part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/50486f-v2-part3/README.md b/protocols/50486f-v2-part3/README.md index 181cfddb7..e1cf24fa6 100644 --- a/protocols/50486f-v2-part3/README.md +++ b/protocols/50486f-v2-part3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/50486f-v2-part4/README.md b/protocols/50486f-v2-part4/README.md index a87cad12b..c04719241 100644 --- a/protocols/50486f-v2-part4/README.md +++ b/protocols/50486f-v2-part4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/50486f-v2-part5/README.md b/protocols/50486f-v2-part5/README.md index cd15144d0..cf2ce132c 100644 --- a/protocols/50486f-v2-part5/README.md +++ b/protocols/50486f-v2-part5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/50c11b/README.md b/protocols/50c11b/README.md index 6dcf9fea9..d3ed38e7a 100644 --- a/protocols/50c11b/README.md +++ b/protocols/50c11b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/516336-part-2/README.md b/protocols/516336-part-2/README.md index e35aeb56b..ec4b63915 100644 --- a/protocols/516336-part-2/README.md +++ b/protocols/516336-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/516336/README.md b/protocols/516336/README.md index ef616175b..cdcbc0b5a 100644 --- a/protocols/516336/README.md +++ b/protocols/516336/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/5191b6/README.md b/protocols/5191b6/README.md index d2652ee45..60b645d82 100644 --- a/protocols/5191b6/README.md +++ b/protocols/5191b6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/51b9a5/README.md b/protocols/51b9a5/README.md index baa35c5ac..b1ada95b9 100644 --- a/protocols/51b9a5/README.md +++ b/protocols/51b9a5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/51df08/README.md b/protocols/51df08/README.md index 74893b6f6..db5255557 100644 --- a/protocols/51df08/README.md +++ b/protocols/51df08/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/528c16/README.md b/protocols/528c16/README.md index 54cd3e2ae..5f6e4524e 100644 --- a/protocols/528c16/README.md +++ b/protocols/528c16/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/52d238/README.md b/protocols/52d238/README.md index ceab64410..95fcc27bc 100644 --- a/protocols/52d238/README.md +++ b/protocols/52d238/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/53134e/README.md b/protocols/53134e/README.md index a62631f1a..8a376a5ba 100644 --- a/protocols/53134e/README.md +++ b/protocols/53134e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/53e6bc_mastermix_creation/README.md b/protocols/53e6bc_mastermix_creation/README.md index efa64ee1e..a45c192f3 100644 --- a/protocols/53e6bc_mastermix_creation/README.md +++ b/protocols/53e6bc_mastermix_creation/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/53fec2/README.md b/protocols/53fec2/README.md index 42019f5a6..f8248fcc2 100644 --- a/protocols/53fec2/README.md +++ b/protocols/53fec2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/543bf9/README.md b/protocols/543bf9/README.md index b5f49dacf..8d2abf228 100644 --- a/protocols/543bf9/README.md +++ b/protocols/543bf9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5520f0/README.md b/protocols/5520f0/README.md index 2b079446c..527424e1f 100644 --- a/protocols/5520f0/README.md +++ b/protocols/5520f0/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories diff --git a/protocols/558d02/README.md b/protocols/558d02/README.md index c11c9ab0e..d1e080107 100644 --- a/protocols/558d02/README.md +++ b/protocols/558d02/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/559aa0/README.md b/protocols/559aa0/README.md index b6b5f3e4a..506044451 100644 --- a/protocols/559aa0/README.md +++ b/protocols/559aa0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/563624/README.md b/protocols/563624/README.md index 4bff3358f..cec76ddce 100644 --- a/protocols/563624/README.md +++ b/protocols/563624/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/5654c0/README.md b/protocols/5654c0/README.md index e2cc9e594..ef42c2d62 100644 --- a/protocols/5654c0/README.md +++ b/protocols/5654c0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5689f5/README.md b/protocols/5689f5/README.md index 9b78da3e1..d8ed9994b 100644 --- a/protocols/5689f5/README.md +++ b/protocols/5689f5/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/56a6a1/README.md b/protocols/56a6a1/README.md index 1cfe08f23..581837856 100644 --- a/protocols/56a6a1/README.md +++ b/protocols/56a6a1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins & Proteomics diff --git a/protocols/56b4ec/README.md b/protocols/56b4ec/README.md index f74dbe82a..93adbca45 100644 --- a/protocols/56b4ec/README.md +++ b/protocols/56b4ec/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/581011-pt2/README.md b/protocols/581011-pt2/README.md index 31b116254..6a30919b2 100644 --- a/protocols/581011-pt2/README.md +++ b/protocols/581011-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/581011/README.md b/protocols/581011/README.md index a6923e02d..6f372665a 100644 --- a/protocols/581011/README.md +++ b/protocols/581011/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5829d7/README.md b/protocols/5829d7/README.md index 124dd765b..24af4679c 100644 --- a/protocols/5829d7/README.md +++ b/protocols/5829d7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/58d57d/README.md b/protocols/58d57d/README.md index d6b0947ee..6da8a2624 100644 --- a/protocols/58d57d/README.md +++ b/protocols/58d57d/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5a2a35/README.md b/protocols/5a2a35/README.md index bc365b68c..6972c08a7 100644 --- a/protocols/5a2a35/README.md +++ b/protocols/5a2a35/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5a3797-protocol-1/README.md b/protocols/5a3797-protocol-1/README.md index 9cc679684..201cb6ddc 100644 --- a/protocols/5a3797-protocol-1/README.md +++ b/protocols/5a3797-protocol-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/5a3797-protocol-2/README.md b/protocols/5a3797-protocol-2/README.md index 090809873..fc4b228be 100644 --- a/protocols/5a3797-protocol-2/README.md +++ b/protocols/5a3797-protocol-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/5a3797-protocol-3/README.md b/protocols/5a3797-protocol-3/README.md index a6b16a533..3e57367f7 100644 --- a/protocols/5a3797-protocol-3/README.md +++ b/protocols/5a3797-protocol-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/5a5767/README.md b/protocols/5a5767/README.md index 3b0c5190b..cbaa85ecd 100644 --- a/protocols/5a5767/README.md +++ b/protocols/5a5767/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5b16ef-pt2/README.md b/protocols/5b16ef-pt2/README.md index be7dd73ad..d301d071b 100644 --- a/protocols/5b16ef-pt2/README.md +++ b/protocols/5b16ef-pt2/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/5b16ef/README.md b/protocols/5b16ef/README.md index ae18925df..1dd451f9b 100644 --- a/protocols/5b16ef/README.md +++ b/protocols/5b16ef/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/5b8174/README.md b/protocols/5b8174/README.md index 8b2d65d73..f899c256f 100644 --- a/protocols/5b8174/README.md +++ b/protocols/5b8174/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5c14ad/README.md b/protocols/5c14ad/README.md index 4b06a1c34..88c42dc52 100644 --- a/protocols/5c14ad/README.md +++ b/protocols/5c14ad/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5c24e2/README.md b/protocols/5c24e2/README.md index f12ed76e9..9ebd7573f 100644 --- a/protocols/5c24e2/README.md +++ b/protocols/5c24e2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5c50d9/README.md b/protocols/5c50d9/README.md index ccffdfa3e..1e59f6af1 100644 --- a/protocols/5c50d9/README.md +++ b/protocols/5c50d9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/5c7384-hhu/README.md b/protocols/5c7384-hhu/README.md index 0dbf6f3ef..8087c7421 100644 --- a/protocols/5c7384-hhu/README.md +++ b/protocols/5c7384-hhu/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5c7384/README.md b/protocols/5c7384/README.md index 0dbf6f3ef..8087c7421 100644 --- a/protocols/5c7384/README.md +++ b/protocols/5c7384/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5dcd88/README.md b/protocols/5dcd88/README.md index 22e7de9eb..5e3c6b977 100644 --- a/protocols/5dcd88/README.md +++ b/protocols/5dcd88/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/5eee17/README.md b/protocols/5eee17/README.md index 8bcc3866c..e9335f868 100644 --- a/protocols/5eee17/README.md +++ b/protocols/5eee17/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/5f37a2/README.md b/protocols/5f37a2/README.md index 5e578090b..77de38449 100644 --- a/protocols/5f37a2/README.md +++ b/protocols/5f37a2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/5f791f/README.md b/protocols/5f791f/README.md index 48a8c332a..f12ae4b17 100644 --- a/protocols/5f791f/README.md +++ b/protocols/5f791f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/5f7d18/README.md b/protocols/5f7d18/README.md index eee322a60..55eeb0abd 100644 --- a/protocols/5f7d18/README.md +++ b/protocols/5f7d18/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/5fa647/README.md b/protocols/5fa647/README.md index 8ab6ebe42..c29e053ba 100644 --- a/protocols/5fa647/README.md +++ b/protocols/5fa647/README.md @@ -7,7 +7,7 @@ [Invitrogen](https://www.thermofisher.com/order/catalog/product/11752250#/11752250) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6030b7/README.md b/protocols/6030b7/README.md index d69fdc5ae..120a8729d 100644 --- a/protocols/6030b7/README.md +++ b/protocols/6030b7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/60d861-2/README.md b/protocols/60d861-2/README.md index 5e08f606c..f20321f84 100644 --- a/protocols/60d861-2/README.md +++ b/protocols/60d861-2/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/60d861-3/README.md b/protocols/60d861-3/README.md index e48220b2d..901cefdac 100644 --- a/protocols/60d861-3/README.md +++ b/protocols/60d861-3/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/60d861/README.md b/protocols/60d861/README.md index fec6b43aa..97ec843d3 100644 --- a/protocols/60d861/README.md +++ b/protocols/60d861/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6151af/README.md b/protocols/6151af/README.md index 255bdd623..8b2976772 100644 --- a/protocols/6151af/README.md +++ b/protocols/6151af/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/62679a/README.md b/protocols/62679a/README.md index 60b33b393..77fa10b7e 100644 --- a/protocols/62679a/README.md +++ b/protocols/62679a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/629f38/README.md b/protocols/629f38/README.md index 73b27c04e..a176c75c2 100644 --- a/protocols/629f38/README.md +++ b/protocols/629f38/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6401f1/README.md b/protocols/6401f1/README.md index f23572e06..8c71b3f6c 100644 --- a/protocols/6401f1/README.md +++ b/protocols/6401f1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/640a85/README.md b/protocols/640a85/README.md index 410b41853..6e282c87b 100644 --- a/protocols/640a85/README.md +++ b/protocols/640a85/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/642c73/README.md b/protocols/642c73/README.md index cb63c9c90..87ff6b0c6 100644 --- a/protocols/642c73/README.md +++ b/protocols/642c73/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/649b67/README.md b/protocols/649b67/README.md index a87b96025..bd2e2915d 100644 --- a/protocols/649b67/README.md +++ b/protocols/649b67/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/64c54a/README.md b/protocols/64c54a/README.md index b41fb5ee7..c28e42643 100644 --- a/protocols/64c54a/README.md +++ b/protocols/64c54a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/657ee9-2/README.md b/protocols/657ee9-2/README.md index 5f49de8b5..af18ddc12 100644 --- a/protocols/657ee9-2/README.md +++ b/protocols/657ee9-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/657ee9-3/README.md b/protocols/657ee9-3/README.md index 1e5694fac..45b9213d8 100644 --- a/protocols/657ee9-3/README.md +++ b/protocols/657ee9-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/657ee9-4/README.md b/protocols/657ee9-4/README.md index bf76d8341..58f46588f 100644 --- a/protocols/657ee9-4/README.md +++ b/protocols/657ee9-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/657ee9/README.md b/protocols/657ee9/README.md index 5b942468f..16e94d520 100644 --- a/protocols/657ee9/README.md +++ b/protocols/657ee9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/659888/README.md b/protocols/659888/README.md index c538d3577..254679bc8 100644 --- a/protocols/659888/README.md +++ b/protocols/659888/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/65ed01/README.md b/protocols/65ed01/README.md index abbdf8ede..ce9ac4b27 100644 --- a/protocols/65ed01/README.md +++ b/protocols/65ed01/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/66aa48/README.md b/protocols/66aa48/README.md index 7ee009064..98424d92c 100644 --- a/protocols/66aa48/README.md +++ b/protocols/66aa48/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/66e60f/README.md b/protocols/66e60f/README.md index 9f5923e6d..941dc59f0 100644 --- a/protocols/66e60f/README.md +++ b/protocols/66e60f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/68ce98/README.md b/protocols/68ce98/README.md index b3636235a..fc16d973e 100644 --- a/protocols/68ce98/README.md +++ b/protocols/68ce98/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/69486f/README.md b/protocols/69486f/README.md index 08075abe9..1a84cf160 100644 --- a/protocols/69486f/README.md +++ b/protocols/69486f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/698b9e-part2/README.md b/protocols/698b9e-part2/README.md index b45803361..95bbb6794 100644 --- a/protocols/698b9e-part2/README.md +++ b/protocols/698b9e-part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/698b9e/README.md b/protocols/698b9e/README.md index f310a4d5c..342c9c695 100644 --- a/protocols/698b9e/README.md +++ b/protocols/698b9e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/69cf81-2/README.md b/protocols/69cf81-2/README.md index 170942122..8a4dd2931 100644 --- a/protocols/69cf81-2/README.md +++ b/protocols/69cf81-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/69cf81/README.md b/protocols/69cf81/README.md index 34ade30e1..080b2e665 100644 --- a/protocols/69cf81/README.md +++ b/protocols/69cf81/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/69db93/README.md b/protocols/69db93/README.md index 20aa5cdfd..f5860a14e 100644 --- a/protocols/69db93/README.md +++ b/protocols/69db93/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6a77d9/README.md b/protocols/6a77d9/README.md index a7411cef5..263dd3348 100644 --- a/protocols/6a77d9/README.md +++ b/protocols/6a77d9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6a93a2-part2/README.md b/protocols/6a93a2-part2/README.md index 4922afada..1d186cdda 100644 --- a/protocols/6a93a2-part2/README.md +++ b/protocols/6a93a2-part2/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/protocols/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6a93a2-part3/README.md b/protocols/6a93a2-part3/README.md index 5185d2667..8e21165ac 100644 --- a/protocols/6a93a2-part3/README.md +++ b/protocols/6a93a2-part3/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/protocols/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6a93a2-part4/README.md b/protocols/6a93a2-part4/README.md index 10e78b334..d6d3f3aea 100644 --- a/protocols/6a93a2-part4/README.md +++ b/protocols/6a93a2-part4/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/protocols/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6a93a2-part5/README.md b/protocols/6a93a2-part5/README.md index 9f37f4b2f..0c34b3bdb 100644 --- a/protocols/6a93a2-part5/README.md +++ b/protocols/6a93a2-part5/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/protocols/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6a93a2/README.md b/protocols/6a93a2/README.md index ba6f44b4c..6f8131b01 100644 --- a/protocols/6a93a2/README.md +++ b/protocols/6a93a2/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/protocols/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6aee6e/README.md b/protocols/6aee6e/README.md index fb89ad855..ea7c044c4 100644 --- a/protocols/6aee6e/README.md +++ b/protocols/6aee6e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6af807-amendment/README.md b/protocols/6af807-amendment/README.md index 8bf12ae4f..99c383272 100644 --- a/protocols/6af807-amendment/README.md +++ b/protocols/6af807-amendment/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6af807/README.md b/protocols/6af807/README.md index d2b498a63..0387a9a84 100644 --- a/protocols/6af807/README.md +++ b/protocols/6af807/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6b51bd/README.md b/protocols/6b51bd/README.md index 412ebb003..efd048fda 100644 --- a/protocols/6b51bd/README.md +++ b/protocols/6b51bd/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6b8c90-2/README.md b/protocols/6b8c90-2/README.md index 74cb22f42..d053bffb2 100644 --- a/protocols/6b8c90-2/README.md +++ b/protocols/6b8c90-2/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6b8c90-3/README.md b/protocols/6b8c90-3/README.md index 3df03e171..3adf97005 100644 --- a/protocols/6b8c90-3/README.md +++ b/protocols/6b8c90-3/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6b8c90/README.md b/protocols/6b8c90/README.md index 7bb2fee1b..ae49766f2 100644 --- a/protocols/6b8c90/README.md +++ b/protocols/6b8c90/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6b9ee3/README.md b/protocols/6b9ee3/README.md index e35e3ef52..35235a3c7 100644 --- a/protocols/6b9ee3/README.md +++ b/protocols/6b9ee3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6bc986-part-2/README.md b/protocols/6bc986-part-2/README.md index c98c997a9..81e7b52fe 100644 --- a/protocols/6bc986-part-2/README.md +++ b/protocols/6bc986-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6bc986-part-3/README.md b/protocols/6bc986-part-3/README.md index 60e893a09..aa720a91e 100644 --- a/protocols/6bc986-part-3/README.md +++ b/protocols/6bc986-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6bc986-part-4/README.md b/protocols/6bc986-part-4/README.md index 0dbb3ed81..eec66f9f2 100644 --- a/protocols/6bc986-part-4/README.md +++ b/protocols/6bc986-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6bc986-part-5/README.md b/protocols/6bc986-part-5/README.md index bc26bd2a7..2d0b0b93b 100644 --- a/protocols/6bc986-part-5/README.md +++ b/protocols/6bc986-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6bc986-part-6/README.md b/protocols/6bc986-part-6/README.md index a2bc18ed5..124c72ac1 100644 --- a/protocols/6bc986-part-6/README.md +++ b/protocols/6bc986-part-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6bc986/README.md b/protocols/6bc986/README.md index ab398dfc0..5b75493c6 100644 --- a/protocols/6bc986/README.md +++ b/protocols/6bc986/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6be1f8/README.md b/protocols/6be1f8/README.md index ba3844fc6..86492a17a 100644 --- a/protocols/6be1f8/README.md +++ b/protocols/6be1f8/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6c27ee/README.md b/protocols/6c27ee/README.md index ee73831f6..712b75f24 100644 --- a/protocols/6c27ee/README.md +++ b/protocols/6c27ee/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6c7447/README.md b/protocols/6c7447/README.md index f43bd9148..6c1e9f034 100644 --- a/protocols/6c7447/README.md +++ b/protocols/6c7447/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6cb818/README.md b/protocols/6cb818/README.md index fe2fee0fc..f499151bb 100644 --- a/protocols/6cb818/README.md +++ b/protocols/6cb818/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6cd9d6/README.md b/protocols/6cd9d6/README.md index ab5cde5d9..13dd8f2e3 100644 --- a/protocols/6cd9d6/README.md +++ b/protocols/6cd9d6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d2e65/README.md b/protocols/6d2e65/README.md index 692a7f45d..2b588df55 100644 --- a/protocols/6d2e65/README.md +++ b/protocols/6d2e65/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6d3eda/README.md b/protocols/6d3eda/README.md index 9b188c86e..3ef4a4e20 100644 --- a/protocols/6d3eda/README.md +++ b/protocols/6d3eda/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6d7eb7/README.md b/protocols/6d7eb7/README.md index f5153b437..df872640c 100644 --- a/protocols/6d7eb7/README.md +++ b/protocols/6d7eb7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6d7fc3-part-2/README.md b/protocols/6d7fc3-part-2/README.md index 86358c433..bee5ba380 100644 --- a/protocols/6d7fc3-part-2/README.md +++ b/protocols/6d7fc3-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d7fc3-part-3/README.md b/protocols/6d7fc3-part-3/README.md index 6bd4c6497..d99623281 100644 --- a/protocols/6d7fc3-part-3/README.md +++ b/protocols/6d7fc3-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d7fc3-part-4/README.md b/protocols/6d7fc3-part-4/README.md index 213bd89ba..3c208c6c6 100644 --- a/protocols/6d7fc3-part-4/README.md +++ b/protocols/6d7fc3-part-4/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d7fc3-part-5/README.md b/protocols/6d7fc3-part-5/README.md index bd20c3f71..e2093a4af 100644 --- a/protocols/6d7fc3-part-5/README.md +++ b/protocols/6d7fc3-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d7fc3-part-6/README.md b/protocols/6d7fc3-part-6/README.md index 899f9e404..1776f2ce6 100644 --- a/protocols/6d7fc3-part-6/README.md +++ b/protocols/6d7fc3-part-6/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d7fc3-part-7/README.md b/protocols/6d7fc3-part-7/README.md index b482fa218..216e66334 100644 --- a/protocols/6d7fc3-part-7/README.md +++ b/protocols/6d7fc3-part-7/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d7fc3/README.md b/protocols/6d7fc3/README.md index 1925d65cd..e8db2da36 100644 --- a/protocols/6d7fc3/README.md +++ b/protocols/6d7fc3/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6d901d-2/README.md b/protocols/6d901d-2/README.md index 9f7048f89..19dedc7b4 100644 --- a/protocols/6d901d-2/README.md +++ b/protocols/6d901d-2/README.md @@ -7,7 +7,7 @@ [AstraZeneca](https://www.astrazeneca.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6d901d/README.md b/protocols/6d901d/README.md index 86ac53a79..0bdac489b 100644 --- a/protocols/6d901d/README.md +++ b/protocols/6d901d/README.md @@ -7,7 +7,7 @@ [AstraZeneca](https://www.astrazeneca.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6e160e/README.md b/protocols/6e160e/README.md index 078492c12..53a80d6f1 100644 --- a/protocols/6e160e/README.md +++ b/protocols/6e160e/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6e2509-v2/README.md b/protocols/6e2509-v2/README.md index 96236aabd..457158fc2 100644 --- a/protocols/6e2509-v2/README.md +++ b/protocols/6e2509-v2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6e2509/README.md b/protocols/6e2509/README.md index eb67426f4..240d9586f 100644 --- a/protocols/6e2509/README.md +++ b/protocols/6e2509/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6ec4dd-2/README.md b/protocols/6ec4dd-2/README.md index 79dc62492..4802e1019 100644 --- a/protocols/6ec4dd-2/README.md +++ b/protocols/6ec4dd-2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/6ec4dd/README.md b/protocols/6ec4dd/README.md index 52d441623..3c280f542 100644 --- a/protocols/6ec4dd/README.md +++ b/protocols/6ec4dd/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6f2d9b/README.md b/protocols/6f2d9b/README.md index 5b2979ec4..7535fc972 100644 --- a/protocols/6f2d9b/README.md +++ b/protocols/6f2d9b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/6f4e2c/README.md b/protocols/6f4e2c/README.md index 2d52a94bf..802372f6b 100644 --- a/protocols/6f4e2c/README.md +++ b/protocols/6f4e2c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6faa1e/README.md b/protocols/6faa1e/README.md index 589fc9fcc..1725fb45f 100644 --- a/protocols/6faa1e/README.md +++ b/protocols/6faa1e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/6fe477-workflow-1/README.md b/protocols/6fe477-workflow-1/README.md index 1fa5e1b1a..9c1fcc1a8 100644 --- a/protocols/6fe477-workflow-1/README.md +++ b/protocols/6fe477-workflow-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6fe477-workflow-2/README.md b/protocols/6fe477-workflow-2/README.md index 40c64c14e..da0136a60 100644 --- a/protocols/6fe477-workflow-2/README.md +++ b/protocols/6fe477-workflow-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/6ff9e9/README.md b/protocols/6ff9e9/README.md index 96f1c8e83..df972a154 100644 --- a/protocols/6ff9e9/README.md +++ b/protocols/6ff9e9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/701319/README.md b/protocols/701319/README.md index c913fc864..ac407312d 100644 --- a/protocols/701319/README.md +++ b/protocols/701319/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/70567f/README.md b/protocols/70567f/README.md index de53332ed..dbae8ba82 100644 --- a/protocols/70567f/README.md +++ b/protocols/70567f/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7062c9-2/README.md b/protocols/7062c9-2/README.md index 010aa4fab..a842594ed 100644 --- a/protocols/7062c9-2/README.md +++ b/protocols/7062c9-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/7062c9-aliquot/README.md b/protocols/7062c9-aliquot/README.md index dca5b97a1..74a17c787 100644 --- a/protocols/7062c9-aliquot/README.md +++ b/protocols/7062c9-aliquot/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7062c9/README.md b/protocols/7062c9/README.md index 5816ef6d0..3aa155cf8 100644 --- a/protocols/7062c9/README.md +++ b/protocols/7062c9/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/71381b/README.md b/protocols/71381b/README.md index 46a4e3959..dde812a1e 100644 --- a/protocols/71381b/README.md +++ b/protocols/71381b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/7363e4/README.md b/protocols/7363e4/README.md index 09554b4e5..6ac1b1b4e 100644 --- a/protocols/7363e4/README.md +++ b/protocols/7363e4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/74312c/README.md b/protocols/74312c/README.md index 73dfb0de6..07b4e1bfa 100644 --- a/protocols/74312c/README.md +++ b/protocols/74312c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/743f54/README.md b/protocols/743f54/README.md index affaa7941..4bb7d7f02 100644 --- a/protocols/743f54/README.md +++ b/protocols/743f54/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/74750e/README.md b/protocols/74750e/README.md index e29444bab..7e049a4ee 100644 --- a/protocols/74750e/README.md +++ b/protocols/74750e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/747d99-assay-1/README.md b/protocols/747d99-assay-1/README.md index ffffb8de9..3cb645697 100644 --- a/protocols/747d99-assay-1/README.md +++ b/protocols/747d99-assay-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/747d99-assay-2/README.md b/protocols/747d99-assay-2/README.md index 6c119a8a8..8e2df30f5 100644 --- a/protocols/747d99-assay-2/README.md +++ b/protocols/747d99-assay-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/74841a-2/README.md b/protocols/74841a-2/README.md index eec446c00..55192f5de 100644 --- a/protocols/74841a-2/README.md +++ b/protocols/74841a-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/74841a/README.md b/protocols/74841a/README.md index e27570c3d..074892796 100644 --- a/protocols/74841a/README.md +++ b/protocols/74841a/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/74b303/README.md b/protocols/74b303/README.md index 2fa83f99d..35ac7b8c7 100644 --- a/protocols/74b303/README.md +++ b/protocols/74b303/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Normalization diff --git a/protocols/751127/README.md b/protocols/751127/README.md index 80e1619e0..92a29271b 100644 --- a/protocols/751127/README.md +++ b/protocols/751127/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/75cfa6/README.md b/protocols/75cfa6/README.md index 7e727637f..a3995f789 100644 --- a/protocols/75cfa6/README.md +++ b/protocols/75cfa6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/76174b/README.md b/protocols/76174b/README.md index fc31e69e6..2b93c9cd7 100644 --- a/protocols/76174b/README.md +++ b/protocols/76174b/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7663a6/README.md b/protocols/7663a6/README.md index c4546f805..8098b6e40 100644 --- a/protocols/7663a6/README.md +++ b/protocols/7663a6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/76ab0e/README.md b/protocols/76ab0e/README.md index bd860a610..daf1a8099 100644 --- a/protocols/76ab0e/README.md +++ b/protocols/76ab0e/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/76ba23-bisulfite_conversion/README.md b/protocols/76ba23-bisulfite_conversion/README.md index a599166b9..ea72e9960 100644 --- a/protocols/76ba23-bisulfite_conversion/README.md +++ b/protocols/76ba23-bisulfite_conversion/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/76ba23-pcr1/README.md b/protocols/76ba23-pcr1/README.md index 0b68b6a7c..b733b32d8 100644 --- a/protocols/76ba23-pcr1/README.md +++ b/protocols/76ba23-pcr1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/76ba23-pcr2/README.md b/protocols/76ba23-pcr2/README.md index 3062afb2b..86d9d0420 100644 --- a/protocols/76ba23-pcr2/README.md +++ b/protocols/76ba23-pcr2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/76ba23-pooling/README.md b/protocols/76ba23-pooling/README.md index 5097eed4d..669be199b 100644 --- a/protocols/76ba23-pooling/README.md +++ b/protocols/76ba23-pooling/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/76ba23/README.md b/protocols/76ba23/README.md index 7bf9a578d..a6b045aaa 100644 --- a/protocols/76ba23/README.md +++ b/protocols/76ba23/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/76c562/README.md b/protocols/76c562/README.md index 255374c1f..807014f9b 100644 --- a/protocols/76c562/README.md +++ b/protocols/76c562/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/772041/README.md b/protocols/772041/README.md index 0cd683543..a1830ea4a 100644 --- a/protocols/772041/README.md +++ b/protocols/772041/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/776039/README.md b/protocols/776039/README.md index 400754c01..9d34a5073 100644 --- a/protocols/776039/README.md +++ b/protocols/776039/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7805de-part-2/README.md b/protocols/7805de-part-2/README.md index ec14de92e..9272d0930 100644 --- a/protocols/7805de-part-2/README.md +++ b/protocols/7805de-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7805de-part-3/README.md b/protocols/7805de-part-3/README.md index bf5eae153..ccaf8f784 100644 --- a/protocols/7805de-part-3/README.md +++ b/protocols/7805de-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7805de-part-4/README.md b/protocols/7805de-part-4/README.md index 3b4901f45..9144da128 100644 --- a/protocols/7805de-part-4/README.md +++ b/protocols/7805de-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7805de/README.md b/protocols/7805de/README.md index 39e6ab32a..727da16c2 100644 --- a/protocols/7805de/README.md +++ b/protocols/7805de/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-part2/README.md b/protocols/7855ef-part2/README.md index d121b0102..e3002a707 100644 --- a/protocols/7855ef-part2/README.md +++ b/protocols/7855ef-part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-part3/README.md b/protocols/7855ef-part3/README.md index 0d97af678..07bd867cd 100644 --- a/protocols/7855ef-part3/README.md +++ b/protocols/7855ef-part3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-part4/README.md b/protocols/7855ef-part4/README.md index 979245c24..ad38b5752 100644 --- a/protocols/7855ef-part4/README.md +++ b/protocols/7855ef-part4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-plate-part2/README.md b/protocols/7855ef-plate-part2/README.md index 6d0be0825..3c332869f 100644 --- a/protocols/7855ef-plate-part2/README.md +++ b/protocols/7855ef-plate-part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-plate-part3/README.md b/protocols/7855ef-plate-part3/README.md index 4cabdf334..628264cab 100644 --- a/protocols/7855ef-plate-part3/README.md +++ b/protocols/7855ef-plate-part3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-plate-part4/README.md b/protocols/7855ef-plate-part4/README.md index e77ba965a..4e57d322e 100644 --- a/protocols/7855ef-plate-part4/README.md +++ b/protocols/7855ef-plate-part4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef-plate/README.md b/protocols/7855ef-plate/README.md index 74c64252f..39b1c39a2 100644 --- a/protocols/7855ef-plate/README.md +++ b/protocols/7855ef-plate/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7855ef/README.md b/protocols/7855ef/README.md index ac4e2f552..0e1c1e254 100644 --- a/protocols/7855ef/README.md +++ b/protocols/7855ef/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/78d33c-part-2/README.md b/protocols/78d33c-part-2/README.md index 0fa008501..5053a4ad4 100644 --- a/protocols/78d33c-part-2/README.md +++ b/protocols/78d33c-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/78d33c-part-3/README.md b/protocols/78d33c-part-3/README.md index d1b7d0d29..00994b7fb 100644 --- a/protocols/78d33c-part-3/README.md +++ b/protocols/78d33c-part-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/78d33c-part-4/README.md b/protocols/78d33c-part-4/README.md index 87b5e4f8a..8f7073e3a 100644 --- a/protocols/78d33c-part-4/README.md +++ b/protocols/78d33c-part-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/78d33c-part-5/README.md b/protocols/78d33c-part-5/README.md index da82a1684..fd91eafd4 100644 --- a/protocols/78d33c-part-5/README.md +++ b/protocols/78d33c-part-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/78d33c-part-6/README.md b/protocols/78d33c-part-6/README.md index 7a771843e..b21de83c2 100644 --- a/protocols/78d33c-part-6/README.md +++ b/protocols/78d33c-part-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/78d33c/README.md b/protocols/78d33c/README.md index af0aba551..d39055c7e 100644 --- a/protocols/78d33c/README.md +++ b/protocols/78d33c/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/796af8/README.md b/protocols/796af8/README.md index e8efb7e54..b9921ce09 100644 --- a/protocols/796af8/README.md +++ b/protocols/796af8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/797dee-normalization/README.md b/protocols/797dee-normalization/README.md index 3bb046303..e035fe22e 100644 --- a/protocols/797dee-normalization/README.md +++ b/protocols/797dee-normalization/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/79e9a1-cleanup/README.md b/protocols/79e9a1-cleanup/README.md index e97cdaf0d..5d5a49216 100644 --- a/protocols/79e9a1-cleanup/README.md +++ b/protocols/79e9a1-cleanup/README.md @@ -5,7 +5,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories diff --git a/protocols/7a1ae8/README.md b/protocols/7a1ae8/README.md index 285a6aba5..167cca851 100644 --- a/protocols/7a1ae8/README.md +++ b/protocols/7a1ae8/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/7a3e4b/README.md b/protocols/7a3e4b/README.md index e14b3d319..504263c22 100644 --- a/protocols/7a3e4b/README.md +++ b/protocols/7a3e4b/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/7aa3fd-library-pooling/README.md b/protocols/7aa3fd-library-pooling/README.md index 506a4f205..255eec7b7 100644 --- a/protocols/7aa3fd-library-pooling/README.md +++ b/protocols/7aa3fd-library-pooling/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7aa3fd-library-quantification/README.md b/protocols/7aa3fd-library-quantification/README.md index 3cbd7337d..c0e344718 100644 --- a/protocols/7aa3fd-library-quantification/README.md +++ b/protocols/7aa3fd-library-quantification/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7aa3fd-size-selection/README.md b/protocols/7aa3fd-size-selection/README.md index cd6c44db0..69c54f318 100644 --- a/protocols/7aa3fd-size-selection/README.md +++ b/protocols/7aa3fd-size-selection/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7aad4e/README.md b/protocols/7aad4e/README.md index 182379ccd..b915fdeba 100644 --- a/protocols/7aad4e/README.md +++ b/protocols/7aad4e/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7ada78-pt2/README.md b/protocols/7ada78-pt2/README.md index 8afcefa8f..4b9763319 100644 --- a/protocols/7ada78-pt2/README.md +++ b/protocols/7ada78-pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/7ada78/README.md b/protocols/7ada78/README.md index 03b7cca28..a0b97b833 100644 --- a/protocols/7ada78/README.md +++ b/protocols/7ada78/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/7cfbde/README.md b/protocols/7cfbde/README.md index ca294cb3e..594f7a4b2 100644 --- a/protocols/7cfbde/README.md +++ b/protocols/7cfbde/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/7e3b31/README.md b/protocols/7e3b31/README.md index 1af9bcd2d..bc0bb39c7 100644 --- a/protocols/7e3b31/README.md +++ b/protocols/7e3b31/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/7e4c3e-1/README.md b/protocols/7e4c3e-1/README.md index ea168fd02..fb3b6ffdb 100644 --- a/protocols/7e4c3e-1/README.md +++ b/protocols/7e4c3e-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7e4c3e-2/README.md b/protocols/7e4c3e-2/README.md index 3616cc36d..fe4f8dc8a 100644 --- a/protocols/7e4c3e-2/README.md +++ b/protocols/7e4c3e-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7e4c3e-3/README.md b/protocols/7e4c3e-3/README.md index 3363833f0..ac7b4d88a 100644 --- a/protocols/7e4c3e-3/README.md +++ b/protocols/7e4c3e-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7e4c3e-4/README.md b/protocols/7e4c3e-4/README.md index adc091ab6..bcf479403 100644 --- a/protocols/7e4c3e-4/README.md +++ b/protocols/7e4c3e-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7e4c3e-5/README.md b/protocols/7e4c3e-5/README.md index 14709fae4..e976ae033 100644 --- a/protocols/7e4c3e-5/README.md +++ b/protocols/7e4c3e-5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7e4c3e-6/README.md b/protocols/7e4c3e-6/README.md index 4939166b2..6cd40d582 100644 --- a/protocols/7e4c3e-6/README.md +++ b/protocols/7e4c3e-6/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7f0f89/README.md b/protocols/7f0f89/README.md index ad2bc57ff..d26535e20 100644 --- a/protocols/7f0f89/README.md +++ b/protocols/7f0f89/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7f9595/README.md b/protocols/7f9595/README.md index e74bb7b06..714940ec2 100644 --- a/protocols/7f9595/README.md +++ b/protocols/7f9595/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/7fc7b1/README.md b/protocols/7fc7b1/README.md index a7a57453e..d6764bbff 100644 --- a/protocols/7fc7b1/README.md +++ b/protocols/7fc7b1/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/85b0dc/README.md b/protocols/85b0dc/README.md index ba4c1c057..f17fef745 100644 --- a/protocols/85b0dc/README.md +++ b/protocols/85b0dc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/8nhsa0-norm/README.md b/protocols/8nhsa0-norm/README.md index c3b082427..5f3604de1 100644 --- a/protocols/8nhsa0-norm/README.md +++ b/protocols/8nhsa0-norm/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/8nhsa0/README.md b/protocols/8nhsa0/README.md index 729b71557..bf012b7c0 100644 --- a/protocols/8nhsa0/README.md +++ b/protocols/8nhsa0/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/9038af/README.md b/protocols/9038af/README.md index 00d094456..c67f5aba2 100644 --- a/protocols/9038af/README.md +++ b/protocols/9038af/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Library Prep diff --git a/protocols/925d07-cp/README.md b/protocols/925d07-cp/README.md index 29f7845e7..254277432 100644 --- a/protocols/925d07-cp/README.md +++ b/protocols/925d07-cp/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/925d07-pla/README.md b/protocols/925d07-pla/README.md index b86a54c49..968ff27e7 100644 --- a/protocols/925d07-pla/README.md +++ b/protocols/925d07-pla/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/925d07-q/README.md b/protocols/925d07-q/README.md index 53e81f83d..eda6e6572 100644 --- a/protocols/925d07-q/README.md +++ b/protocols/925d07-q/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/925d07-v3/README.md b/protocols/925d07-v3/README.md index 44b5b0db2..1cd6e1541 100644 --- a/protocols/925d07-v3/README.md +++ b/protocols/925d07-v3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/9778eb/README.md b/protocols/9778eb/README.md index 20a096fe6..6e9076e8b 100644 --- a/protocols/9778eb/README.md +++ b/protocols/9778eb/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/9778eb_mass_norm/README.md b/protocols/9778eb_mass_norm/README.md index ca3d02736..ab9f2063c 100644 --- a/protocols/9778eb_mass_norm/README.md +++ b/protocols/9778eb_mass_norm/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/9778eb_spri/README.md b/protocols/9778eb_spri/README.md index c04e943e7..80a97ae72 100644 --- a/protocols/9778eb_spri/README.md +++ b/protocols/9778eb_spri/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/979d28-normalization/README.md b/protocols/979d28-normalization/README.md index 8e8c70a04..7e1b8c5a3 100644 --- a/protocols/979d28-normalization/README.md +++ b/protocols/979d28-normalization/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/979d28-pcr/README.md b/protocols/979d28-pcr/README.md index f8cbe7133..5f822d9fc 100644 --- a/protocols/979d28-pcr/README.md +++ b/protocols/979d28-pcr/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/979d28/README.md b/protocols/979d28/README.md index c85137b6b..fb9a893ad 100644 --- a/protocols/979d28/README.md +++ b/protocols/979d28/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/9ot019/README.md b/protocols/9ot019/README.md index c41d47fcc..72f5ff7b0 100644 --- a/protocols/9ot019/README.md +++ b/protocols/9ot019/README.md @@ -6,7 +6,7 @@ Tim Dobbs -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * General Liquid Handling diff --git a/protocols/ML-normalization-cdna-library/README.md b/protocols/ML-normalization-cdna-library/README.md index ef1ca3454..88a3b3152 100644 --- a/protocols/ML-normalization-cdna-library/README.md +++ b/protocols/ML-normalization-cdna-library/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/ML-normalization/README.md b/protocols/ML-normalization/README.md index ef1ca3454..88a3b3152 100644 --- a/protocols/ML-normalization/README.md +++ b/protocols/ML-normalization/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/Opentrons_Logo/README.md b/protocols/Opentrons_Logo/README.md index d4f19ab22..f1c5c9971 100644 --- a/protocols/Opentrons_Logo/README.md +++ b/protocols/Opentrons_Logo/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/opentrons_logo). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/opentrons_logo). This page won’t be available after March 31st, 2024. ## Categories * Getting Started diff --git a/protocols/arcis-multi-test/README.md b/protocols/arcis-multi-test/README.md index e83584103..db80d0054 100644 --- a/protocols/arcis-multi-test/README.md +++ b/protocols/arcis-multi-test/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/arcis-single-test/README.md b/protocols/arcis-single-test/README.md index 5ec653a53..63dce8f40 100644 --- a/protocols/arcis-single-test/README.md +++ b/protocols/arcis-single-test/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/batch-test-plating/README.md b/protocols/batch-test-plating/README.md index 33a424f00..1876027a2 100644 --- a/protocols/batch-test-plating/README.md +++ b/protocols/batch-test-plating/README.md @@ -7,7 +7,7 @@ [Facundo Rodriguez Goren] -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/bc-rnadvance-viral-feat/README.md b/protocols/bc-rnadvance-viral-feat/README.md index bd0884062..7dce08c98 100644 --- a/protocols/bc-rnadvance-viral-feat/README.md +++ b/protocols/bc-rnadvance-viral-feat/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/bc-rnadvance-viral/README.md b/protocols/bc-rnadvance-viral/README.md index 77f004317..514bb2106 100644 --- a/protocols/bc-rnadvance-viral/README.md +++ b/protocols/bc-rnadvance-viral/README.md @@ -7,7 +7,7 @@ [Beckman Coulter Life Sciences](https://www.beckmancoulter.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/bms-illumina-dna-prep/README.md b/protocols/bms-illumina-dna-prep/README.md index 40034619e..5b50f5f29 100644 --- a/protocols/bms-illumina-dna-prep/README.md +++ b/protocols/bms-illumina-dna-prep/README.md @@ -6,7 +6,7 @@ [Illumina](https://www.illumina.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/bpg-rna-extraction/README.md b/protocols/bpg-rna-extraction/README.md index aebe618ba..92ddc28e8 100644 --- a/protocols/bpg-rna-extraction/README.md +++ b/protocols/bpg-rna-extraction/README.md @@ -7,7 +7,7 @@ [BP Genomics](https://bpgenomics.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/cepheid/README.md b/protocols/cepheid/README.md index 49c891f96..42daf0bca 100644 --- a/protocols/cepheid/README.md +++ b/protocols/cepheid/README.md @@ -7,7 +7,7 @@ [BasisDx](https://www.basisdx.org/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/cerillo/README.md b/protocols/cerillo/README.md index 2ad485e72..e064d5e33 100644 --- a/protocols/cerillo/README.md +++ b/protocols/cerillo/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/checkit/README.md b/protocols/checkit/README.md index 1cce9beef..18b59c1a1 100644 --- a/protocols/checkit/README.md +++ b/protocols/checkit/README.md @@ -7,7 +7,7 @@ ![logos](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/checkit/logo_sidebyside_v2.png) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/cherrypicking/README.md b/protocols/cherrypicking/README.md index cf0439e70..67d8f7fe6 100644 --- a/protocols/cherrypicking/README.md +++ b/protocols/cherrypicking/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/cherrypicking). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/cherrypicking). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/cherrypicking_simple/README.md b/protocols/cherrypicking_simple/README.md index fc226da63..0cee1521f 100644 --- a/protocols/cherrypicking_simple/README.md +++ b/protocols/cherrypicking_simple/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/complete-pcr/README.md b/protocols/complete-pcr/README.md index cbffaab29..2d8444aa3 100644 --- a/protocols/complete-pcr/README.md +++ b/protocols/complete-pcr/README.md @@ -4,7 +4,7 @@ [Opentrons](http://www.opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/covid19-rna-extraction/README.md b/protocols/covid19-rna-extraction/README.md index 9dec7dd2d..5bbab5081 100644 --- a/protocols/covid19-rna-extraction/README.md +++ b/protocols/covid19-rna-extraction/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/csv_transfer/README.md b/protocols/csv_transfer/README.md index a58acec34..fdbb89273 100644 --- a/protocols/csv_transfer/README.md +++ b/protocols/csv_transfer/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/customizable_serial_dilution_ot2/README.md b/protocols/customizable_serial_dilution_ot2/README.md index 99e36eaff..c6a2338da 100644 --- a/protocols/customizable_serial_dilution_ot2/README.md +++ b/protocols/customizable_serial_dilution_ot2/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/customizable_serial_dilution_ot2). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/customizable_serial_dilution_ot2). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/demo/README.md b/protocols/demo/README.md index 574da2482..8c48e1285 100644 --- a/protocols/demo/README.md +++ b/protocols/demo/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Getting Started diff --git a/protocols/dinosaur/README.md b/protocols/dinosaur/README.md index de85c45ec..7ba67e8a4 100644 --- a/protocols/dinosaur/README.md +++ b/protocols/dinosaur/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/dinosaur). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/dinosaur). This page won’t be available after March 31st, 2024. ## Categories * Getting Started diff --git a/protocols/dynabeads_plate_prep_1/README.md b/protocols/dynabeads_plate_prep_1/README.md index 38e198b65..6d25fdc63 100644 --- a/protocols/dynabeads_plate_prep_1/README.md +++ b/protocols/dynabeads_plate_prep_1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/dynabeads_plate_prep_2/README.md b/protocols/dynabeads_plate_prep_2/README.md index 828a7e376..45c6209a7 100644 --- a/protocols/dynabeads_plate_prep_2/README.md +++ b/protocols/dynabeads_plate_prep_2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/dz1j39/README.md b/protocols/dz1j39/README.md index c1550d0a4..028d3d3c8 100644 --- a/protocols/dz1j39/README.md +++ b/protocols/dz1j39/README.md @@ -6,7 +6,7 @@ Opentrons -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Cell and Tissue Culture diff --git a/protocols/e54ada/README.md b/protocols/e54ada/README.md index 504fe4ff8..8d43a7900 100644 --- a/protocols/e54ada/README.md +++ b/protocols/e54ada/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/e54ada_rt/README.md b/protocols/e54ada_rt/README.md index f45765e32..082212bf8 100644 --- a/protocols/e54ada_rt/README.md +++ b/protocols/e54ada_rt/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR Prep diff --git a/protocols/e9ff8d/README.md b/protocols/e9ff8d/README.md index 4469f3d5a..c106edc45 100644 --- a/protocols/e9ff8d/README.md +++ b/protocols/e9ff8d/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/e9ff8d_part2/README.md b/protocols/e9ff8d_part2/README.md index 3a87e8c06..78cc6615f 100644 --- a/protocols/e9ff8d_part2/README.md +++ b/protocols/e9ff8d_part2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Purification diff --git a/protocols/e9ff8d_part3/README.md b/protocols/e9ff8d_part3/README.md index bdc01a42f..f993598a8 100644 --- a/protocols/e9ff8d_part3/README.md +++ b/protocols/e9ff8d_part3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/e9ff8d_part4/README.md b/protocols/e9ff8d_part4/README.md index 962202900..42e75c8ce 100644 --- a/protocols/e9ff8d_part4/README.md +++ b/protocols/e9ff8d_part4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Purification diff --git a/protocols/ff5763/README.md b/protocols/ff5763/README.md index b3a768517..5adeb007f 100644 --- a/protocols/ff5763/README.md +++ b/protocols/ff5763/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/ff5763_part2/README.md b/protocols/ff5763_part2/README.md index f1b26f5c9..7fc08a4e8 100644 --- a/protocols/ff5763_part2/README.md +++ b/protocols/ff5763_part2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/ff5763_part3/README.md b/protocols/ff5763_part3/README.md index ebae2c8a9..7b7b9a997 100644 --- a/protocols/ff5763_part3/README.md +++ b/protocols/ff5763_part3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/ff5763_part4/README.md b/protocols/ff5763_part4/README.md index 8bfb297c1..e8594afb3 100644 --- a/protocols/ff5763_part4/README.md +++ b/protocols/ff5763_part4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/ff5763_part5/README.md b/protocols/ff5763_part5/README.md index 64d37ed86..491c0994a 100644 --- a/protocols/ff5763_part5/README.md +++ b/protocols/ff5763_part5/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/generic_ngs_prep/README.md b/protocols/generic_ngs_prep/README.md index 820241428..0e42544c0 100644 --- a/protocols/generic_ngs_prep/README.md +++ b/protocols/generic_ngs_prep/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/generic_pcr_prep_1/README.md b/protocols/generic_pcr_prep_1/README.md index 15ba76453..9df572bda 100644 --- a/protocols/generic_pcr_prep_1/README.md +++ b/protocols/generic_pcr_prep_1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/generic_pcr_prep_2/README.md b/protocols/generic_pcr_prep_2/README.md index 147ae55dc..07794e0f9 100644 --- a/protocols/generic_pcr_prep_2/README.md +++ b/protocols/generic_pcr_prep_2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/generic_protein_purification/README.md b/protocols/generic_protein_purification/README.md index 18bc99450..1fd8cfa02 100644 --- a/protocols/generic_protein_purification/README.md +++ b/protocols/generic_protein_purification/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/generic_station_A/README.md b/protocols/generic_station_A/README.md index dfa04d531..0210e11fb 100644 --- a/protocols/generic_station_A/README.md +++ b/protocols/generic_station_A/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/generic_station_C/README.md b/protocols/generic_station_C/README.md index fc40caf54..17c8ffae8 100644 --- a/protocols/generic_station_C/README.md +++ b/protocols/generic_station_C/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/gna_octea/README.md b/protocols/gna_octea/README.md index 10d86125d..1fd143785 100644 --- a/protocols/gna_octea/README.md +++ b/protocols/gna_octea/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/gna_octea_v2/README.md b/protocols/gna_octea_v2/README.md index 60bb8adf6..7d92fadd3 100644 --- a/protocols/gna_octea_v2/README.md +++ b/protocols/gna_octea_v2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/gsdx/README.md b/protocols/gsdx/README.md index 8c52412f6..69f7a21e5 100644 --- a/protocols/gsdx/README.md +++ b/protocols/gsdx/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/heater-shaker-beta/README.md b/protocols/heater-shaker-beta/README.md index 6488f13ea..110e38b13 100644 --- a/protocols/heater-shaker-beta/README.md +++ b/protocols/heater-shaker-beta/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Heater Shaker diff --git a/protocols/i7g1ym/README.md b/protocols/i7g1ym/README.md index 915a4aa20..11e091a82 100644 --- a/protocols/i7g1ym/README.md +++ b/protocols/i7g1ym/README.md @@ -6,7 +6,7 @@ Tim Fallon -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * General Liquid Handling diff --git a/protocols/illumina-nextera-XT-library-prep-part1/README.md b/protocols/illumina-nextera-XT-library-prep-part1/README.md index 9f3e1d432..2c70950ec 100644 --- a/protocols/illumina-nextera-XT-library-prep-part1/README.md +++ b/protocols/illumina-nextera-XT-library-prep-part1/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/illumina-nextera-xt-library-prep-part1). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/illumina-nextera-xt-library-prep-part1). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/illumina-nextera-XT-library-prep-part2/README.md b/protocols/illumina-nextera-XT-library-prep-part2/README.md index 3c510ba71..e01b61987 100644 --- a/protocols/illumina-nextera-XT-library-prep-part2/README.md +++ b/protocols/illumina-nextera-XT-library-prep-part2/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/illumina-nextera-xt-library-prep-part2). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/illumina-nextera-xt-library-prep-part2). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/illumina-nextera-XT-library-prep-part3/README.md b/protocols/illumina-nextera-XT-library-prep-part3/README.md index 080281453..5b6e3f9b5 100644 --- a/protocols/illumina-nextera-XT-library-prep-part3/README.md +++ b/protocols/illumina-nextera-XT-library-prep-part3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/illumina-nextera-XT-library-prep-part4/README.md b/protocols/illumina-nextera-XT-library-prep-part4/README.md index 0f7685001..2fb5cfd2d 100644 --- a/protocols/illumina-nextera-XT-library-prep-part4/README.md +++ b/protocols/illumina-nextera-XT-library-prep-part4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md b/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md index 109513430..932640ec6 100644 --- a/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md +++ b/protocols/macherey-nagel-nucleomag-DNA-microbiome/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-dna-microbiome). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-dna-microbiome). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-clean-up/README.md b/protocols/macherey-nagel-nucleomag-clean-up/README.md index eca08a3c6..8a43e76bd 100644 --- a/protocols/macherey-nagel-nucleomag-clean-up/README.md +++ b/protocols/macherey-nagel-nucleomag-clean-up/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-clean-up). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-clean-up). This page won’t be available after March 31st, 2024. ## Categories * NGS Library Prep diff --git a/protocols/macherey-nagel-nucleomag-dna-food/README.md b/protocols/macherey-nagel-nucleomag-dna-food/README.md index e5db24df8..bbd09a4af 100644 --- a/protocols/macherey-nagel-nucleomag-dna-food/README.md +++ b/protocols/macherey-nagel-nucleomag-dna-food/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-dna-food). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-dna-food). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-pathogen/README.md b/protocols/macherey-nagel-nucleomag-pathogen/README.md index 2278a2ab6..8e70a28b7 100644 --- a/protocols/macherey-nagel-nucleomag-pathogen/README.md +++ b/protocols/macherey-nagel-nucleomag-pathogen/README.md @@ -9,7 +9,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-rna/README.md b/protocols/macherey-nagel-nucleomag-rna/README.md index 9c094d43a..b7f524b07 100644 --- a/protocols/macherey-nagel-nucleomag-rna/README.md +++ b/protocols/macherey-nagel-nucleomag-rna/README.md @@ -9,7 +9,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-size-select/README.md b/protocols/macherey-nagel-nucleomag-size-select/README.md index 99aef0f3a..c0e0fc581 100644 --- a/protocols/macherey-nagel-nucleomag-size-select/README.md +++ b/protocols/macherey-nagel-nucleomag-size-select/README.md @@ -9,7 +9,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/macherey-nagel-nucleomag-tissue/README.md b/protocols/macherey-nagel-nucleomag-tissue/README.md index 24de4fef3..e06cee6ab 100644 --- a/protocols/macherey-nagel-nucleomag-tissue/README.md +++ b/protocols/macherey-nagel-nucleomag-tissue/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-tissue). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-tissue). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/macherey-nagel-nucleomag-virus/README.md b/protocols/macherey-nagel-nucleomag-virus/README.md index 88cbf9edd..273ea7218 100644 --- a/protocols/macherey-nagel-nucleomag-virus/README.md +++ b/protocols/macherey-nagel-nucleomag-virus/README.md @@ -8,7 +8,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-virus). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/macherey-nagel-nucleomag-virus). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/magnesil/README.md b/protocols/magnesil/README.md index 77c98b179..34c373498 100644 --- a/protocols/magnesil/README.md +++ b/protocols/magnesil/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/nextera-flex-library-prep-amplify-tagmented-dna/README.md b/protocols/nextera-flex-library-prep-amplify-tagmented-dna/README.md index 4a3fed59e..0ac1bf7c1 100644 --- a/protocols/nextera-flex-library-prep-amplify-tagmented-dna/README.md +++ b/protocols/nextera-flex-library-prep-amplify-tagmented-dna/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/nextera-flex-library-prep-cherrypick-samples/README.md b/protocols/nextera-flex-library-prep-cherrypick-samples/README.md index 463ffde7f..6149c0542 100644 --- a/protocols/nextera-flex-library-prep-cherrypick-samples/README.md +++ b/protocols/nextera-flex-library-prep-cherrypick-samples/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/nextera-flex-library-prep-cleanup-libraries/README.md b/protocols/nextera-flex-library-prep-cleanup-libraries/README.md index b8b414a7c..b7e4d7dd8 100644 --- a/protocols/nextera-flex-library-prep-cleanup-libraries/README.md +++ b/protocols/nextera-flex-library-prep-cleanup-libraries/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/nextera-flex-library-prep-post-tag-cleanup/README.md b/protocols/nextera-flex-library-prep-post-tag-cleanup/README.md index 278b6e75a..97373e9f3 100644 --- a/protocols/nextera-flex-library-prep-post-tag-cleanup/README.md +++ b/protocols/nextera-flex-library-prep-post-tag-cleanup/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/nextera-flex-library-prep-tagment-dna/README.md b/protocols/nextera-flex-library-prep-tagment-dna/README.md index 0f90f16a9..fc4207909 100644 --- a/protocols/nextera-flex-library-prep-tagment-dna/README.md +++ b/protocols/nextera-flex-library-prep-tagment-dna/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/normalization/README.md b/protocols/normalization/README.md index 56e05a18c..5303742aa 100644 --- a/protocols/normalization/README.md +++ b/protocols/normalization/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/normalization). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/normalization). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md index 6c480e634..7fd492870 100644 --- a/protocols/nucleic_acid_purification_with_magnetic_beads/README.md +++ b/protocols/nucleic_acid_purification_with_magnetic_beads/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://https://library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://https://library.opentrons.com/p/nucleic_acid_purification_with_magnetic_beads). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/omega-biotek-xpress/README.md b/protocols/omega-biotek-xpress/README.md index d08e15345..fa4f56a30 100644 --- a/protocols/omega-biotek-xpress/README.md +++ b/protocols/omega-biotek-xpress/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation diff --git a/protocols/omega_biotek_magbind_totalpure_NGS/README.md b/protocols/omega_biotek_magbind_totalpure_NGS/README.md index e9e623028..c44d4a310 100644 --- a/protocols/omega_biotek_magbind_totalpure_NGS/README.md +++ b/protocols/omega_biotek_magbind_totalpure_NGS/README.md @@ -6,7 +6,7 @@ ### Partner [Omega Bio-tek](http://omegabiotek.com/store/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/omega_biotek_magbind_totalpure_ngs). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/omega_biotek_magbind_totalpure_ngs). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/onsite-bms-48plate/README.md b/protocols/onsite-bms-48plate/README.md index 5b7e6fe45..571136113 100644 --- a/protocols/onsite-bms-48plate/README.md +++ b/protocols/onsite-bms-48plate/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/onsite-bms/README.md b/protocols/onsite-bms/README.md index 693b2c657..362dd4fe0 100644 --- a/protocols/onsite-bms/README.md +++ b/protocols/onsite-bms/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/onsite-circlelabs/README.md b/protocols/onsite-circlelabs/README.md index 995730ed1..2dba9a7bb 100644 --- a/protocols/onsite-circlelabs/README.md +++ b/protocols/onsite-circlelabs/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS LIBRARY PREP diff --git a/protocols/onsite-dmso/README.md b/protocols/onsite-dmso/README.md index b0d8d8cae..83a5fbe92 100644 --- a/protocols/onsite-dmso/README.md +++ b/protocols/onsite-dmso/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/onsite-ganda-1/README.md b/protocols/onsite-ganda-1/README.md index 575a115f1..d00d5240b 100644 --- a/protocols/onsite-ganda-1/README.md +++ b/protocols/onsite-ganda-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/onsite-ganda-2/README.md b/protocols/onsite-ganda-2/README.md index 4872de093..29819bfaf 100644 --- a/protocols/onsite-ganda-2/README.md +++ b/protocols/onsite-ganda-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/onsite-ganda-3/README.md b/protocols/onsite-ganda-3/README.md index 73e7bfccf..a36454e37 100644 --- a/protocols/onsite-ganda-3/README.md +++ b/protocols/onsite-ganda-3/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/onsite-ganda-4/README.md b/protocols/onsite-ganda-4/README.md index ac7a2142c..1bbd676d8 100644 --- a/protocols/onsite-ganda-4/README.md +++ b/protocols/onsite-ganda-4/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/onsite_atila_nasal/README.md b/protocols/onsite_atila_nasal/README.md index a52446672..bb602ff9e 100644 --- a/protocols/onsite_atila_nasal/README.md +++ b/protocols/onsite_atila_nasal/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/onsite_atila_saliva/README.md b/protocols/onsite_atila_saliva/README.md index 155bb2241..dced97a5a 100644 --- a/protocols/onsite_atila_saliva/README.md +++ b/protocols/onsite_atila_saliva/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/onsite_atila_saliva384_pt1/README.md b/protocols/onsite_atila_saliva384_pt1/README.md index 585197a8c..58d52dfd8 100644 --- a/protocols/onsite_atila_saliva384_pt1/README.md +++ b/protocols/onsite_atila_saliva384_pt1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/onsite_atila_saliva384_pt2/README.md b/protocols/onsite_atila_saliva384_pt2/README.md index f1158fcfb..ccb1aedbc 100644 --- a/protocols/onsite_atila_saliva384_pt2/README.md +++ b/protocols/onsite_atila_saliva384_pt2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/onsite_egenesis/README.md b/protocols/onsite_egenesis/README.md index b7414959e..a0f6df4e8 100644 --- a/protocols/onsite_egenesis/README.md +++ b/protocols/onsite_egenesis/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/onsite_egenesis_part2/README.md b/protocols/onsite_egenesis_part2/README.md index 28d2f0fb6..923706784 100644 --- a/protocols/onsite_egenesis_part2/README.md +++ b/protocols/onsite_egenesis_part2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/onsite_galatea_mag_bind/README.md b/protocols/onsite_galatea_mag_bind/README.md index 1ab4211dd..bb197b426 100644 --- a/protocols/onsite_galatea_mag_bind/README.md +++ b/protocols/onsite_galatea_mag_bind/README.md @@ -4,7 +4,7 @@ [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/onsite_galatea_normalization/README.md b/protocols/onsite_galatea_normalization/README.md index e12494b6b..26765af2e 100644 --- a/protocols/onsite_galatea_normalization/README.md +++ b/protocols/onsite_galatea_normalization/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/onsite_galatea_pre_normalization/README.md b/protocols/onsite_galatea_pre_normalization/README.md index 9eb574119..86f98d9de 100644 --- a/protocols/onsite_galatea_pre_normalization/README.md +++ b/protocols/onsite_galatea_pre_normalization/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/pcr_prep_part_1/README.md b/protocols/pcr_prep_part_1/README.md index 577b308cc..5c2b3b48e 100644 --- a/protocols/pcr_prep_part_1/README.md +++ b/protocols/pcr_prep_part_1/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/pcr_prep_part_1). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/pcr_prep_part_1). This page won’t be available after March 31st, 2024. ## Categories * PCR diff --git a/protocols/pcr_prep_part_2/README.md b/protocols/pcr_prep_part_2/README.md index dac6200f4..1e0a85aa5 100644 --- a/protocols/pcr_prep_part_2/README.md +++ b/protocols/pcr_prep_part_2/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/pcr_prep_part_2). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/pcr_prep_part_2). This page won’t be available after March 31st, 2024. ## Categories * PCR diff --git a/protocols/pcr_test_plan/README.md b/protocols/pcr_test_plan/README.md index 28443b189..fc6248732 100644 --- a/protocols/pcr_test_plan/README.md +++ b/protocols/pcr_test_plan/README.md @@ -7,7 +7,7 @@ [Stanford](https://www.stanford.edu/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/pooling/README.md b/protocols/pooling/README.md index 9439b5b9d..3df327181 100644 --- a/protocols/pooling/README.md +++ b/protocols/pooling/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/primer_hydration/README.md b/protocols/primer_hydration/README.md index 369700286..bb38ec396 100644 --- a/protocols/primer_hydration/README.md +++ b/protocols/primer_hydration/README.md @@ -4,7 +4,7 @@ [REM Analytics](https://www.remanalytics.ch/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR Prep diff --git a/protocols/promega-maxwell/README.md b/protocols/promega-maxwell/README.md index 2b2497401..d9d9804fb 100644 --- a/protocols/promega-maxwell/README.md +++ b/protocols/promega-maxwell/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/quintara_onsite_nanopore/README.md b/protocols/quintara_onsite_nanopore/README.md index f265c9970..995279916 100644 --- a/protocols/quintara_onsite_nanopore/README.md +++ b/protocols/quintara_onsite_nanopore/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/quintara_onsite_nanopore_pooling/README.md b/protocols/quintara_onsite_nanopore_pooling/README.md index dfc7dbbba..797b196d1 100644 --- a/protocols/quintara_onsite_nanopore_pooling/README.md +++ b/protocols/quintara_onsite_nanopore_pooling/README.md @@ -5,7 +5,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/quintara_onsite_part1/README.md b/protocols/quintara_onsite_part1/README.md index f014ef944..2f1b2e418 100644 --- a/protocols/quintara_onsite_part1/README.md +++ b/protocols/quintara_onsite_part1/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/quintara_onsite_part1_384/README.md b/protocols/quintara_onsite_part1_384/README.md index 55305ede2..b1bb8621c 100644 --- a/protocols/quintara_onsite_part1_384/README.md +++ b/protocols/quintara_onsite_part1_384/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/quintara_onsite_part2/README.md b/protocols/quintara_onsite_part2/README.md index 79dfe1595..314fdf73c 100644 --- a/protocols/quintara_onsite_part2/README.md +++ b/protocols/quintara_onsite_part2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/quintara_onsite_part3/README.md b/protocols/quintara_onsite_part3/README.md index 9760c7535..3937aeb60 100644 --- a/protocols/quintara_onsite_part3/README.md +++ b/protocols/quintara_onsite_part3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/quintara_onsite_part4/README.md b/protocols/quintara_onsite_part4/README.md index 251f7f718..ad7971a29 100644 --- a/protocols/quintara_onsite_part4/README.md +++ b/protocols/quintara_onsite_part4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/rem-pcr-plate/README.md b/protocols/rem-pcr-plate/README.md index 63fb1a445..b9626a69b 100644 --- a/protocols/rem-pcr-plate/README.md +++ b/protocols/rem-pcr-plate/README.md @@ -4,7 +4,7 @@ [REM Analytics](https://www.remanalytics.ch/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR Prep diff --git a/protocols/sci-amplex-red/README.md b/protocols/sci-amplex-red/README.md index 19ab9d853..eaecceec3 100644 --- a/protocols/sci-amplex-red/README.md +++ b/protocols/sci-amplex-red/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Standard curve for Hydrogen Peroxide diff --git a/protocols/sci-bead-based-elisa-for-sars-cov-2-surrogate-virus-neutralization-test/README.md b/protocols/sci-bead-based-elisa-for-sars-cov-2-surrogate-virus-neutralization-test/README.md index 6dc07f7d6..dfcb1aeaa 100644 --- a/protocols/sci-bead-based-elisa-for-sars-cov-2-surrogate-virus-neutralization-test/README.md +++ b/protocols/sci-bead-based-elisa-for-sars-cov-2-surrogate-virus-neutralization-test/README.md @@ -6,7 +6,7 @@ Boren Lin -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins diff --git a/protocols/sci-dynabeads-ip-1/README.md b/protocols/sci-dynabeads-ip-1/README.md index 3de9c2159..88e9105e9 100644 --- a/protocols/sci-dynabeads-ip-1/README.md +++ b/protocols/sci-dynabeads-ip-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-dynabeads-ip-2/README.md b/protocols/sci-dynabeads-ip-2/README.md index e7a3fc5f3..aeab46933 100644 --- a/protocols/sci-dynabeads-ip-2/README.md +++ b/protocols/sci-dynabeads-ip-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-dynabeads-tube-1/README.md b/protocols/sci-dynabeads-tube-1/README.md index 2912d2a4a..fd255984c 100644 --- a/protocols/sci-dynabeads-tube-1/README.md +++ b/protocols/sci-dynabeads-tube-1/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-dynabeads-tube-2/README.md b/protocols/sci-dynabeads-tube-2/README.md index f4d478362..31cd9dd82 100644 --- a/protocols/sci-dynabeads-tube-2/README.md +++ b/protocols/sci-dynabeads-tube-2/README.md @@ -4,7 +4,7 @@ Opentrons(https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-idt-normalase/README.md b/protocols/sci-idt-normalase/README.md index f92065de6..ad77eed0e 100644 --- a/protocols/sci-idt-normalase/README.md +++ b/protocols/sci-idt-normalase/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-idt-xgen-ez/README.md b/protocols/sci-idt-xgen-ez/README.md index 2465434b4..9ce498308 100644 --- a/protocols/sci-idt-xgen-ez/README.md +++ b/protocols/sci-idt-xgen-ez/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-idt-xgen-mc/README.md b/protocols/sci-idt-xgen-mc/README.md index ebe39d2be..1ecc17549 100644 --- a/protocols/sci-idt-xgen-mc/README.md +++ b/protocols/sci-idt-xgen-mc/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-illumina-dna-prep/README.md b/protocols/sci-illumina-dna-prep/README.md index c1db9530f..602f2c8c9 100644 --- a/protocols/sci-illumina-dna-prep/README.md +++ b/protocols/sci-illumina-dna-prep/README.md @@ -6,7 +6,7 @@ [Illumina](https://www.illumina.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-illumina-rna-enrichment-normalization/README.md b/protocols/sci-illumina-rna-enrichment-normalization/README.md index f6ca7fb96..5c6a4f24d 100644 --- a/protocols/sci-illumina-rna-enrichment-normalization/README.md +++ b/protocols/sci-illumina-rna-enrichment-normalization/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-lucif-assay1-for4/README.md b/protocols/sci-lucif-assay1-for4/README.md index 51dd5c7bc..e1d3ce520 100644 --- a/protocols/sci-lucif-assay1-for4/README.md +++ b/protocols/sci-lucif-assay1-for4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-lucif-assay1/README.md b/protocols/sci-lucif-assay1/README.md index affbaffa4..ea2cc6331 100644 --- a/protocols/sci-lucif-assay1/README.md +++ b/protocols/sci-lucif-assay1/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-lucif-assay2-for4/README.md b/protocols/sci-lucif-assay2-for4/README.md index eda93a3d9..abd6cdc41 100644 --- a/protocols/sci-lucif-assay2-for4/README.md +++ b/protocols/sci-lucif-assay2-for4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-lucif-assay2/README.md b/protocols/sci-lucif-assay2/README.md index cb43cb09f..3f7e1837c 100644 --- a/protocols/sci-lucif-assay2/README.md +++ b/protocols/sci-lucif-assay2/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Broad Category diff --git a/protocols/sci-lucif-assay3-for4/README.md b/protocols/sci-lucif-assay3-for4/README.md index f22d0d963..f219c9072 100644 --- a/protocols/sci-lucif-assay3-for4/README.md +++ b/protocols/sci-lucif-assay3-for4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-lucif-assay3/README.md b/protocols/sci-lucif-assay3/README.md index 41863d5a0..5fb04790f 100644 --- a/protocols/sci-lucif-assay3/README.md +++ b/protocols/sci-lucif-assay3/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-lucif-assay4-for4/README.md b/protocols/sci-lucif-assay4-for4/README.md index a8dd40bd8..15726d9d4 100644 --- a/protocols/sci-lucif-assay4-for4/README.md +++ b/protocols/sci-lucif-assay4-for4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-lucif-assay4/README.md b/protocols/sci-lucif-assay4/README.md index d7b5e3d40..e2f3b4802 100644 --- a/protocols/sci-lucif-assay4/README.md +++ b/protocols/sci-lucif-assay4/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/sci-macherey-nagel-nucleomag/README.md b/protocols/sci-macherey-nagel-nucleomag/README.md index 5d2aa4cec..916758218 100644 --- a/protocols/sci-macherey-nagel-nucleomag/README.md +++ b/protocols/sci-macherey-nagel-nucleomag/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-macherey-nagel-nucleomag). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-mag-bind-blood-tissue-kit/README.md b/protocols/sci-mag-bind-blood-tissue-kit/README.md index cb633cf79..477bd4403 100644 --- a/protocols/sci-mag-bind-blood-tissue-kit/README.md +++ b/protocols/sci-mag-bind-blood-tissue-kit/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-mag-bind-blood-tissue-kit). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-mag-bind-blood-tissue-kit). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-mgi-mgieasy-nucleic-acid-extraction-kit/README.md b/protocols/sci-mgi-mgieasy-nucleic-acid-extraction-kit/README.md index b953aff5d..f65b4557b 100644 --- a/protocols/sci-mgi-mgieasy-nucleic-acid-extraction-kit/README.md +++ b/protocols/sci-mgi-mgieasy-nucleic-acid-extraction-kit/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-neb-next-ultra/README.md b/protocols/sci-neb-next-ultra/README.md index d5134a2d9..9e1d20599 100644 --- a/protocols/sci-neb-next-ultra/README.md +++ b/protocols/sci-neb-next-ultra/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-omegabiotek-extraction-fa/README.md b/protocols/sci-omegabiotek-extraction-fa/README.md index b21f2fe53..44020f271 100644 --- a/protocols/sci-omegabiotek-extraction-fa/README.md +++ b/protocols/sci-omegabiotek-extraction-fa/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-extraction-fa). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-extraction-fa). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-extraction/README.md b/protocols/sci-omegabiotek-extraction/README.md index 254df9077..879d7dfb2 100644 --- a/protocols/sci-omegabiotek-extraction/README.md +++ b/protocols/sci-omegabiotek-extraction/README.md @@ -4,7 +4,7 @@ [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-magbind-temp/README.md b/protocols/sci-omegabiotek-magbind-temp/README.md index 0c73b9866..817099d42 100644 --- a/protocols/sci-omegabiotek-magbind-temp/README.md +++ b/protocols/sci-omegabiotek-magbind-temp/README.md @@ -3,7 +3,7 @@ [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-magbind-total-rna-96/README.md b/protocols/sci-omegabiotek-magbind-total-rna-96/README.md index 23a8bc995..2ce5b9f0e 100644 --- a/protocols/sci-omegabiotek-magbind-total-rna-96/README.md +++ b/protocols/sci-omegabiotek-magbind-total-rna-96/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-magbind-total-rna-96). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-magbind-total-rna-96). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-omegabiotek-magbind/README.md b/protocols/sci-omegabiotek-magbind/README.md index e8a520a2c..f97da1ccc 100644 --- a/protocols/sci-omegabiotek-magbind/README.md +++ b/protocols/sci-omegabiotek-magbind/README.md @@ -2,7 +2,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-magbind). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-omegabiotek-magbind). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-phytip-neutralization/README.md b/protocols/sci-phytip-neutralization/README.md index 5cfc97ec1..32bcace8c 100644 --- a/protocols/sci-phytip-neutralization/README.md +++ b/protocols/sci-phytip-neutralization/README.md @@ -10,7 +10,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-phytip-plate-prep/README.md b/protocols/sci-phytip-plate-prep/README.md index 9bf285a82..d4d97c504 100644 --- a/protocols/sci-phytip-plate-prep/README.md +++ b/protocols/sci-phytip-plate-prep/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-phytip-protein-A/README.md b/protocols/sci-phytip-protein-A/README.md index b3a4c659b..0b6800b4a 100644 --- a/protocols/sci-phytip-protein-A/README.md +++ b/protocols/sci-phytip-protein-A/README.md @@ -7,7 +7,7 @@ [Biotage](https://www.biotage.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-phytip-protein-puri/README.md b/protocols/sci-phytip-protein-puri/README.md index 0fc853ea0..e42ad0a61 100644 --- a/protocols/sci-phytip-protein-puri/README.md +++ b/protocols/sci-phytip-protein-puri/README.md @@ -7,7 +7,7 @@ [Biotage](https://www.biotage.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-pierce-ninta-magnetic-beads-part-2/README.md b/protocols/sci-pierce-ninta-magnetic-beads-part-2/README.md index 20f20409d..9ed4de18a 100644 --- a/protocols/sci-pierce-ninta-magnetic-beads-part-2/README.md +++ b/protocols/sci-pierce-ninta-magnetic-beads-part-2/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-pierce-ninta-magnetic-beads/README.md b/protocols/sci-pierce-ninta-magnetic-beads/README.md index cd6fb8101..fbcfdd592 100644 --- a/protocols/sci-pierce-ninta-magnetic-beads/README.md +++ b/protocols/sci-pierce-ninta-magnetic-beads/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Protein Purification diff --git a/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md b/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md index fd5fcc125..86328c8b8 100644 --- a/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md +++ b/protocols/sci-promega-magazorb-dna-mini-prep-kit/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-promega-magazorb-dna-mini-prep-kit). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-promega-magazorb-dna-mini-prep-kit). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-promega-magnesil-total-rna-mini-isolation-system/README.md b/protocols/sci-promega-magnesil-total-rna-mini-isolation-system/README.md index 345e97491..2db3ebd85 100644 --- a/protocols/sci-promega-magnesil-total-rna-mini-isolation-system/README.md +++ b/protocols/sci-promega-magnesil-total-rna-mini-isolation-system/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-roche-hyperprep/README.md b/protocols/sci-roche-hyperprep/README.md index 8403ac3b8..7ec3841b9 100644 --- a/protocols/sci-roche-hyperprep/README.md +++ b/protocols/sci-roche-hyperprep/README.md @@ -7,7 +7,7 @@ [Partner Name](partner website link) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/sci-tecan-cortisol-saliva-elisa/README.md b/protocols/sci-tecan-cortisol-saliva-elisa/README.md index ce194a8e4..daf978944 100644 --- a/protocols/sci-tecan-cortisol-saliva-elisa/README.md +++ b/protocols/sci-tecan-cortisol-saliva-elisa/README.md @@ -6,7 +6,7 @@ Boren Lin -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Proteins diff --git a/protocols/sci-thermofisher-magmax/README.md b/protocols/sci-thermofisher-magmax/README.md index b2b0b8273..964af97a2 100644 --- a/protocols/sci-thermofisher-magmax/README.md +++ b/protocols/sci-thermofisher-magmax/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-zymo-directzol-magbead/README.md b/protocols/sci-zymo-directzol-magbead/README.md index 452871f4a..4b8debe8f 100644 --- a/protocols/sci-zymo-directzol-magbead/README.md +++ b/protocols/sci-zymo-directzol-magbead/README.md @@ -3,7 +3,7 @@ ### Author [Opentrons (verified)](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-zymo-directzol-magbead). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/sci-zymo-directzol-magbead). This page won’t be available after March 31st, 2024. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/sci-zymo-quick-dna-rna-magbead/README.md b/protocols/sci-zymo-quick-dna-rna-magbead/README.md index 87f443517..25591aea1 100644 --- a/protocols/sci-zymo-quick-dna-rna-magbead/README.md +++ b/protocols/sci-zymo-quick-dna-rna-magbead/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/speaker-test/README.md b/protocols/speaker-test/README.md index daa485937..b22fc8993 100644 --- a/protocols/speaker-test/README.md +++ b/protocols/speaker-test/README.md @@ -6,7 +6,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Getting Started diff --git a/protocols/standard-biotools-da-192/README.md b/protocols/standard-biotools-da-192/README.md index d780461f2..c60d69fc7 100644 --- a/protocols/standard-biotools-da-192/README.md +++ b/protocols/standard-biotools-da-192/README.md @@ -8,7 +8,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/standard-biotools-da-48/README.md b/protocols/standard-biotools-da-48/README.md index 25ed11b3a..b7805ea69 100644 --- a/protocols/standard-biotools-da-48/README.md +++ b/protocols/standard-biotools-da-48/README.md @@ -9,7 +9,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/standard-biotools-da-96/README.md b/protocols/standard-biotools-da-96/README.md index 57a322a6f..70e2bba8e 100644 --- a/protocols/standard-biotools-da-96/README.md +++ b/protocols/standard-biotools-da-96/README.md @@ -9,7 +9,7 @@ -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * PCR diff --git a/protocols/swift-2s-turbo-pt1/README.md b/protocols/swift-2s-turbo-pt1/README.md index d4eb2720c..263ece7df 100644 --- a/protocols/swift-2s-turbo-pt1/README.md +++ b/protocols/swift-2s-turbo-pt1/README.md @@ -6,7 +6,7 @@ ### Partner [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/swift-2s-turbo-pt1). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/swift-2s-turbo-pt1). This page won’t be available after March 31st, 2024. ## Categories * Featured diff --git a/protocols/swift-2s-turbo-pt2/README.md b/protocols/swift-2s-turbo-pt2/README.md index 616529edd..a035c5256 100644 --- a/protocols/swift-2s-turbo-pt2/README.md +++ b/protocols/swift-2s-turbo-pt2/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/swift-2s-turbo-pt3/README.md b/protocols/swift-2s-turbo-pt3/README.md index 62c1cd91a..4daf08484 100644 --- a/protocols/swift-2s-turbo-pt3/README.md +++ b/protocols/swift-2s-turbo-pt3/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Featured diff --git a/protocols/swift-fully-automated-custom/README.md b/protocols/swift-fully-automated-custom/README.md index c8d01878a..0cb8771ef 100644 --- a/protocols/swift-fully-automated-custom/README.md +++ b/protocols/swift-fully-automated-custom/README.md @@ -7,7 +7,7 @@ [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/swift-fully-automated/README.md b/protocols/swift-fully-automated/README.md index 2cc67aad8..a5ad64ed0 100644 --- a/protocols/swift-fully-automated/README.md +++ b/protocols/swift-fully-automated/README.md @@ -6,7 +6,7 @@ ### Partner [Swift Biosciences](https://swiftbiosci.com/) -# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/swift-fully-automated). This page won’t be available after January 31st, 2024. +# Opentrons has launched a new Protocol Library. You should use the [new page for this protocol](https://library.opentrons.com/p/swift-fully-automated). This page won’t be available after March 31st, 2024. ## Categories * NGS Library Prep diff --git a/protocols/testdrive/README.md b/protocols/testdrive/README.md index e60c1c073..602bc3197 100644 --- a/protocols/testdrive/README.md +++ b/protocols/testdrive/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Getting Started diff --git a/protocols/thermocycler-csv/README.md b/protocols/thermocycler-csv/README.md index bff022718..e1c0e1756 100644 --- a/protocols/thermocycler-csv/README.md +++ b/protocols/thermocycler-csv/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Thermocycler diff --git a/protocols/thermocycler/README.md b/protocols/thermocycler/README.md index c8e39672a..5a9258b89 100644 --- a/protocols/thermocycler/README.md +++ b/protocols/thermocycler/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Getting Started diff --git a/protocols/user-upload_ZooMS_Protocol/README.md b/protocols/user-upload_ZooMS_Protocol/README.md index 0f6c97554..b523cd37d 100644 --- a/protocols/user-upload_ZooMS_Protocol/README.md +++ b/protocols/user-upload_ZooMS_Protocol/README.md @@ -4,7 +4,7 @@ [University of York BioArchaeology Team](https://www.york.ac.uk/archaeology/centres-facilities/bioarch/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Sample Prep diff --git a/protocols/zymo-quick-96/README.md b/protocols/zymo-quick-96/README.md index 9d211d2f4..157913e86 100644 --- a/protocols/zymo-quick-96/README.md +++ b/protocols/zymo-quick-96/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/zymo-quick-custom/README.md b/protocols/zymo-quick-custom/README.md index 7cc778060..2eb2f9d8e 100644 --- a/protocols/zymo-quick-custom/README.md +++ b/protocols/zymo-quick-custom/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/zymo-quick/README.md b/protocols/zymo-quick/README.md index 10ca35b5d..c90c53f81 100644 --- a/protocols/zymo-quick/README.md +++ b/protocols/zymo-quick/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Nucleic Acid Extraction & Purification diff --git a/protocols/zymo-ribofree-cleanup/README.md b/protocols/zymo-ribofree-cleanup/README.md index aa1cc5c3c..d9f9458bd 100644 --- a/protocols/zymo-ribofree-cleanup/README.md +++ b/protocols/zymo-ribofree-cleanup/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/zymo-ribofree-first-strand-cdna-synth-universal-depletion/README.md b/protocols/zymo-ribofree-first-strand-cdna-synth-universal-depletion/README.md index 07170ebd1..7460a83b1 100644 --- a/protocols/zymo-ribofree-first-strand-cdna-synth-universal-depletion/README.md +++ b/protocols/zymo-ribofree-first-strand-cdna-synth-universal-depletion/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/zymo-ribofree-library-index-pcr/README.md b/protocols/zymo-ribofree-library-index-pcr/README.md index 427d92dd3..f6639980b 100644 --- a/protocols/zymo-ribofree-library-index-pcr/README.md +++ b/protocols/zymo-ribofree-library-index-pcr/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/zymo-ribofree-p5-adapter-ligation/README.md b/protocols/zymo-ribofree-p5-adapter-ligation/README.md index b2afb6295..58210b5f8 100644 --- a/protocols/zymo-ribofree-p5-adapter-ligation/README.md +++ b/protocols/zymo-ribofree-p5-adapter-ligation/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/zymo-ribofree-p7-adapter-ligation/README.md b/protocols/zymo-ribofree-p7-adapter-ligation/README.md index 71db1d92f..f6077e261 100644 --- a/protocols/zymo-ribofree-p7-adapter-ligation/README.md +++ b/protocols/zymo-ribofree-p7-adapter-ligation/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * NGS Library Prep diff --git a/protocols/zymo-rna-extraction/README.md b/protocols/zymo-rna-extraction/README.md index 859222cee..8c17710cc 100644 --- a/protocols/zymo-rna-extraction/README.md +++ b/protocols/zymo-rna-extraction/README.md @@ -4,7 +4,7 @@ [Opentrons](https://opentrons.com/) -# Opentrons has launched a new Protocol Library. This page won’t be available after January 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. +# Opentrons has launched a new Protocol Library. This page won’t be available after March 31st, 2024. [Submit a request](https://docs.google.com/forms/d/e/1FAIpQLSdYYp9QCKow4nn0KlCVsMS3HX0eJ0N9O7-erajKvcpT0lWbSg/viewform) to add this protocol to the new library. ## Categories * Covid Workstation From 4a72b31b9657956fc5c91618af26b872f65b2cbc Mon Sep 17 00:00:00 2001 From: ncdiehl11 Date: Wed, 17 Jan 2024 15:28:29 -0500 Subject: [PATCH 09/10] change display color for listeria enzyme 2 to orange --- protocols/gsdx/bacgene.ot2.apiv2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/gsdx/bacgene.ot2.apiv2.py b/protocols/gsdx/bacgene.ot2.apiv2.py index 92fb921ff..5bdf458a6 100644 --- a/protocols/gsdx/bacgene.ot2.apiv2.py +++ b/protocols/gsdx/bacgene.ot2.apiv2.py @@ -132,7 +132,7 @@ def flash_lights(): enzyme_listeria_2_liq = ctx.define_liquid( name="listeria enzyme 2", description="", - display_color="#000fde", + display_color="#ffa500", ) enzyme_salmonella_liq = ctx.define_liquid( name="salmonella enzyme", From 9a82a681cdfed38364d49758d071e2f63aaab011 Mon Sep 17 00:00:00 2001 From: ncdiehl11 Date: Wed, 17 Jan 2024 15:35:35 -0500 Subject: [PATCH 10/10] update pb --- protoBuilds/gsdx/bacgene.ot2.apiv2.py.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protoBuilds/gsdx/bacgene.ot2.apiv2.py.json b/protoBuilds/gsdx/bacgene.ot2.apiv2.py.json index b316e44a0..8bdfcf131 100644 --- a/protoBuilds/gsdx/bacgene.ot2.apiv2.py.json +++ b/protoBuilds/gsdx/bacgene.ot2.apiv2.py.json @@ -1,5 +1,5 @@ { - "content": "import math\nfrom opentrons.types import Point, Mount\n\n\nmetadata = {\n 'protocolName': 'BACGene',\n 'author': 'Nick Diehl 12:\n raise Exception('Combination of listeria and salmonella samples \\\nexceeds plate capacity')\n\n # define locations of lysis buffer reagents\n lysis_buffer_listeria = lysis_rack.rows_by_name()['B'][\n 1::2]\n lysis_buffer_salmonella = lysis_rack.rows_by_name()['D'][\n 1::2]\n enzyme_listeria_1 = lysis_rack.rows_by_name()['B'][\n ::2]\n enzyme_listeria_2 = lysis_rack.rows_by_name()['C']\n enzyme_salmonella = lysis_rack.rows_by_name()['D'][\n ::2]\n positive_control_l = lysis_rack.wells_by_name()['A1']\n positive_control_s = lysis_rack.wells_by_name()['E1']\n\n # define liquids\n try:\n lysis_buffer_l_prepared_liq = ctx.define_liquid(\n name=\"listeria lysis buffer (prepared)\",\n description=\"\",\n display_color=\"#B925FF\",\n )\n lysis_buffer_l_fresh_liq = ctx.define_liquid(\n name=\"listeria lysis buffer (fresh)\",\n description=\"\",\n display_color=\"#E4ABFF\",\n )\n lysis_buffer_s_prepared_liq = ctx.define_liquid(\n name=\"salmonella lysis buffer (prepared)\",\n description=\"\",\n display_color=\"#FFD600\",\n )\n lysis_buffer_s_fresh_liq = ctx.define_liquid(\n name=\"salmonella lysis buffer (fresh)\",\n description=\"\",\n display_color=\"#FFF2AD\",\n )\n enzyme_listeria_1_liq = ctx.define_liquid(\n name=\"listeria enzyme 1\",\n description=\"\",\n display_color=\"#000fde\",\n )\n enzyme_listeria_2_liq = ctx.define_liquid(\n name=\"listeria enzyme 2\",\n description=\"\",\n display_color=\"#000fde\",\n )\n enzyme_salmonella_liq = ctx.define_liquid(\n name=\"salmonella enzyme\",\n description=\"\",\n display_color=\"#000fde\",\n )\n positive_control_l_liq = ctx.define_liquid(\n name=\"listeria postive control\",\n description=\"\",\n display_color=\"#ffff00\",\n )\n positive_control_s_liq = ctx.define_liquid(\n name=\"salmonella positive control\",\n description=\"\",\n display_color=\"#ffff00\",\n )\n samples_listeria_liq_sample = ctx.define_liquid(\n name=\"listeria samples\",\n description=\"\",\n display_color=\"#0EFFFB\",\n )\n samples_listeria_liq_lysis = ctx.define_liquid(\n name=\"listeria samples\",\n description=\"\",\n display_color=\"#0756EA\",\n )\n samples_listeria_liq_pcr = ctx.define_liquid(\n name=\"listeria samples\",\n description=\"\",\n display_color=\"#130183\",\n )\n samples_salmonella_liq_sample = ctx.define_liquid(\n name=\"salmonella samples\",\n description=\"\",\n display_color=\"#F6096D\",\n )\n samples_salmonella_liq_lysis = ctx.define_liquid(\n name=\"salmonella samples\",\n description=\"\",\n display_color=\"#FF0000\",\n )\n samples_salmonella_liq_pcr = ctx.define_liquid(\n name=\"salmonella samples\",\n description=\"\",\n display_color=\"#A92F00\",\n )\n except AttributeError:\n pass\n\n samples_single_listeria = sample_plate.wells()[:num_samples_listeria]\n num_cols_offset_samples_listeria = math.ceil(num_samples_listeria/8)\n samples_single_salmonella = sample_plate.wells()[\n num_cols_offset_samples_listeria*8:\n num_cols_offset_samples_listeria*8+num_samples_salmonella]\n lysis_single_listeria = lysis_plate.wells()[:num_samples_listeria]\n lysis_single_salmonella = lysis_plate.wells()[\n num_cols_offset_samples_listeria*8:\n num_cols_offset_samples_listeria*8+num_samples_salmonella]\n pcr_single_listeria = pcr_plate.wells()[:num_samples_listeria]\n pcr_single_salmonella = pcr_plate.wells()[\n num_cols_offset_samples_listeria*8:\n num_cols_offset_samples_listeria*8+num_samples_salmonella]\n\n # load liquids\n vol_sample = 5.0\n\n try:\n if num_samples_listeria > 0:\n positive_control_l.load_liquid(\n positive_control_l_liq, volume=vol_sample)\n if num_samples_salmonella > 0:\n positive_control_s.load_liquid(\n positive_control_s_liq, volume=vol_sample)\n [well.load_liquid(samples_listeria_liq_sample,\n volume=round(30/len(samples_single_listeria)))\n for well in samples_single_listeria[\n :max(0, len(samples_single_listeria)-2)]]\n [well.load_liquid(samples_salmonella_liq_sample,\n volume=round(10/len(samples_single_salmonella)))\n for well in samples_single_salmonella[\n :max(0, len(samples_single_salmonella)-2)]]\n [well.load_liquid(samples_listeria_liq_lysis,\n volume=round(30/len(lysis_single_listeria)))\n for well in lysis_single_listeria]\n [well.load_liquid(samples_salmonella_liq_lysis,\n volume=round(10/len(lysis_single_salmonella)))\n for well in lysis_single_salmonella]\n [well.load_liquid(samples_listeria_liq_pcr,\n volume=round(30/len(pcr_single_listeria)))\n for well in pcr_single_listeria]\n [well.load_liquid(samples_salmonella_liq_pcr,\n volume=round(10/len(pcr_single_salmonella)))\n for well in pcr_single_salmonella]\n except AttributeError:\n pass\n\n single_tip_count_map = {m300: 0, m20: 0}\n tip_ref = m300.tip_racks[0].wells()[0]\n default_current = 1\n\n right = True\n\n def drop(pip):\n nonlocal right\n offset = 30 if right else -15\n drop_loc = ctx.loaded_labwares[12].wells()[0].top().move(\n Point(x=offset))\n pip.drop_tip(drop_loc)\n right = not right\n\n def pick_up_single(pip=m300):\n mount = Mount.LEFT if pip.mount == 'left' else Mount.RIGHT\n current_single = 1/8*default_current\n if not ctx.is_simulating():\n # attenuate pickup current\n ctx._hw_manager.hardware._attached_instruments[\n mount].update_config_item(\n 'pick_up_current', current_single)\n pip.pick_up_tip(\n [well\n for col in pip.tip_racks[-1].columns()\n for well in col[::-1]][single_tip_count_map[pip]])\n single_tip_count_map[pip] += 1\n if not ctx.is_simulating():\n # reset pickup current\n ctx._hw_manager.hardware._attached_instruments[\n mount].update_config_item('pick_up_current', default_current)\n\n def slow_withdraw(pip, well, delay_seconds=2.0, y_offset=0):\n pip.default_speed /= 10\n if delay_seconds > 0:\n ctx.delay(delay_seconds)\n pip.move_to(well.top().move(Point(y=y_offset)))\n pip.default_speed *= 10\n\n def wick(pip, well, x_magnitude=0.5, z_offset=3.0):\n radius = well.diameter/2 if well.diameter else well.width/2\n pip.default_speed /= 2\n pip.move_to(well.bottom().move(Point(x=x_magnitude*radius,\n z=z_offset)))\n pip.default_speed *= 2\n\n \"\"\" create lysis buffer with enzyme \"\"\"\n if DO_CREATE_LYSIS_BUFFER:\n\n vol_enzyme = 500.0\n num_trans = math.ceil(vol_enzyme/tip_ref.max_volume)\n vol_per_trans = round(vol_enzyme/num_trans, 1)\n\n if num_samples_listeria_remaining % 48 == 0 or \\\n num_samples_listeria_remaining % 48 == 47:\n num_partial_listeria_buffers = 0\n num_bvs_effective = 0\n else:\n num_partial_listeria_buffers = 1\n if 2*math.ceil(num_samples_listeria_remaining/2) % 48 == 0:\n num_bvs_effective = 48\n else:\n num_bvs_effective = 2*math.ceil(\n num_samples_listeria_remaining/2) % 48\n\n num_additional_listeria_buffers = math.ceil(\n ((num_samples_listeria-1) - num_bvs_effective)/48)\n\n # print(f'partial: {num_partial_listeria_buffers}')\n # print(f'additional: {num_additional_listeria_buffers}')\n\n enzyme_listeria_1_creation = enzyme_listeria_1[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers+num_additional_listeria_buffers]\n enzyme_listeria_2_creation = enzyme_listeria_2[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers+num_additional_listeria_buffers]\n lysis_buffer_listeria_creation = lysis_buffer_listeria[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers+num_additional_listeria_buffers]\n # print(lysis_buffer_listeria_creation)\n\n # load partial liq\n if num_samples_listeria > 0:\n try:\n [\n well.load_liquid(\n lysis_buffer_l_prepared_liq,\n volume=11000/num_partial_listeria_buffers)\n for well in lysis_buffer_listeria[\n :num_partial_listeria_buffers]]\n\n # load full liq\n [\n well.load_liquid(\n lysis_buffer_l_fresh_liq,\n volume=11000/num_additional_listeria_buffers)\n for well in lysis_buffer_listeria[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers +\n num_additional_listeria_buffers]]\n [\n well.load_liquid(\n enzyme_listeria_1_liq,\n volume=500/num_additional_listeria_buffers)\n for well in enzyme_listeria_1[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers +\n num_additional_listeria_buffers]]\n [\n well.load_liquid(\n enzyme_listeria_2_liq,\n volume=500/num_additional_listeria_buffers)\n for well in enzyme_listeria_2[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers +\n num_additional_listeria_buffers]]\n except AttributeError:\n pass\n\n # listeria\n for enzyme1, enzyme2, lysis_buff in zip(\n enzyme_listeria_1_creation,\n enzyme_listeria_2_creation,\n lysis_buffer_listeria_creation):\n # enzyme 1\n pick_up_single(m300)\n for _ in range(num_trans):\n m300.aspirate(\n vol_per_trans, enzyme1.bottom().move(\n Point(x=OFFSET_X_TUBERACK, z=1)))\n slow_withdraw(m300, enzyme1)\n m300.move_to(\n lysis_buff.top().move(\n Point(x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA)))\n m300.dispense(\n vol_per_trans,\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=3)))\n m300.blow_out()\n slow_withdraw(\n m300, lysis_buff, y_offset=OFFSET_Y_LYSIS_BUFFER_LISTERIA)\n drop(m300)\n\n # enzyme 2\n pick_up_single(m300)\n for i in range(num_trans):\n m300.aspirate(\n vol_per_trans, enzyme2.bottom().move(\n Point(x=OFFSET_X_TUBERACK, z=1)))\n slow_withdraw(m300, enzyme2)\n m300.move_to(\n lysis_buff.top().move(Point(\n x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA)))\n m300.dispense(\n vol_per_trans,\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=3)))\n if i == num_trans - 1:\n if DO_MIX:\n m300.flow_rate.aspirate *= 2\n m300.flow_rate.dispense *= 2\n m300.mix(\n 10, 200,\n lysis_buff.bottom().move(Point(\n x=OFFSET_X_TUBERACK,\n z=3, y=OFFSET_Y_LYSIS_BUFFER_LISTERIA)))\n m300.flow_rate.aspirate /= 2\n m300.flow_rate.dispense /= 2\n m300.blow_out(\n lysis_buff.bottom().move(Point(\n x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA, z=3)))\n slow_withdraw(\n m300, lysis_buff, y_offset=OFFSET_Y_LYSIS_BUFFER_LISTERIA)\n drop(m300)\n\n # salmonella\n if num_samples_salmonella_remaining % 48 == 0 or \\\n num_samples_salmonella_remaining == 47:\n num_partial_salmonella_buffers = 0\n num_bvs_effective = 0\n else:\n num_partial_salmonella_buffers = 1\n if 2*math.ceil(num_samples_salmonella_remaining/2) % 48 == 0:\n num_bvs_effective = 48\n else:\n num_bvs_effective = 2*math.ceil(\n num_samples_salmonella_remaining/2) % 48\n\n num_additional_salmonella_buffers = math.ceil(\n ((num_samples_salmonella-1) - num_bvs_effective)/48)\n\n enzyme_salmonella_creation = enzyme_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers+num_additional_salmonella_buffers]\n lysis_buffer_salmonella_creation = lysis_buffer_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers+num_additional_salmonella_buffers]\n\n # load partial liq\n if num_samples_salmonella > 0:\n try:\n [\n well.load_liquid(\n lysis_buffer_s_prepared_liq,\n volume=11000/num_partial_salmonella_buffers)\n for well in lysis_buffer_salmonella[\n :num_partial_salmonella_buffers]]\n\n # load full liq\n [\n well.load_liquid(\n lysis_buffer_s_fresh_liq,\n volume=11000/num_additional_salmonella_buffers)\n for well in lysis_buffer_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers +\n num_additional_salmonella_buffers]]\n [\n well.load_liquid(\n enzyme_salmonella_liq,\n volume=500/num_additional_salmonella_buffers)\n for well in enzyme_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers +\n num_additional_salmonella_buffers]]\n except AttributeError:\n pass\n\n for enzyme, lysis_buff in zip(enzyme_salmonella_creation,\n lysis_buffer_salmonella_creation):\n # enzyme\n pick_up_single(m300)\n for i in range(num_trans):\n m300.aspirate(vol_per_trans, enzyme.bottom().move(\n Point(x=OFFSET_X_TUBERACK, z=1)))\n slow_withdraw(m300, enzyme)\n m300.move_to(\n lysis_buff.top().move(\n Point(x=OFFSET_X_TUBERACK,\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)))\n m300.dispense(\n vol_per_trans,\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=3)))\n if i == num_trans - 1:\n if DO_MIX:\n m300.flow_rate.aspirate *= 2\n m300.flow_rate.dispense *= 2\n m300.mix(\n 10, 200,\n lysis_buff.bottom().move(Point(\n x=OFFSET_X_TUBERACK,\n z=3, y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)))\n m300.flow_rate.aspirate /= 2\n m300.flow_rate.dispense /= 2\n m300.blow_out(\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=3)))\n slow_withdraw(\n m300, lysis_buff,\n y_offset=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)\n drop(m300)\n\n \"\"\" transfer lysis buffer to lysis plate \"\"\"\n vol_overage = 20\n\n if num_samples_listeria > 0:\n if DO_DISTRIBUTE_LYSIS_BUFFER:\n lysis_buffer_listeria_dests = lysis_plate.wells()[\n :num_samples_listeria-2] + [\n lysis_plate.wells()[num_samples_listeria-1]]\n vol_lysis_buffer_listeria = 70.0\n num_dests_per_asp = int(\n (tip_ref.max_volume-vol_overage)//vol_lysis_buffer_listeria)\n num_asp = math.ceil(\n len(lysis_buffer_listeria_dests)/num_dests_per_asp)\n lysis_buffer_listeria_dest_sets = [\n lysis_buffer_listeria_dests[i*num_dests_per_asp:\n (i+1)*num_dests_per_asp]\n if i < num_asp - 1\n else lysis_buffer_listeria_dests[i*num_dests_per_asp:]\n for i in range(num_asp)]\n pick_up_single(m300)\n m300.aspirate(\n vol_overage,\n lysis_buffer_listeria[0].bottom().move(Point(\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=OFFSET_Z_LYSIS_BUFFER_LISTERIA)))\n num_asp_listeria_remaining = math.ceil(\n (num_samples_listeria_remaining % 48) / 2)\n bump = 24 - num_asp_listeria_remaining \\\n if 24 - num_asp_listeria_remaining != 24 else 0\n for i, d_set in enumerate(lysis_buffer_listeria_dest_sets):\n set_ind = i + bump\n lysis_buff = lysis_buffer_listeria[set_ind//24]\n # m300.blow_out(lysis_buff.top(-1))\n m300.aspirate(\n len(d_set)*vol_lysis_buffer_listeria,\n lysis_buff.bottom().move(Point(\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=OFFSET_Z_LYSIS_BUFFER_LISTERIA)))\n slow_withdraw(\n m300, lysis_buff, y_offset=OFFSET_Y_LYSIS_BUFFER_LISTERIA)\n for d in d_set:\n m300.dispense(vol_lysis_buffer_listeria, d.bottom(2))\n slow_withdraw(m300, d)\n drop(m300)\n\n if num_samples_salmonella > 0:\n if DO_DISTRIBUTE_LYSIS_BUFFER:\n available_wells = [\n well for col in lysis_plate.columns()[num_cols_listeria:]\n for well in col]\n lysis_buffer_salmonella_dests = available_wells[\n :num_samples_salmonella-2] + [\n available_wells[num_samples_salmonella-1]]\n vol_lysis_buffer_salmonella = 90.0 if not salmonella_meat else 50.0\n num_dests_per_asp = 2 # hard-set for now\n num_asp = math.ceil(\n len(lysis_buffer_salmonella_dests)/num_dests_per_asp)\n lysis_buffer_salmonella_dest_sets = [\n lysis_buffer_salmonella_dests[i*num_dests_per_asp:\n (i+1)*num_dests_per_asp]\n if i < num_asp - 1\n else lysis_buffer_salmonella_dests[i*num_dests_per_asp:]\n for i in range(num_asp)]\n pick_up_single(m300)\n m300.aspirate(\n vol_overage,\n lysis_buffer_salmonella[0].bottom().move(\n Point(y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=OFFSET_Z_LYSIS_BUFFER_SALMONELLA)))\n num_asp_salmonella_remaining = math.ceil(\n (num_samples_salmonella_remaining % 48) / 2)\n bump_check = int(48/num_dests_per_asp)\n bump = bump_check - num_asp_salmonella_remaining \\\n if bump_check - num_asp_salmonella_remaining != bump_check \\\n else 0\n for i, d_set in enumerate(lysis_buffer_salmonella_dest_sets):\n set_ind = i + bump\n lysis_buff = lysis_buffer_salmonella[set_ind//bump_check]\n # m300.blow_out(lysis_buff.top(-1))\n # print('salmonella', i, set_ind, lysis_buff, len(d_set))\n # m300.blow_out(lysis_buff.top(-1))\n m300.aspirate(\n len(d_set)*vol_lysis_buffer_salmonella,\n lysis_buff.bottom().move(Point(\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=OFFSET_Z_LYSIS_BUFFER_SALMONELLA)))\n slow_withdraw(m300, lysis_buff,\n y_offset=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)\n for d in d_set:\n m300.dispense(vol_lysis_buffer_salmonella, d.bottom(2))\n slow_withdraw(m300, d)\n drop(m300)\n\n if DO_TRANSFER_SAMPLE_TO_LYSIS:\n \"\"\" transfer listeria \"\"\"\n vol_listeria = 30.0\n num_sample_cols_listeria = math.ceil((num_samples_listeria-2)/8)\n for s, d in zip(sample_plate.rows()[0][:num_sample_cols_listeria],\n lysis_plate.rows()[0][:num_sample_cols_listeria]):\n if sample_rack_type == 'bioplastics':\n asp_loc = s.bottom(2)\n else:\n asp_loc = s.top(-17.36)\n m300.pick_up_tip()\n m300.aspirate(vol_listeria, asp_loc)\n slow_withdraw(m300, s)\n m300.dispense(vol_listeria, d.bottom(2))\n if DO_MIX:\n m300.mix(3, 50, d.bottom(2))\n m300.blow_out(d.bottom(2))\n slow_withdraw(m300, d)\n drop(m300)\n\n \"\"\" transfer salmonella \"\"\"\n [pip, vol_salmonella] = [m20, 10.0] \\\n if not salmonella_meat else [m300, 50.0]\n num_cols_samples_salmonella = math.ceil((num_samples_salmonella-2)/8)\n for s, d in zip(\n sample_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_samples_salmonella],\n lysis_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_samples_salmonella]):\n pip.pick_up_tip()\n if sample_rack_type == 'bioplastics':\n asp_loc = s.bottom(2)\n else:\n asp_loc = s.top(-17.36)\n pip.aspirate(vol_salmonella, asp_loc)\n slow_withdraw(pip, s)\n pip.dispense(vol_salmonella, d.bottom(2))\n if DO_MIX:\n pip.mix(3, 18, d.bottom(2))\n pip.blow_out(d.bottom(2))\n slow_withdraw(pip, d)\n drop(pip)\n\n if DO_SET_TEMP:\n ctx.delay(minutes=20, msg='Incubating for 20 minutes @ 37C.')\n tempdeck.set_temperature(95)\n ctx.delay(minutes=10, msg='Incubating for 10 minutes @ 95C.')\n tempdeck.set_temperature(37)\n\n if DO_TRANSFER_SAMPLE_TO_PCR:\n \"\"\" transfer samples to PCR plate \"\"\"\n\n # listeria\n if num_samples_listeria > 0:\n for s, d in zip(lysis_plate.rows()[0][:num_cols_listeria],\n pcr_plate.rows()[0][:num_cols_listeria]):\n m20.pick_up_tip()\n m20.aspirate(5, s.top()) # pre air gap\n m20.aspirate(vol_sample, s)\n slow_withdraw(m20, s)\n m20.dispense(vol_sample, d.bottom(1))\n # if DO_MIX:\n # m20.mix(3, vol_sample*0.8, d.bottom(1))\n m20.dispense(m20.current_volume, d.bottom(1))\n slow_withdraw(m20, d)\n # wick(m20, d)\n drop(m20)\n\n # salmonella\n if num_samples_salmonella > 0:\n for s, d in zip(\n lysis_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_salmonella],\n pcr_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_salmonella]):\n m20.pick_up_tip()\n m20.aspirate(5, s.top()) # pre air gap\n m20.aspirate(vol_sample, s)\n slow_withdraw(m20, s)\n m20.dispense(vol_sample, d.bottom(1))\n # if DO_MIX:\n # m20.mix(3, vol_sample*0.8, d.bottom(1))\n m20.dispense(m20.current_volume, d.bottom(1))\n slow_withdraw(m20, d)\n m20.air_gap(5)\n # wick(m20, d)\n drop(m20)\n\n if DO_TRANSFER_POSITIVE_CONTROL:\n \"\"\" transfer positive controls \"\"\"\n vol_positive_control = vol_sample\n if num_samples_listeria > 0:\n positive_control_l_dest = pcr_plate.wells()[num_samples_listeria-2]\n pick_up_single(m20)\n m20.aspirate(5, positive_control_l_dest.top()) # pre air gap\n m20.aspirate(vol_positive_control, positive_control_l)\n slow_withdraw(m20, positive_control_l)\n m20.dispense(m20.current_volume, positive_control_l_dest.bottom(1))\n slow_withdraw(m20, positive_control_l_dest)\n # if DO_MIX:\n # m20.mix(3, vol_positive_control*0.8,\n # positive_control_l_dest.bottom(1))\n # wick(m20, positive_control_l_dest)\n drop(m20)\n\n if num_samples_salmonella > 0:\n available_wells = [\n well for col in pcr_plate.columns()[num_cols_listeria:]\n for well in col]\n positive_control_s_dest = available_wells[num_samples_salmonella-2]\n pick_up_single(m20)\n m20.aspirate(5, positive_control_s.top()) # pre air gap\n m20.aspirate(vol_positive_control, positive_control_s)\n slow_withdraw(m20, positive_control_s)\n m20.dispense(m20.current_volume, positive_control_s_dest.bottom(1))\n slow_withdraw(m20, positive_control_s_dest)\n # if DO_MIX:\n # m20.mix(3, vol_positive_control*0.8,\n # positive_control_s_dest.bottom(1))\n # wick(m20, positive_control_s_dest)\n drop(m20)\n\n tempdeck.deactivate()\n\n if do_flash:\n flash_lights()\n", + "content": "import math\nfrom opentrons.types import Point, Mount\n\n\nmetadata = {\n 'protocolName': 'BACGene',\n 'author': 'Nick Diehl 12:\n raise Exception('Combination of listeria and salmonella samples \\\nexceeds plate capacity')\n\n # define locations of lysis buffer reagents\n lysis_buffer_listeria = lysis_rack.rows_by_name()['B'][\n 1::2]\n lysis_buffer_salmonella = lysis_rack.rows_by_name()['D'][\n 1::2]\n enzyme_listeria_1 = lysis_rack.rows_by_name()['B'][\n ::2]\n enzyme_listeria_2 = lysis_rack.rows_by_name()['C']\n enzyme_salmonella = lysis_rack.rows_by_name()['D'][\n ::2]\n positive_control_l = lysis_rack.wells_by_name()['A1']\n positive_control_s = lysis_rack.wells_by_name()['E1']\n\n # define liquids\n try:\n lysis_buffer_l_prepared_liq = ctx.define_liquid(\n name=\"listeria lysis buffer (prepared)\",\n description=\"\",\n display_color=\"#B925FF\",\n )\n lysis_buffer_l_fresh_liq = ctx.define_liquid(\n name=\"listeria lysis buffer (fresh)\",\n description=\"\",\n display_color=\"#E4ABFF\",\n )\n lysis_buffer_s_prepared_liq = ctx.define_liquid(\n name=\"salmonella lysis buffer (prepared)\",\n description=\"\",\n display_color=\"#FFD600\",\n )\n lysis_buffer_s_fresh_liq = ctx.define_liquid(\n name=\"salmonella lysis buffer (fresh)\",\n description=\"\",\n display_color=\"#FFF2AD\",\n )\n enzyme_listeria_1_liq = ctx.define_liquid(\n name=\"listeria enzyme 1\",\n description=\"\",\n display_color=\"#000fde\",\n )\n enzyme_listeria_2_liq = ctx.define_liquid(\n name=\"listeria enzyme 2\",\n description=\"\",\n display_color=\"#ffa500\",\n )\n enzyme_salmonella_liq = ctx.define_liquid(\n name=\"salmonella enzyme\",\n description=\"\",\n display_color=\"#000fde\",\n )\n positive_control_l_liq = ctx.define_liquid(\n name=\"listeria postive control\",\n description=\"\",\n display_color=\"#ffff00\",\n )\n positive_control_s_liq = ctx.define_liquid(\n name=\"salmonella positive control\",\n description=\"\",\n display_color=\"#ffff00\",\n )\n samples_listeria_liq_sample = ctx.define_liquid(\n name=\"listeria samples\",\n description=\"\",\n display_color=\"#0EFFFB\",\n )\n samples_listeria_liq_lysis = ctx.define_liquid(\n name=\"listeria samples\",\n description=\"\",\n display_color=\"#0756EA\",\n )\n samples_listeria_liq_pcr = ctx.define_liquid(\n name=\"listeria samples\",\n description=\"\",\n display_color=\"#130183\",\n )\n samples_salmonella_liq_sample = ctx.define_liquid(\n name=\"salmonella samples\",\n description=\"\",\n display_color=\"#F6096D\",\n )\n samples_salmonella_liq_lysis = ctx.define_liquid(\n name=\"salmonella samples\",\n description=\"\",\n display_color=\"#FF0000\",\n )\n samples_salmonella_liq_pcr = ctx.define_liquid(\n name=\"salmonella samples\",\n description=\"\",\n display_color=\"#A92F00\",\n )\n except AttributeError:\n pass\n\n samples_single_listeria = sample_plate.wells()[:num_samples_listeria]\n num_cols_offset_samples_listeria = math.ceil(num_samples_listeria/8)\n samples_single_salmonella = sample_plate.wells()[\n num_cols_offset_samples_listeria*8:\n num_cols_offset_samples_listeria*8+num_samples_salmonella]\n lysis_single_listeria = lysis_plate.wells()[:num_samples_listeria]\n lysis_single_salmonella = lysis_plate.wells()[\n num_cols_offset_samples_listeria*8:\n num_cols_offset_samples_listeria*8+num_samples_salmonella]\n pcr_single_listeria = pcr_plate.wells()[:num_samples_listeria]\n pcr_single_salmonella = pcr_plate.wells()[\n num_cols_offset_samples_listeria*8:\n num_cols_offset_samples_listeria*8+num_samples_salmonella]\n\n # load liquids\n vol_sample = 5.0\n\n try:\n if num_samples_listeria > 0:\n positive_control_l.load_liquid(\n positive_control_l_liq, volume=vol_sample)\n if num_samples_salmonella > 0:\n positive_control_s.load_liquid(\n positive_control_s_liq, volume=vol_sample)\n [well.load_liquid(samples_listeria_liq_sample,\n volume=round(30/len(samples_single_listeria)))\n for well in samples_single_listeria[\n :max(0, len(samples_single_listeria)-2)]]\n [well.load_liquid(samples_salmonella_liq_sample,\n volume=round(10/len(samples_single_salmonella)))\n for well in samples_single_salmonella[\n :max(0, len(samples_single_salmonella)-2)]]\n [well.load_liquid(samples_listeria_liq_lysis,\n volume=round(30/len(lysis_single_listeria)))\n for well in lysis_single_listeria]\n [well.load_liquid(samples_salmonella_liq_lysis,\n volume=round(10/len(lysis_single_salmonella)))\n for well in lysis_single_salmonella]\n [well.load_liquid(samples_listeria_liq_pcr,\n volume=round(30/len(pcr_single_listeria)))\n for well in pcr_single_listeria]\n [well.load_liquid(samples_salmonella_liq_pcr,\n volume=round(10/len(pcr_single_salmonella)))\n for well in pcr_single_salmonella]\n except AttributeError:\n pass\n\n single_tip_count_map = {m300: 0, m20: 0}\n tip_ref = m300.tip_racks[0].wells()[0]\n default_current = 1\n\n right = True\n\n def drop(pip):\n nonlocal right\n offset = 30 if right else -15\n drop_loc = ctx.loaded_labwares[12].wells()[0].top().move(\n Point(x=offset))\n pip.drop_tip(drop_loc)\n right = not right\n\n def pick_up_single(pip=m300):\n mount = Mount.LEFT if pip.mount == 'left' else Mount.RIGHT\n current_single = 1/8*default_current\n if not ctx.is_simulating():\n # attenuate pickup current\n ctx._hw_manager.hardware._attached_instruments[\n mount].update_config_item(\n 'pick_up_current', current_single)\n pip.pick_up_tip(\n [well\n for col in pip.tip_racks[-1].columns()\n for well in col[::-1]][single_tip_count_map[pip]])\n single_tip_count_map[pip] += 1\n if not ctx.is_simulating():\n # reset pickup current\n ctx._hw_manager.hardware._attached_instruments[\n mount].update_config_item('pick_up_current', default_current)\n\n def slow_withdraw(pip, well, delay_seconds=2.0, y_offset=0):\n pip.default_speed /= 10\n if delay_seconds > 0:\n ctx.delay(delay_seconds)\n pip.move_to(well.top().move(Point(y=y_offset)))\n pip.default_speed *= 10\n\n def wick(pip, well, x_magnitude=0.5, z_offset=3.0):\n radius = well.diameter/2 if well.diameter else well.width/2\n pip.default_speed /= 2\n pip.move_to(well.bottom().move(Point(x=x_magnitude*radius,\n z=z_offset)))\n pip.default_speed *= 2\n\n \"\"\" create lysis buffer with enzyme \"\"\"\n if DO_CREATE_LYSIS_BUFFER:\n\n vol_enzyme = 500.0\n num_trans = math.ceil(vol_enzyme/tip_ref.max_volume)\n vol_per_trans = round(vol_enzyme/num_trans, 1)\n\n if num_samples_listeria_remaining % 48 == 0 or \\\n num_samples_listeria_remaining % 48 == 47:\n num_partial_listeria_buffers = 0\n num_bvs_effective = 0\n else:\n num_partial_listeria_buffers = 1\n if 2*math.ceil(num_samples_listeria_remaining/2) % 48 == 0:\n num_bvs_effective = 48\n else:\n num_bvs_effective = 2*math.ceil(\n num_samples_listeria_remaining/2) % 48\n\n num_additional_listeria_buffers = math.ceil(\n ((num_samples_listeria-1) - num_bvs_effective)/48)\n\n # print(f'partial: {num_partial_listeria_buffers}')\n # print(f'additional: {num_additional_listeria_buffers}')\n\n enzyme_listeria_1_creation = enzyme_listeria_1[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers+num_additional_listeria_buffers]\n enzyme_listeria_2_creation = enzyme_listeria_2[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers+num_additional_listeria_buffers]\n lysis_buffer_listeria_creation = lysis_buffer_listeria[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers+num_additional_listeria_buffers]\n # print(lysis_buffer_listeria_creation)\n\n # load partial liq\n if num_samples_listeria > 0:\n try:\n [\n well.load_liquid(\n lysis_buffer_l_prepared_liq,\n volume=11000/num_partial_listeria_buffers)\n for well in lysis_buffer_listeria[\n :num_partial_listeria_buffers]]\n\n # load full liq\n [\n well.load_liquid(\n lysis_buffer_l_fresh_liq,\n volume=11000/num_additional_listeria_buffers)\n for well in lysis_buffer_listeria[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers +\n num_additional_listeria_buffers]]\n [\n well.load_liquid(\n enzyme_listeria_1_liq,\n volume=500/num_additional_listeria_buffers)\n for well in enzyme_listeria_1[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers +\n num_additional_listeria_buffers]]\n [\n well.load_liquid(\n enzyme_listeria_2_liq,\n volume=500/num_additional_listeria_buffers)\n for well in enzyme_listeria_2[\n num_partial_listeria_buffers:\n num_partial_listeria_buffers +\n num_additional_listeria_buffers]]\n except AttributeError:\n pass\n\n # listeria\n for enzyme1, enzyme2, lysis_buff in zip(\n enzyme_listeria_1_creation,\n enzyme_listeria_2_creation,\n lysis_buffer_listeria_creation):\n # enzyme 1\n pick_up_single(m300)\n for _ in range(num_trans):\n m300.aspirate(\n vol_per_trans, enzyme1.bottom().move(\n Point(x=OFFSET_X_TUBERACK, z=1)))\n slow_withdraw(m300, enzyme1)\n m300.move_to(\n lysis_buff.top().move(\n Point(x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA)))\n m300.dispense(\n vol_per_trans,\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=3)))\n m300.blow_out()\n slow_withdraw(\n m300, lysis_buff, y_offset=OFFSET_Y_LYSIS_BUFFER_LISTERIA)\n drop(m300)\n\n # enzyme 2\n pick_up_single(m300)\n for i in range(num_trans):\n m300.aspirate(\n vol_per_trans, enzyme2.bottom().move(\n Point(x=OFFSET_X_TUBERACK, z=1)))\n slow_withdraw(m300, enzyme2)\n m300.move_to(\n lysis_buff.top().move(Point(\n x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA)))\n m300.dispense(\n vol_per_trans,\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=3)))\n if i == num_trans - 1:\n if DO_MIX:\n m300.flow_rate.aspirate *= 2\n m300.flow_rate.dispense *= 2\n m300.mix(\n 10, 200,\n lysis_buff.bottom().move(Point(\n x=OFFSET_X_TUBERACK,\n z=3, y=OFFSET_Y_LYSIS_BUFFER_LISTERIA)))\n m300.flow_rate.aspirate /= 2\n m300.flow_rate.dispense /= 2\n m300.blow_out(\n lysis_buff.bottom().move(Point(\n x=OFFSET_X_TUBERACK,\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA, z=3)))\n slow_withdraw(\n m300, lysis_buff, y_offset=OFFSET_Y_LYSIS_BUFFER_LISTERIA)\n drop(m300)\n\n # salmonella\n if num_samples_salmonella_remaining % 48 == 0 or \\\n num_samples_salmonella_remaining == 47:\n num_partial_salmonella_buffers = 0\n num_bvs_effective = 0\n else:\n num_partial_salmonella_buffers = 1\n if 2*math.ceil(num_samples_salmonella_remaining/2) % 48 == 0:\n num_bvs_effective = 48\n else:\n num_bvs_effective = 2*math.ceil(\n num_samples_salmonella_remaining/2) % 48\n\n num_additional_salmonella_buffers = math.ceil(\n ((num_samples_salmonella-1) - num_bvs_effective)/48)\n\n enzyme_salmonella_creation = enzyme_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers+num_additional_salmonella_buffers]\n lysis_buffer_salmonella_creation = lysis_buffer_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers+num_additional_salmonella_buffers]\n\n # load partial liq\n if num_samples_salmonella > 0:\n try:\n [\n well.load_liquid(\n lysis_buffer_s_prepared_liq,\n volume=11000/num_partial_salmonella_buffers)\n for well in lysis_buffer_salmonella[\n :num_partial_salmonella_buffers]]\n\n # load full liq\n [\n well.load_liquid(\n lysis_buffer_s_fresh_liq,\n volume=11000/num_additional_salmonella_buffers)\n for well in lysis_buffer_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers +\n num_additional_salmonella_buffers]]\n [\n well.load_liquid(\n enzyme_salmonella_liq,\n volume=500/num_additional_salmonella_buffers)\n for well in enzyme_salmonella[\n num_partial_salmonella_buffers:\n num_partial_salmonella_buffers +\n num_additional_salmonella_buffers]]\n except AttributeError:\n pass\n\n for enzyme, lysis_buff in zip(enzyme_salmonella_creation,\n lysis_buffer_salmonella_creation):\n # enzyme\n pick_up_single(m300)\n for i in range(num_trans):\n m300.aspirate(vol_per_trans, enzyme.bottom().move(\n Point(x=OFFSET_X_TUBERACK, z=1)))\n slow_withdraw(m300, enzyme)\n m300.move_to(\n lysis_buff.top().move(\n Point(x=OFFSET_X_TUBERACK,\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)))\n m300.dispense(\n vol_per_trans,\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=3)))\n if i == num_trans - 1:\n if DO_MIX:\n m300.flow_rate.aspirate *= 2\n m300.flow_rate.dispense *= 2\n m300.mix(\n 10, 200,\n lysis_buff.bottom().move(Point(\n x=OFFSET_X_TUBERACK,\n z=3, y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)))\n m300.flow_rate.aspirate /= 2\n m300.flow_rate.dispense /= 2\n m300.blow_out(\n lysis_buff.bottom().move(\n Point(x=OFFSET_X_TUBERACK,\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=3)))\n slow_withdraw(\n m300, lysis_buff,\n y_offset=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)\n drop(m300)\n\n \"\"\" transfer lysis buffer to lysis plate \"\"\"\n vol_overage = 20\n\n if num_samples_listeria > 0:\n if DO_DISTRIBUTE_LYSIS_BUFFER:\n lysis_buffer_listeria_dests = lysis_plate.wells()[\n :num_samples_listeria-2] + [\n lysis_plate.wells()[num_samples_listeria-1]]\n vol_lysis_buffer_listeria = 70.0\n num_dests_per_asp = int(\n (tip_ref.max_volume-vol_overage)//vol_lysis_buffer_listeria)\n num_asp = math.ceil(\n len(lysis_buffer_listeria_dests)/num_dests_per_asp)\n lysis_buffer_listeria_dest_sets = [\n lysis_buffer_listeria_dests[i*num_dests_per_asp:\n (i+1)*num_dests_per_asp]\n if i < num_asp - 1\n else lysis_buffer_listeria_dests[i*num_dests_per_asp:]\n for i in range(num_asp)]\n pick_up_single(m300)\n m300.aspirate(\n vol_overage,\n lysis_buffer_listeria[0].bottom().move(Point(\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=OFFSET_Z_LYSIS_BUFFER_LISTERIA)))\n num_asp_listeria_remaining = math.ceil(\n (num_samples_listeria_remaining % 48) / 2)\n bump = 24 - num_asp_listeria_remaining \\\n if 24 - num_asp_listeria_remaining != 24 else 0\n for i, d_set in enumerate(lysis_buffer_listeria_dest_sets):\n set_ind = i + bump\n lysis_buff = lysis_buffer_listeria[set_ind//24]\n # m300.blow_out(lysis_buff.top(-1))\n m300.aspirate(\n len(d_set)*vol_lysis_buffer_listeria,\n lysis_buff.bottom().move(Point(\n y=OFFSET_Y_LYSIS_BUFFER_LISTERIA,\n z=OFFSET_Z_LYSIS_BUFFER_LISTERIA)))\n slow_withdraw(\n m300, lysis_buff, y_offset=OFFSET_Y_LYSIS_BUFFER_LISTERIA)\n for d in d_set:\n m300.dispense(vol_lysis_buffer_listeria, d.bottom(2))\n slow_withdraw(m300, d)\n drop(m300)\n\n if num_samples_salmonella > 0:\n if DO_DISTRIBUTE_LYSIS_BUFFER:\n available_wells = [\n well for col in lysis_plate.columns()[num_cols_listeria:]\n for well in col]\n lysis_buffer_salmonella_dests = available_wells[\n :num_samples_salmonella-2] + [\n available_wells[num_samples_salmonella-1]]\n vol_lysis_buffer_salmonella = 90.0 if not salmonella_meat else 50.0\n num_dests_per_asp = 2 # hard-set for now\n num_asp = math.ceil(\n len(lysis_buffer_salmonella_dests)/num_dests_per_asp)\n lysis_buffer_salmonella_dest_sets = [\n lysis_buffer_salmonella_dests[i*num_dests_per_asp:\n (i+1)*num_dests_per_asp]\n if i < num_asp - 1\n else lysis_buffer_salmonella_dests[i*num_dests_per_asp:]\n for i in range(num_asp)]\n pick_up_single(m300)\n m300.aspirate(\n vol_overage,\n lysis_buffer_salmonella[0].bottom().move(\n Point(y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=OFFSET_Z_LYSIS_BUFFER_SALMONELLA)))\n num_asp_salmonella_remaining = math.ceil(\n (num_samples_salmonella_remaining % 48) / 2)\n bump_check = int(48/num_dests_per_asp)\n bump = bump_check - num_asp_salmonella_remaining \\\n if bump_check - num_asp_salmonella_remaining != bump_check \\\n else 0\n for i, d_set in enumerate(lysis_buffer_salmonella_dest_sets):\n set_ind = i + bump\n lysis_buff = lysis_buffer_salmonella[set_ind//bump_check]\n # m300.blow_out(lysis_buff.top(-1))\n # print('salmonella', i, set_ind, lysis_buff, len(d_set))\n # m300.blow_out(lysis_buff.top(-1))\n m300.aspirate(\n len(d_set)*vol_lysis_buffer_salmonella,\n lysis_buff.bottom().move(Point(\n y=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA,\n z=OFFSET_Z_LYSIS_BUFFER_SALMONELLA)))\n slow_withdraw(m300, lysis_buff,\n y_offset=-OFFSET_Y_LYSIS_BUFFER_SALMONELLA)\n for d in d_set:\n m300.dispense(vol_lysis_buffer_salmonella, d.bottom(2))\n slow_withdraw(m300, d)\n drop(m300)\n\n if DO_TRANSFER_SAMPLE_TO_LYSIS:\n \"\"\" transfer listeria \"\"\"\n vol_listeria = 30.0\n num_sample_cols_listeria = math.ceil((num_samples_listeria-2)/8)\n for s, d in zip(sample_plate.rows()[0][:num_sample_cols_listeria],\n lysis_plate.rows()[0][:num_sample_cols_listeria]):\n if sample_rack_type == 'bioplastics':\n asp_loc = s.bottom(2)\n else:\n asp_loc = s.top(-17.36)\n m300.pick_up_tip()\n m300.aspirate(vol_listeria, asp_loc)\n slow_withdraw(m300, s)\n m300.dispense(vol_listeria, d.bottom(2))\n if DO_MIX:\n m300.mix(3, 50, d.bottom(2))\n m300.blow_out(d.bottom(2))\n slow_withdraw(m300, d)\n drop(m300)\n\n \"\"\" transfer salmonella \"\"\"\n [pip, vol_salmonella] = [m20, 10.0] \\\n if not salmonella_meat else [m300, 50.0]\n num_cols_samples_salmonella = math.ceil((num_samples_salmonella-2)/8)\n for s, d in zip(\n sample_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_samples_salmonella],\n lysis_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_samples_salmonella]):\n pip.pick_up_tip()\n if sample_rack_type == 'bioplastics':\n asp_loc = s.bottom(2)\n else:\n asp_loc = s.top(-17.36)\n pip.aspirate(vol_salmonella, asp_loc)\n slow_withdraw(pip, s)\n pip.dispense(vol_salmonella, d.bottom(2))\n if DO_MIX:\n pip.mix(3, 18, d.bottom(2))\n pip.blow_out(d.bottom(2))\n slow_withdraw(pip, d)\n drop(pip)\n\n if DO_SET_TEMP:\n ctx.delay(minutes=20, msg='Incubating for 20 minutes @ 37C.')\n tempdeck.set_temperature(95)\n ctx.delay(minutes=10, msg='Incubating for 10 minutes @ 95C.')\n tempdeck.set_temperature(37)\n\n if DO_TRANSFER_SAMPLE_TO_PCR:\n \"\"\" transfer samples to PCR plate \"\"\"\n\n # listeria\n if num_samples_listeria > 0:\n for s, d in zip(lysis_plate.rows()[0][:num_cols_listeria],\n pcr_plate.rows()[0][:num_cols_listeria]):\n m20.pick_up_tip()\n m20.aspirate(5, s.top()) # pre air gap\n m20.aspirate(vol_sample, s)\n slow_withdraw(m20, s)\n m20.dispense(vol_sample, d.bottom(1))\n # if DO_MIX:\n # m20.mix(3, vol_sample*0.8, d.bottom(1))\n m20.dispense(m20.current_volume, d.bottom(1))\n slow_withdraw(m20, d)\n # wick(m20, d)\n drop(m20)\n\n # salmonella\n if num_samples_salmonella > 0:\n for s, d in zip(\n lysis_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_salmonella],\n pcr_plate.rows()[0][\n num_cols_listeria:\n num_cols_listeria+num_cols_salmonella]):\n m20.pick_up_tip()\n m20.aspirate(5, s.top()) # pre air gap\n m20.aspirate(vol_sample, s)\n slow_withdraw(m20, s)\n m20.dispense(vol_sample, d.bottom(1))\n # if DO_MIX:\n # m20.mix(3, vol_sample*0.8, d.bottom(1))\n m20.dispense(m20.current_volume, d.bottom(1))\n slow_withdraw(m20, d)\n m20.air_gap(5)\n # wick(m20, d)\n drop(m20)\n\n if DO_TRANSFER_POSITIVE_CONTROL:\n \"\"\" transfer positive controls \"\"\"\n vol_positive_control = vol_sample\n if num_samples_listeria > 0:\n positive_control_l_dest = pcr_plate.wells()[num_samples_listeria-2]\n pick_up_single(m20)\n m20.aspirate(5, positive_control_l_dest.top()) # pre air gap\n m20.aspirate(vol_positive_control, positive_control_l)\n slow_withdraw(m20, positive_control_l)\n m20.dispense(m20.current_volume, positive_control_l_dest.bottom(1))\n slow_withdraw(m20, positive_control_l_dest)\n # if DO_MIX:\n # m20.mix(3, vol_positive_control*0.8,\n # positive_control_l_dest.bottom(1))\n # wick(m20, positive_control_l_dest)\n drop(m20)\n\n if num_samples_salmonella > 0:\n available_wells = [\n well for col in pcr_plate.columns()[num_cols_listeria:]\n for well in col]\n positive_control_s_dest = available_wells[num_samples_salmonella-2]\n pick_up_single(m20)\n m20.aspirate(5, positive_control_s.top()) # pre air gap\n m20.aspirate(vol_positive_control, positive_control_s)\n slow_withdraw(m20, positive_control_s)\n m20.dispense(m20.current_volume, positive_control_s_dest.bottom(1))\n slow_withdraw(m20, positive_control_s_dest)\n # if DO_MIX:\n # m20.mix(3, vol_positive_control*0.8,\n # positive_control_s_dest.bottom(1))\n # wick(m20, positive_control_s_dest)\n drop(m20)\n\n tempdeck.deactivate()\n\n if do_flash:\n flash_lights()\n", "custom_labware_defs": [ { "brand": {