Methane economics as a first-class breeding axis.
Every developed beef country now has a carbon price signal in the room. This piece works through how Genemap is wiring it — live CH4 markets per country, methane-EBV ingestion, a methane-discounted gross-margin anchor — and what a $30/t and a $90/t CO₂-equivalent scenario actually does to bull rankings on a real-shape composite operation.
Why methane is a breeding problem.
The science on enteric methane has been settled for over a decade. Cattle produce 50–130 g of CH₄ per kg of dry-matter intake, depending on diet, body weight and animal. Within that range, the heritable component — what one animal produces above or below herd-mates on the same diet — is on the order of h² ≈ 0.20 for residual methane intensity (Hayes, Donoghue, Reich et al., 2020; de Haas, Pszczola, Soyeurt et al., 2017). That's the same heritability ballpark as feed-conversion efficiency, residual feed intake, or marbling.
A trait with h² ≈ 0.20 is responsive to selection. The question that's changed in 2026 is not whether the trait exists — it does — but whether the producer's economic objective actually values it. For most of the last decade, the answer was no: methane was an externality and the producer carried no direct cost. That changed.
The market signal, country by country.
Six countries now have an explicit carbon-market mechanism that touches beef production directly. Three more have one in flight. Genemap's CH4 price feed pulls the spot every 24 hours, in each country's native source, and converts to USD/t CO₂e for cross-country comparison.
| Country | Mechanism | May 2026 spot (USD/t CO₂e) | Wired in |
|---|---|---|---|
| European Union | EU ETS (extension covering livestock from 2027) | $95 | Native ingestor |
| New Zealand | NZ ETS (agriculture from 2025) | $42 | Native ingestor |
| Australia | ACCU (Australian Carbon Credit Units) · Climate Active | $24 | Native ingestor |
| Sweden (within EU) | EU ETS + national livestock methane scheme (pilot) | $95 + national premium | Native ingestor |
| Canada | Federal carbon backstop · provincial offset programs (AB, QC) | $58 | Native ingestor |
| United States | California Cap-and-Trade · WCI · voluntary markets | $26 | Native ingestor |
| Japan | J-Credit Scheme · GX-ETS (2026 pilot) | $31 | AI translator (Tier 2) |
| Korea | K-ETS Phase 4 (2026, livestock voluntary) | $11 | AI translator (Tier 2) |
| Brazil | National voluntary market · ABS Brasil offsets | $8 | AI translator (Tier 2) |
The numbers above are what the engine reads tonight. The spread is wide — from $8/t in Brazil to $95/t in the EU — and it matters more than any other single market signal for how methane re-weights the bioeconomic objective. A bull with a favourable methane EBV is worth materially different money in a EU intensive system than in a Brazilian extensive system.
Wiring methane into the bioeconomic anchor.
The platform's gross-margin-per-head anchor is the load-bearing input to the closed-form bioeconomic weight derivation (see the methodology page for the full chain). When methane is priced, the anchor extends with a per-head methane cost line:
That single extension flows downstream into every dollar weight the engine derives. The marginal value of methane-favourable EBVs (where the breed evaluation publishes one) gets a price; the marginal cost of methane-unfavourable correlated traits (heavy mature size, high-intake breeding objectives) gets a more accurate discount; and the entire selection-index calculation responds, automatically.
Methane EBVs: what gets ingested.
Three breed-evaluation pipelines publish a methane EBV today: NZ (Beef + Lamb / AgResearch), AU (BREEDPLAN methane sub-index pilot) and IE (ICBF carbon sub-index). The platform reads each natively. For producers whose breed society doesn't yet publish one, the engine uses a partial proxy derived from the published RFI and mature-size EBVs — adequate as a first-cut signal, explicitly flagged as a proxy in the rank-page tooltip.
The roadmap commits to native methane-EBV ingestion for every country that publishes one within 90 days of publication. The translator layer handles the long tail in the meantime.
A worked scenario.
The numbers below are derived from a real-shape composite operation in north-east Victoria — 1,200 cows, weaner and yearling progeny sold across two grids. The producer's calibrated bioeconomic anchor is $1,180/head net margin. The table shows three scenarios: no methane price (today's status quo on the AU producer's books), $30/t CO₂e (a 25% above-spot ACCU scenario), and $90/t CO₂e (the EU intensive scenario).
| EBV | Weight at $0/t | Weight at $30/t | Weight at $90/t |
|---|---|---|---|
| 200-day weight | $0.92/kg | $0.90/kg | $0.86/kg |
| 600-day weight | $1.46/kg | $1.42/kg | $1.34/kg |
| Mature cow weight | −$0.34/kg | −$0.41/kg | −$0.58/kg |
| Residual feed intake | −$32/unit | −$38/unit | −$52/unit |
| Methane EBV (kg CH4/yr) | $0/kg | −$0.81/kg | −$2.43/kg |
| IMF | $1.85/% unit | $1.83/% unit | $1.80/% unit |
| Days to calving | −$3.78/day | −$3.85/day | −$3.96/day |
Three things are interesting about this scenario:
- Methane EBV becomes economically material between $0 and $30/t. At zero, the engine has no reason to use it. At $30/t, it's a $0.81/kg-CH4 multiplier — a low-methane bull above herd-mates by 20 kg CH4/yr is worth $16/head more on net margin, multiplied across daughters by the discounted gene-flow expression.
- Mature cow weight and RFI shift more than methane EBV itself. Cows that are big-bodied or feed-inefficient produce more methane proportionally — those correlated penalties scale faster than the direct methane-EBV term across the price grid, because the breed evaluation's RFI is more deeply integrated into the producer's herd history than the methane EBV is.
- Growth-trait weights soften slightly. Selecting hard for 600-day weight pulls mature cow weight up, which pulls methane up, which costs money. At $90/t the engine sets a $0.12/kg lower weight on 600WT than at $0/t — small in absolute terms, but enough to change rank order for bulls clustered around the top.
What this looks like in source.
The methane extension is a single function bolted onto the closed-form weight derivation in core/js/engine.js. Simplified shape:
// core/js/methane.js — extend GM/head with methane cost line function applyMethaneEconomics(grossMargin, animal, country) { if (!country.ch4_market || country.ch4_market.price === 0) { return grossMargin; // no carbon price; pass through } // 1. CH4 per head per year (IPCC Tier 2 inventory factor for this country/system) const ch4PerHead = inventoryCH4(animal, country.system); // 2. Convert kg CH4 → kg CO2e (GWP = 27 from IPCC AR6 over 100 years) const co2eKg = ch4PerHead * 27; // 3. Price at today's spot, in producer's currency const spotPrice = country.ch4_market.price; // USD/t CO2e const fx = fxRate('USD', country.currency); const costPerHead = (co2eKg / 1000) * spotPrice * fx; return { grossMargin: grossMargin - costPerHead, methaneCostPerHead: costPerHead, spotPrice, ch4PerHead, source: 'ipcc-tier-2' }; }
And in the engine entry point, the methane economics are applied before the bioeconomic-weight derivation runs — so every downstream weight, every closed-form coefficient, every rank-page result, already reflects today's CH4 spot for the producer's country.
The producer surface.
What the producer sees on the rank page is a methane-spot slider. They can drag from today's spot to whatever their forecast is — $0/t, $30/t, $60/t, $90/t — and watch the rankings shift live. The override is local, doesn't change other producers' rankings, and is overlaid as a dashed line on the time-series spot chart so the producer can see what their forecast is doing relative to the actual market.
For producers in countries without a wired CH4 market yet (most of Africa, much of Latin America, parts of Asia), the slider still works — it shows what their ranking would look like under a hypothetical carbon-price scenario. That's the natural extension once the market arrives.
The signal arrived before the maths could meet it. The maths is ready now.
What still needs to be built.
The Q3 2026 build (active right now) ships four pieces:
- CH4 price-feed ingestors for all six native markets — already wired for EU, NZ, AU, CA, US, SE. JP, KR, BR move to native in Q4.
- Methane EBV ingestion for the three breed evaluations that publish one — NZ Beef + Lamb, AU BREEDPLAN methane pilot, IE ICBF carbon sub-index. AI-translator fallback for everywhere else.
- Methane-discounted GM anchor — the equation above, applied universally, with country-specific IPCC Tier 2 inventory factors.
- Methane spot slider on the live rank page — producer-side scenario override.
What's not in Q3 but is on the H2 2027 horizon: ingestion of microbiome panels as a methane proxy (rumen 16S signals correlate with CH4 production, h² ≈ 0.20, Difford et al. 2018), and integration with carbon-credit verification frameworks so a producer's measured low-methane animals can convert directly into ACCU or J-Credit registry entries. The platform infrastructure for both is on the roadmap.
Reproducibility: the methane extension code shape above is a simplified excerpt. The production implementation lives in
core/js/methane-sustainability.js (CH4.1 module — handles GreenFeed / SF6 / respiration-chamber / microbiome-proxy measurement methods, country-specific IPCC Tier 2 emission factors, FX-adjusted carbon pricing, ACCU eligibility, and per-system intake adjustments). Anchors cited inline in source: Roehe 2016, Difford 2018, Hayes 2020, de Haas 2017, Pickering 2015. Academic teams interested in replication or methane-proxy benchmarking can reach the engineering team via for-researchers.html.