91³Ô¹ÏÍø

Watch CBS News

HHS redirects $500 million to Trump appointee's vaccine project, bypassing reviews

The Department of Health and Human Services has transferred $500 million from research into next-generation COVID-19 vaccines, redirecting the money to a single vaccine project linked to the Trump administration's former acting head of the National Institutes of Health.

Multiple federal health officials said they were surprised by the , which bypassed the usual procedures overseen by career scientists at the NIH and the Biomedical Advanced Research and Development Authority, known as BARDA. Those reviews are intended to ensure that federal research money goes to the projects with the greatest scientific merit. 

The HHS says the initiative, dubbed "Generation Gold Standard," aims to start clinical trials next year for universal influenza vaccines that could protect against any strain of the virus. It hopes to get a vaccine approved by the Food and Drug Administration by 2029.

All of the money is being transferred to an influenza vaccine project called beta-propiolactone or BPL, according to emails seen by CBS News. Two officials said the decision to pour $500 million into a single vaccine platform is unusual, given the limited data on it. 

The transfer makes it effectively one of the largest awards to date from to speed funding to new experimental vaccines and treatments, topping a previous award of $452 million to a company developing an experimental oral COVID-19 vaccine.

An HHS spokesperson told CBS News that "decision-making for project Generation Gold Standard was a collaborative process, between leaders of HHS, in an effort to direct funding for a BPL vaccine for all influenza threats, not just one." 

The Wall Street Journal news of the project. 

The vaccine underwent testing for earlier this year in a small study led by NIH researchers Dr. Matthew Memoli and Dr. Jeffery Taubenberger. The research was what scientists call a Phase 1 study, the to researching a potential vaccine in humans.

Memoli had served as the acting head of the NIH during a controversial transition in recent months, overseeing Trump administration directives like steep cuts to research funding and the medical research agency's staff and leadership.

Taubenberger, who holds a for the BPL vaccine platform, was picked to be the acting head of the National Institute of Allergy and Infectious Diseases, or NIAID, after the institute's previous director was ousted.

BARDA and NIH officials were ordered to redirect the money to Memoli's research by Noah Miller, a special assistant hired by Health and Human Services Secretary Robert F. Kennedy Jr., according to emails seen by CBS News. Two officials said it was unusual for a political appointee to handpick a project or researcher to be funded without vetting from career scientists or outside review.

The money is coming from the "Project NextGen" initiative, a $5 billion effort launched under the Biden administration that had previously funded multiple research projects into studying potential COVID-19 vaccines and treatments.

The NIH had $62.4 million in grant money to researchers at seven universities working on "pan-coronavirus" vaccines. 

From BARDA, the department had also backed going into larger Phase 2B clinical trials to study experimental COVID-19 vaccines, in awards totaling $551 million.

Those followed requests and for researchers and vaccine companies to submit proposals for backing from the federal government.

Another HHS spokesperson, Vianca Rodriguez Feliciano, said in an email that the department's new initiative "realigns BARDA with its core mission: preparing for all flu viral pathogens, not just COVID-19."

"It delivers a cost-effective, accountable alternative to the Biden administration's wasteful Project NextGen, which spent $1.63 billion on COVID-19 vaccines and $1.19 billion on therapeutics, neglecting broader pandemic preparedness," Feliciano said.

In its release, the department described the decision as a "decisive shift toward transparency, effectiveness, and comprehensive preparedness," by focusing on "in-house development" of vaccines instead of projects from outside researchers.

It is also planning to develop other vaccines for COVID-19 using BPL, which it calls "traditional vaccine technology brought into the 21st century."

"Our commitment is clear: every innovation in vaccine development must be grounded in gold standard science and transparency, and subjected to the highest standards of safety and efficacy testing," Kennedy said.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });