import React from 'react'; import { THEME } from '../theme.js'; export default function Header() { return (

microbe-model

v2.0.0 ยท trained 2026-03-14

Predicted growth conditions for microbes that have never been cultured. Pick one. Try the medium. Five thousand candidates from GTDB scored against twenty-four DSMZ media.

); } export function TabBar({ tab, setTab }) { const tabs = [ { id: 'catalog', label: 'Catalog' }, { id: 'test', label: 'Test on a known genome' }, { id: 'accuracy', label: 'Model accuracy' }, ]; return (
{tabs.map((t) => ( ))}
); }