Design genetic circuits like logic chips
Cello is the MIT-developed CAD tool for synthetic biology — you write a truth table, it picks gates from a library, and out comes a DNA sequence that implements the logic in a living cell. SciRouter exposes Cello (plus SynBioHub parts registry and DeepCRISPR guide scoring) as one synthetic biology API.
/v1/synbio/design-circuitimport requests
r = requests.post(
"https://scirouter-gateway-production.up.railway.app/v1/synbio/design-circuit",
headers={"Authorization": "Bearer sk-sci-..."},
json={
"logic": "AND",
"inputs": ["IPTG", "aTc"],
"output": "GFP",
"chassis": "E.coli",
},
)
result = r.json()["data"]
print(f"Parts: {len(result['parts'])}")
print(f"Dynamic range: {result['dynamic_range']:.1f}x")Biosensor design
Metabolic pathway switches
Teaching synthetic biology
iGEM competitions