Hello World!
Project: iGem Test Export
Authors: Louis Pasteur
Date: 2016-09-20
Tuesday, 9/20
Here's a sample experiment to show you how notebook entries work.
Use tables with formulas to make a master mix calculation. Edit the number of reactions to see it in action!
Insert new days to organize your entry (and see it on the Home calendar). Use checkboxes to plan out your day:
Combine above reaction in tube
Incubate at 37°C for an hour
Run gel
Extract band and save
Link to other Benchling files by dragging them in from the file browser at the left. Or use the @-symbol to insert a link to another Benchling file.
Drag and drop an image from your desktop to view it inline and take notes about it:
Insert code blocks to keep your scripts right next to your notes and results.
def calculate_score(input_bases, matched_bases):
mismatches = []
for i, (b, ob) in enumerate(zip(input_bases, matched_bases)):
if b != ob:
mismatches.append(i)