University of Miami Health System
Hospital / health systemMiami, United States
Research output, citation impact, and the most-cited recent papers from University of Miami Health System (United States). Aggregated across the NobleBlocks index of 300M+ scholarly works.
Top-cited papers from University of Miami Health System
DiffuCpG 1. Introduction In this study, we used a generative AI diffusion model to address missing methylation data. We trained the model with Whole-Genome Bisulfite Sequencing data from 26 acute myeloid leukemia samples and validated it with Reduced Representation Bisulfite Sequencing data from 93 myelodysplastic syndrome and 13 normal samples. Additional testing included data from the Illumina 450k methylation array and Single-Cell Reduced Representation Bisulfite Sequencing on HepG2 cells. Our model, DiffuCpG, outperformed previous methods by integrating a broader range of genomic features, utilizing both short- and long-range interactions without increasing input complexity. It demonstrated superior accuracy, scalability, and versatility across various tissues, diseases, and technologies, providing predictions in both binary and continuous methylation states. In this repository, we deposit the code used to build the diffusion models along with necessary example datasets to train and test a diffusion model for methylation imputation purposes. Docker Usage Install Docker Install Docker using the following link:https://docs.docker.com/engine/install/Recommended system specs: Debian 12 bookworm with 16GB RAM or more.Make sure you have the latest Nvidia GPU driver installed and docker can access your Nvidia GPU. Run Docker images with Tissue-specific Models docker pull yay135/diffucpg_tssUse our example to generate input samples with Hi-C matrix and CIS (Confidence Interval Cross Sample) data.docker run -it yay135/diffucpg_tssthenpython generate_train_test_samples.py The tissue-specific models (pytorch) are for CD34+ cells, GBM and BRCA, they are stored in folders named "model*" in the image. Run the Tissue specific modelsdocker run -it yay135/diffucpg_tssthenpython batch_run.py Run Docker images Example Models docker pull yay135/diffucpgIf you do not have a GPU enabled system, pull a CPU-only imagedocker pull yay135/diffucpg_cpuprepare your input data directory, use the following command to print a example input data directorydocker run --rm yay135/diffucpg -e trueassume your data directory name is "input_data"in windowsdocker run --gpus all -v .\input_data\:/data --rm yay135/diffucpgin unix or linuxdocker run --gpus all -v ./input_data:/data --rm yay135/diffucpg Other docker options -d or --device : select which cuda device to run with, default is 0-m or --mingcpg : scan your methyl array, limit only imputing windows with at least m non-missing methyl values, default is m=10-o or --overlap : set number of impute epochs, shift window locations between epochs, get mean imputed values for each CpG location, default is 2example:docker run --gpus all -v ./input_data:/data --rm yay135/diffucpg -d 1 -m 5 -o 3use cuda device 1, min number of non-missing methyl values in a window is 5, overlap epochs 3 The following tutorials are for non-docker usages. 2. Data and Models Example datasets are available for download using "gdown.sh". The example datasets only contain WGBS methylation data. The model is the DDPM diffusion model, the repository contains a complete implementation for 1-dimensional input. Please refer to https://arxiv.org/abs/2006.11239 and https://huggingface.co/blog/annotated-diffusion for more details. 3. How to use 3.1 System Requirements The number of steps in the diffusion process is set to 2000. Imputing a sample requires 2000 steps. Gpu acceleration is preferred. 16GB of RAM is required. The code is fully tested and operational on the following platform: Distributor ID: DebianDescription: Debian GNU/Linux 12 (bookworm)Release: 12Codename: bookworm 3.2 Clone the Current Project Run the following command to clone the project.git clone https://github.com/yay135/DiffuCpG.git 3.4 Configure Environment Make sure you have the following software installed in your system:Python 3.9+Pytorch 2.0.1+ 3.4 Run Training and Testing python run.pyThe script will download necessary data and install dependencies automatically. 4 Data and Script Details 4.1 RAW Data The methylation arrays downloaded are in the folder "raw", each file is a methylation array. The first 2 columns are "chromosome" and "location". The assembly used for mapping in our project is the "GRCH37 primary assembly". It is also downloaded automatically. The rest of the columns in each file are methylation levels(required) and other biological data (optional) you wish to incorporate to enhance the model. These files in the raw folder are the initial inputs for pipeline,if you wish to use your own data, it must be configured as such before running the pipeline. 4.2 Generate Sample Use script "generate_samples.py" to generate samples for training and testing.The model can not directly read and impute a methylation array file. Instead, each methylation array is divided into windows, each window is 1kb (1000 base pairs) in length, and each training testing sample is generated from a window. Each sample contains at least 5 channels. the first 4 is the sequence one-hot encoding, the 5th is the methylation data. If a base pair location is not a CpG location, the methylation data value for it is "-1". If a CpG's methylation data is missing or waiting for imputaion, its value is also "-1". Other biological data can be added as extra channels. Check out example raw files in the folder "raw" to form your own datasets for training and testing sample generation.For each raw file in the "raw" folder, the first 3 columns are chr, loc, and methylation.The rest of the columns are treated as additional channels and will be added to each sample during generation. '-d' or '--folder': specify raw data folder'-i' or '--index' : which column in a raw file is the methylation array'-t' or '--tol' : how many missing methylation value is tolerated(we recommend 0 for generating training samples and -1 for generating testing samples, 0 will force the script to only select from windows with no missings, -1 will tolerate missing as much as possible.)'-c' or '--chr' : limit which chromosome to use, default is "chr#" to use all chromosomes'-w' or '--winsize' : what window size to use, default is 1000 '-m' or '--mincpg': force generate from window to have a minimum number of CpGs, default is 10 '-n' or '--nsample': number of samples to generate per chromosome '-p' or '--output': samples output folder, default is "out" Use script "generate_samples_concat.py" to generate samples from long-range interacting windows such as Hi-C interactions or computed correlation.Check out the example long range file in the folder "data" to form your own long-range interacting windows for sample generation and concatenation. 4.3 Training Script Use diffusion.py to train and test a DDPM model using the generated samples'-t' or '--train_folder' : the folder containing the training samples'-f' or '--model_folder' : the model folder, will be created if it does not exist'-w' or '--win_size' : window size of each sample, default is 1000'-c' or '--channel': channel size of each sample'-d' or '--cuda_device' : if you have multiple cuda gpus, select which gpu to use, default is 0"-e" or "--epoch" : how many epochs for training, default is 2000"-s" or "--earlystop" : whether to use "early stopping" during training, default is False"-p" or "--patience" : patience for early stopping, default is 10 4.4 Imputation Use diffusion_inpainting.py to perform imputation on generated samples.'-t' or '--test_folder' : the folder containing samples for imputation'-o' or '--out_folder': imputed output folder name, default="inpainting_out"'-w' or '--win_size' : window size of each sample, default is 1000'-c' or '--channel': channel size of each sample'-d' or '--cuda_device' : if you have multiple cuda gpus, select which gpu to use, default is 0 Team If you have any questions or concerns about the project, please contact the following team member: Fengyao Yan fxy134@miami.edu
IMPORTANCE: Multiple myeloma is a hematologic malignancy characterized by presence of abnormal clonal plasma cells in the bone marrow, with potential for uncontrolled growth causing destructive bone lesions, kidney injury, anemia, and hypercalcemia. Multiple myeloma is diagnosed in an estimated 34 920 people in the US and in approximately 588 161 people worldwide each year. OBSERVATIONS: Among patients with multiple myeloma, approximately 73% have anemia, 79% have osteolytic bone disease, and 19% have acute kidney injury at the time of presentation. Evaluation of patients with possible multiple myeloma includes measurement of hemoglobin, serum creatinine, serum calcium, and serum free light chain levels; serum protein electrophoresis with immunofixation; 24-hour urine protein electrophoresis; and full-body skeletal imaging with computed tomography, positron emission tomography, or magnetic resonance imaging. The Revised International Staging System combines data from the serum biomarkers β2 microglobulin, albumin, and lactate dehydrogenase in conjunction with malignant plasma cell genomic features found on fluorescence in situ hybridization-t(4;14), del(17p), and t(14;16)-to assess estimated progression-free survival and overall survival. At diagnosis, 28% of patients are classified as having Revised International Staging stage I multiple myeloma, and these patients have a median 5-year survival of 82%. Among all patients with multiple myeloma, standard first-line (induction) therapy consists of a combination of an injectable proteasome inhibitor (ie, bortezomib), an oral immunomodulatory agent (ie, lenalidomide), and dexamethasone and is associated with median progression-free survival of 41 months, compared with historical reports of 8.5 months without therapy. This induction therapy combined with autologous hematopoietic stem cell transplantation followed by maintenance lenalidomide is standard of care for eligible patients. CONCLUSIONS AND RELEVANCE: Approximately 34 920 people in the US and 155 688 people worldwide are diagnosed with multiple myeloma each year. Induction therapy with an injectable proteasome inhibitor, an oral immunomodulatory agent and dexamethasone followed by treatment with autologous hematopoietic stem cell transplantation, and maintenance therapy with lenalidomide are among the treatments considered standard care for eligible patients.
Background: Although moral distress is increasingly recognized as an important problem that threatens the integrity of health care providers and health care systems, few reliable and valid measures of moral distress are currently in use in research or clinical practice. This article describes the development and testing of a revised measure of moral distress, the Moral Distress Scale–Revised (MDS-R), designed for use in multiple health care settings and with multiple disciplines. Methods: After instrument development and content validity testing, a survey methodology was used to assess reliability and construct validity of the MDS-R. Registered nurses (n = 169) and physicians (n = 37) in eight intensive care units (ICUs) at an academic medical center in the southeastern United States participated; the survey was administered during a 2-week period in January 2011. Results: Adequate reliability and evidence of construct validity were demonstrated. Moral distress was significantly higher for nurses than physicians, although it was negatively correlated with ethical climate for both provider groups. MDS-R scores were significantly higher for those clinicians considering leaving their positions. The proportion of physicians and nurses who had left a previous position or who were considering leaving their current positions due to moral distress was high (16% and 31%, respectively). Conclusions: Initial testing of the MDS-R reveals promising evidence of instrument reliability and validity. The findings from this study lend further support to the important relationships between the moral distress of providers, the ethical climate of health care settings, and retention of health care professionals.
ZUMA-1 demonstrated a high rate of durable response and a manageable safety profile with axicabtagene ciloleucel (axi-cel), an anti-CD19 chimeric antigen receptor (CAR) T-cell therapy, in patients with refractory large B-cell lymphoma. As previously reported, prespecified clinical covariates for secondary end point analysis were not clearly predictive of efficacy; these included Eastern Cooperative Oncology Group performance status (0 vs 1), age, disease subtype, disease stage, and International Prognostic Index score. We interrogated covariates included in the statistical analysis plan and an extensive panel of biomarkers according to an expanded translational biomarker plan. Univariable and multivariable analyses indicated that rapid CAR T-cell expansion commensurate with pretreatment tumor burden (influenced by product T-cell fitness), the number of CD8 and CCR7+CD45RA+ T cells infused, and host systemic inflammation, were the most significant determining factors for durable response. Key parameters differentially associated with clinical efficacy and toxicities, with both theoretical and practical implications for optimizing CAR T-cell therapy. This trial was registered at www.clinicaltrials.gov as #NCT02348216.
Pancreatic ductal adenocarcinoma (PDAC) remains a lethal malignancy with an immunosuppressive microenvironment that is resistant to most therapies. IL17 is involved in pancreatic tumorigenesis, but its role in invasive PDAC is undetermined. We hypothesized that IL17 triggers and sustains PDAC immunosuppression. We inhibited IL17/IL17RA signaling using pharmacological and genetic strategies alongside mass cytometry and multiplex immunofluorescence techniques. We uncovered that IL17 recruits neutrophils, triggers neutrophil extracellular traps (NETs), and excludes cytotoxic CD8 T cells from tumors. Additionally, IL17 blockade increases immune checkpoint blockade (PD-1, CTLA4) sensitivity. Inhibition of neutrophils or Padi4-dependent NETosis phenocopies IL17 neutralization. NMR spectroscopy revealed changes in tumor lactate as a potential early biomarker for IL17/PD-1 combination efficacy. Higher expression of IL17 and PADI4 in human PDAC corresponds with poorer prognosis, and the serum of patients with PDAC has higher potential for NETosis. Clinical studies with IL17 and checkpoint blockade represent a novel combinatorial therapy with potential efficacy for this lethal disease.
Abstract Acute respiratory distress syndrome (ARDS) in COVID-19 is associated with high mortality. Mesenchymal stem cells are known to exert immunomodulatory and anti-inflammatory effects and could yield beneficial effects in COVID-19 ARDS. The objective of this study was to determine safety and explore efficacy of umbilical cord mesenchymal stem cell (UC-MSC) infusions in subjects with COVID-19 ARDS. A double-blind, phase 1/2a, randomized, controlled trial was performed. Randomization and stratification by ARDS severity was used to foster balance among groups. All subjects were analyzed under intention to treat design. Twenty-four subjects were randomized 1:1 to either UC-MSC treatment (n = 12) or the control group (n = 12). Subjects in the UC-MSC treatment group received two intravenous infusions (at day 0 and 3) of 100 ± 20 × 106 UC-MSCs; controls received two infusions of vehicle solution. Both groups received best standard of care. Primary endpoint was safety (adverse events [AEs]) within 6 hours; cardiac arrest or death within 24 hours postinfusion). Secondary endpoints included patient survival at 31 days after the first infusion and time to recovery. No difference was observed between groups in infusion-associated AEs. No serious adverse events (SAEs) were observed related to UC-MSC infusions. UC-MSC infusions in COVID-19 ARDS were found to be safe. Inflammatory cytokines were significantly decreased in UC-MSC-treated subjects at day 6. Treatment was associated with significantly improved patient survival (91% vs 42%, P = .015), SAE-free survival (P = .008), and time to recovery (P = .03). UC-MSC infusions are safe and could be beneficial in treating subjects with COVID-19 ARDS.
The Hispanic/Latino population is the second largest racial/ethnic group in the continental United States and Hawaii, accounting for 18% (60.6 million) of the total population. An additional 3 million Hispanic Americans live in Puerto Rico. Every 3 years, the American Cancer Society reports on cancer occurrence, risk factors, and screening for Hispanic individuals in the United States using the most recent population-based data. An estimated 176,600 new cancer cases and 46,500 cancer deaths will occur among Hispanic individuals in the continental United States and Hawaii in 2021. Compared to non-Hispanic Whites (NHWs), Hispanic men and women had 25%-30% lower incidence (2014-2018) and mortality (2015-2019) rates for all cancers combined and lower rates for the most common cancers, although this gap is diminishing. For example, the colorectal cancer (CRC) incidence rate ratio for Hispanic compared with NHW individuals narrowed from 0.75 (95% CI, 0.73-0.78) in 1995 to 0.91 (95% CI, 0.89-0.93) in 2018, reflecting delayed declines in CRC rates among Hispanic individuals in part because of slower uptake of screening. In contrast, Hispanic individuals have higher rates of infection-related cancers, including approximately two-fold higher incidence of liver and stomach cancer. Cervical cancer incidence is 32% higher among Hispanic women in the continental US and Hawaii and 78% higher among women in Puerto Rico compared to NHW women, yet is largely preventable through screening. Less access to care may be similarly reflected in the low prevalence of localized-stage breast cancer among Hispanic women, 59% versus 67% among NHW women. Evidence-based strategies for decreasing the cancer burden among the Hispanic population include the use of culturally appropriate lay health advisors and patient navigators and targeted, community-based intervention programs to facilitate access to screening and promote healthy behaviors. In addition, the impact of the COVID-19 pandemic on cancer trends and disparities in the Hispanic population should be closely monitored.
IMPORTANCE: Deutetrabenazine is a novel molecule containing deuterium, which attenuates CYP2D6 metabolism and increases active metabolite half-lives and may therefore lead to stable systemic exposure while preserving key pharmacological activity. OBJECTIVE: To evaluate efficacy and safety of deutetrabenazine treatment to control chorea associated with Huntington disease. DESIGN, SETTING, AND PARTICIPANTS: Ninety ambulatory adults diagnosed with manifest Huntington disease and a baseline total maximal chorea score of 8 or higher (range, 0-28; lower score indicates less chorea) were enrolled from August 2013 to August 2014 and randomized to receive deutetrabenazine (n = 45) or placebo (n = 45) in a double-blind fashion at 34 Huntington Study Group sites. INTERVENTIONS: Deutetrabenazine or placebo was titrated to optimal dose level over 8 weeks and maintained for 4 weeks, followed by a 1-week washout. MAIN OUTCOMES AND MEASURES: Primary end point was the total maximal chorea score change from baseline (the average of values from the screening and day-0 visits) to maintenance therapy (the average of values from the week 9 and 12 visits) obtained by in-person visits. This study was designed to detect a 2.7-unit treatment difference in scores. The secondary end points, assessed hierarchically, were the proportion of patients who achieved treatment success on the Patient Global Impression of Change (PGIC) and on the Clinical Global Impression of Change (CGIC), the change in 36-Item Short Form- physical functioning subscale score (SF-36), and the change in the Berg Balance Test. RESULTS: Ninety patients with Huntington disease (mean age, 53.7 years; 40 women [44.4%]) were enrolled. In the deutetrabenazine group, the mean total maximal chorea scores improved from 12.1 (95% CI, 11.2-12.9) to 7.7 (95% CI, 6.5-8.9), whereas in the placebo group, scores improved from 13.2 (95% CI, 12.2-14.3) to 11.3 (95% CI, 10.0-12.5); the mean between-group difference was -2.5 units (95% CI, -3.7 to -1.3) (P < .001). Treatment success, as measured by the PGIC, occurred in 23 patients (51%) in the deutetrabenazine group vs 9 (20%) in the placebo group (P = .002). As measured by the CGIC, treatment success occurred in 19 patients (42%) in the deutetrabenazine group vs 6 (13%) in the placebo group (P = .002). In the deutetrabenazine group, the mean SF-36 physical functioning subscale scores decreased from 47.5 (95% CI, 44.3-50.8) to 47.4 (44.3-50.5), whereas in the placebo group, scores decreased from 43.2 (95% CI, 40.2-46.3) to 39.9 (95% CI, 36.2-43.6), for a treatment benefit of 4.3 (95% CI, 0.4 to 8.3) (P = .03). There was no difference between groups (mean difference of 1.0 unit; 95% CI, -0.3 to 2.3; P = .14), for improvement in the Berg Balance Test, which improved by 2.2 units (95% CI, 1.3-3.1) in the deutetrabenazine group and by 1.3 units (95% CI, 0.4-2.2) in the placebo group. Adverse event rates were similar for deutetrabenazine and placebo, including depression, anxiety, and akathisia. CONCLUSIONS AND RELEVANCE: Among patients with chorea associated with Huntington disease, the use of deutetrabenazine compared with placebo resulted in improved motor signs at 12 weeks. Further research is needed to assess the clinical importance of the effect size and to determine longer-term efficacy and safety. TRIAL REGISTRATION: clinicaltrials.gov Identifier: NCT01795859.
Bone fractures and segmental bone defects are a significant source of patient morbidity and place a staggering economic burden on the healthcare system. The annual cost of treating bone defects in the US has been estimated to be $5 billion, while enormous costs are spent on bone grafts for bone injuries, tumors, and other pathologies associated with defective fracture healing. Autologous bone grafts represent the gold standard for the treatment of bone defects. However, they are associated with variable clinical outcomes, postsurgical morbidity, especially at the donor site, and increased surgical costs. In an effort to circumvent these limitations, tissue engineering and cell-based therapies have been proposed as alternatives to induce and promote bone repair. This review focuses on the recent advances in bone tissue engineering, specifically looking at its role in treating delayed fracture healing (non-unions) and the resulting segmental bone defects. Herein we discuss: 1) the processes of endochondral and intramembranous bone formation; 2) the role of stem cells, looking specifically at mesenchymal (MSC), embryonic (ESC), and induced pluripotent (iPSC) stem cells as viable building blocks to engineer bone implants; 3) the biomaterials used to direct tissue growth, with a focus on ceramic, biodegradable polymers, and composite materials; 4) the growth factors and molecular signals used to induce differentiation of stem cells into the osteoblastic lineage, which ultimately leads to active bone formation; and 5) the mechanical stimulation protocols used to maintain the integrity of the bone repair and their role in successful cell engraftment. Finally, a couple clinical scenarios are presented (nonunions and avascular necrosis - AVN), to illustrate how novel cell-based therapy approaches can be used. A thorough understanding of tissue engineering and cell-based therapies may allow for better incorporation of these potential therapeutic approaches in bone defects allowing for proper bone repair and regeneration.
A set of electrostatically charged, fluorescent, and superparamagnetic nanoprobes was developed for targeting cancer cells without using any molecular biomarkers. The surface electrostatic properties of the established cancer cell lines and primary normal cells were characterized by using these nanoprobes with various electrostatic signs and amplitudes. All twenty two randomly selected cancer cell lines of different organs, but not normal control cells, bound specifically to the positively charged nanoprobes. The relative surface charges of cancer cells could be quantified by the percentage of cells captured magnetically. The activities of glucose metabolism had a profound impact on the surface charge level of cancer cells. The data indicate that an elevated glycolysis in the cancer cells led to a higher level secretion of lactate. The secreted lactate anions are known to remove the positive ions, leaving behind the negative changes on the cell surfaces. This unique metabolic behavior is responsible for generating negative cancer surface charges in a perpetuating fashion. The metabolically active cancer cells are shown to a unique surface electrostatic pattern that can be used for recovering cancer cells from the circulating blood and other solutions.
BACKGROUND: Few studies have estimated the economic costs and benefits of brief physician advice in managed care settings. OBJECTIVE: To conduct a benefit-cost analysis of brief physician advice regarding problem drinking. DESIGN: Patient and health care costs associated with brief advice were compared with economic benefits associated with changes in health care utilization, legal events, and motor vehicle accidents using 6- and 12-month follow-up data from Project TrEAT (Trial for Early Alcohol Treatment), a randomized controlled clinical trial. SUBJECTS: 482 men and 292 women who reported drinking above a threshold limit were randomized into control (n = 382) or intervention (n = 392) groups. MEASURES: Outcomes included alcohol use, emergency department visits, hospital days, legal events, and motor vehicle accidents. RESULTS: No significant differences between control and intervention subjects were present for baseline alcohol use, age, socioeconomic status, smoking, depression or anxiety, conduct disorders, drug use, crimes, motor vehicle accidents, or health care utilization. The total economic benefit of the brief intervention was $423,519 (95% CI: $35,947, $884,848), composed of $195,448 (95% CI: $36,734, $389,160) in savings in emergency department and hospital use and $228,071 (95% CI: -$191,419, $757,303) in avoided costs of crime and motor vehicle accidents. The average (per subject) benefit was $1,151 (95% CI: $92, $2,257). The estimated total economic cost of the intervention was $80,210, or $205 per subject. The benefit-cost ratio was 5.6:1 (95% CI: 0.4, 11.0), or $56,263 in total benefit for every $10,000 invested. CONCLUSIONS: These results offer the first quantitative evidence that implementation of a brief intervention for problem drinkers can generate positive net benefit for patients, the health care system, and society.
Importance: Randomized clinical trials suggest benefit of endovascular-reperfusion therapy for large vessel occlusion in acute ischemic stroke (AIS) is time dependent, but the extent to which it influences outcome and generalizability to routine clinical practice remains uncertain. Objective: To characterize the association of speed of treatment with outcome among patients with AIS undergoing endovascular-reperfusion therapy. Design, Setting, and Participants: Retrospective cohort study using data prospectively collected from January 2015 to December 2016 in the Get With The Guidelines-Stroke nationwide US quality registry, with final follow-up through April 15, 2017. Participants were 6756 patients with anterior circulation large vessel occlusion AIS treated with endovascular-reperfusion therapy with onset-to-puncture time of 8 hours or less. Exposures: Onset (last-known well time) to arterial puncture, and hospital arrival to arterial puncture (door-to-puncture time). Main Outcomes and Measures: Substantial reperfusion (modified Thrombolysis in Cerebral Infarction score 2b-3), ambulatory status, global disability (modified Rankin Scale [mRS]) and destination at discharge, symptomatic intracranial hemorrhage (sICH), and in-hospital mortality/hospice discharge. Results: Among 6756 patients, the mean (SD) age was 69.5 (14.8) years, 51.2% (3460/6756) were women, and median pretreatment score on the National Institutes of Health Stroke Scale was 17 (IQR, 12-22). Median onset-to-puncture time was 230 minutes (IQR, 170-305) and median door-to-puncture time was 87 minutes (IQR, 62-116), with substantial reperfusion in 85.9% (5433/6324) of patients. Adverse events were sICH in 6.7% (449/6693) of patients and in-hospital mortality/hospice discharge in 19.6% (1326/6756) of patients. At discharge, 36.9% (2132/5783) ambulated independently and 23.0% (1225/5334) had functional independence (mRS 0-2). In onset-to-puncture adjusted analysis, time-outcome relationships were nonlinear with steeper slopes between 30 to 270 minutes than 271 to 480 minutes. In the 30- to 270-minute time frame, faster onset to puncture in 15-minute increments was associated with higher likelihood of achieving independent ambulation at discharge (absolute increase, 1.14% [95% CI, 0.75%-1.53%]), lower in-hospital mortality/hospice discharge (absolute decrease, -0.77% [95% CI, -1.07% to -0.47%]), and lower risk of sICH (absolute decrease, -0.22% [95% CI, -0.40% to -0.03%]). Faster door-to-puncture times were similarly associated with improved outcomes, including in the 30- to 120-minute window, higher likelihood of achieving discharge to home (absolute increase, 2.13% [95% CI, 0.81%-3.44%]) and lower in-hospital mortality/hospice discharge (absolute decrease, -1.48% [95% CI, -2.60% to -0.36%]) for each 15-minute increment. Conclusions and Relevance: Among patients with AIS due to large vessel occlusion treated in routine clinical practice, shorter time to endovascular-reperfusion therapy was significantly associated with better outcomes. These findings support efforts to reduce time to hospital and endovascular treatment in patients with stroke.
Abstract Using quantitative radiomics, we demonstrate that computer-extracted magnetic resonance (MR) image-based tumor phenotypes can be predictive of the molecular classification of invasive breast cancers. Radiomics analysis was performed on 91 MRIs of biopsy-proven invasive breast cancers from National Cancer Institute’s multi-institutional TCGA/TCIA. Immunohistochemistry molecular classification was performed including estrogen receptor, progesterone receptor, human epidermal growth factor receptor 2, and for 84 cases, the molecular subtype (normal-like, luminal A, luminal B, HER2-enriched, and basal-like). Computerized quantitative image analysis included: three-dimensional lesion segmentation, phenotype extraction, and leave-one-case-out cross validation involving stepwise feature selection and linear discriminant analysis. The performance of the classifier model for molecular subtyping was evaluated using receiver operating characteristic analysis. The computer-extracted tumor phenotypes were able to distinguish between molecular prognostic indicators; area under the ROC curve values of 0.89, 0.69, 0.65, and 0.67 in the tasks of distinguishing between ER+ versus ER−, PR+ versus PR−, HER2+ versus HER2−, and triple-negative versus others, respectively. Statistically significant associations between tumor phenotypes and receptor status were observed. More aggressive cancers are likely to be larger in size with more heterogeneity in their contrast enhancement. Even after controlling for tumor size, a statistically significant trend was observed within each size group ( P =0.04 for lesions ⩽2 cm; P =0.02 for lesions >2 to ⩽5 cm) as with the entire data set ( P -value=0.006) for the relationship between enhancement texture (entropy) and molecular subtypes (normal-like, luminal A, luminal B, HER2-enriched, basal-like). In conclusion, computer-extracted image phenotypes show promise for high-throughput discrimination of breast cancer subtypes and may yield a quantitative predictive signature for advancing precision medicine.
. However, the mechanisms that control the expression of ACE2 remain unclear. Here we show that the farnesoid X receptor (FXR) is a direct regulator of ACE2 transcription in several tissues affected by COVID-19, including the gastrointestinal and respiratory systems. We then use the over-the-counter compound z-guggulsterone and the off-patent drug ursodeoxycholic acid (UDCA) to reduce FXR signalling and downregulate ACE2 in human lung, cholangiocyte and intestinal organoids and in the corresponding tissues in mice and hamsters. We show that the UDCA-mediated downregulation of ACE2 reduces susceptibility to SARS-CoV-2 infection in vitro, in vivo and in human lungs and livers perfused ex situ. Furthermore, we reveal that UDCA reduces the expression of ACE2 in the nasal epithelium in humans. Finally, we identify a correlation between UDCA treatment and positive clinical outcomes after SARS-CoV-2 infection using retrospective registry data, and confirm these findings in an independent validation cohort of recipients of liver transplants. In conclusion, we show that FXR has a role in controlling ACE2 expression and provide evidence that modulation of this pathway could be beneficial for reducing SARS-CoV-2 infection, paving the way for future clinical trials.
BACKGROUND: Health research is evolving to include patient stakeholders (patients, families and caregivers) as active members of research teams. Frameworks describing the conceptual foundations underlying this engagement and strategies detailing best practice activities to facilitate engagement have been published to guide these efforts. OBJECTIVE: The aims of this narrative review are to identify, quantify and summarize (a) the conceptual foundational principles of patient stakeholder engagement in research and (b) best practice activities to support these efforts. SEARCH STRATEGY, INCLUSION CRITERIA, DATA EXTRACTION AND SYNTHESIS: We accessed a publicly available repository of systematically identified literature related to patient engagement in research. Two reviewers independently screened articles to identify relevant articles and abstracted data. MAIN RESULTS: We identified 990 potentially relevant articles of which 935 (94.4%) were excluded and 55 (5.6%) relevant. The most commonly reported foundational principles were "respect" (n = 25, 45%) and "equitable power between all team members" (n = 21, 38%). Creating "trust between patient stakeholders and researchers" was described in 17 (31%) articles. Twenty-seven (49%) articles emphasized the importance of providing training and education for both patient stakeholder and researchers. Providing financial compensation for patient stakeholders' time and expertise was noted in 19 (35%) articles. Twenty articles (36%) emphasized regular, bidirectional dialogue between patient partners and researchers as important for successful engagement. DISCUSSION AND CONCLUSIONS: Engaging patient stakeholders in research as partners presents an opportunity to design, implement and disseminate patient-centred research. This review creates an overarching foundational framework for authentic and sustainable partnerships between patient stakeholders and researchers.
The phase 3 AETHERA trial established brentuximab vedotin (BV) as a consolidative treatment option for adult patients with classical Hodgkin lymphoma (cHL) at high risk of relapse or progression after autologous hematopoietic stem-cell transplantation (auto-HSCT). Results showed that BV significantly improved progression-free survival (PFS) vs placebo plus best supportive care alone. At 5-year follow-up, BV continued to provide patients with sustained PFS benefit; 5-year PFS was 59% (95% confidence interval [CI], 51-66) with BV vs 41% (95% CI, 33-49) with placebo (hazard ratio [HR], 0.521; 95% CI, 0.379-0.717). Similarly, patients with ≥2 risk factors in the BV arm experienced significantly higher PFS at 5 years than patients in the placebo arm (HR, 0.424; 95% CI, 0.302-0.596). Upfront consolidation with BV significantly delayed time to second subsequent therapy, an indicator of ongoing disease control, vs placebo. Peripheral neuropathy, the most common adverse event in patients receiving BV, continued to improve and/or resolve in 90% of patients. In summary, consolidation with BV in adult patients with cHL at high risk of relapse or progression after auto-HSCT confers a sustained PFS benefit and is safe and well tolerated. Physicians should consider each patient's HL risk factor profile when making treatment decisions. This trial was registered at www.clinicaltrials.gov as #NCT01100502.
Oncogenic RET fusions occur in diverse cancers. Pralsetinib is a potent, selective inhibitor of RET receptor tyrosine kinase. ARROW ( NCT03037385 , ongoing) was designed to evaluate pralsetinib efficacy and safety in patients with advanced RET-altered solid tumors. Twenty-nine patients with 12 different RET fusion-positive solid tumor types, excluding non-small-cell lung cancer and thyroid cancer, who had previously received or were not candidates for standard therapies, were enrolled. The most common RET fusion partners in 23 efficacy-evaluable patients were CCDC6 (26%), KIF5B (26%) and NCOA4 (13%). Overall response rate, the primary endpoint, was 57% (95% confidence interval, 35-77) among these patients. Responses were observed regardless of tumor type or RET fusion partner. Median duration of response, progression-free survival and overall survival were 12 months, 7 months and 14 months, respectively. The most common grade ≥3 treatment-related adverse events were neutropenia (31%) and anemia (14%). These data validate RET as a tissue-agnostic target with sensitivity to RET inhibition, indicating pralsetinib's potential as a well-tolerated treatment option with rapid, robust and durable anti-tumor activity in patients with diverse RET fusion-positive solid tumors.
BACKGROUND: Desmoid tumors are rare, locally aggressive, highly recurrent soft-tissue tumors without approved treatments. METHODS: We conducted a phase 3, international, double-blind, randomized, placebo-controlled trial of nirogacestat in adults with progressing desmoid tumors according to the Response Evaluation Criteria in Solid Tumors, version 1.1. Patients were assigned in a 1:1 ratio to receive the oral γ-secretase inhibitor nirogacestat (150 mg) or placebo twice daily. The primary end point was progression-free survival. RESULTS: From May 2019 through August 2020, a total of 70 patients were assigned to receive nirogacestat and 72 to receive placebo. Nirogacestat had a significant progression-free survival benefit over placebo (hazard ratio for disease progression or death, 0.29; 95% confidence interval, 0.15 to 0.55; P<0.001); the likelihood of being event-free at 2 years was 76% with nirogacestat and 44% with placebo. Between-group differences in progression-free survival were consistent across prespecified subgroups. The percentage of patients who had an objective response was significantly higher with nirogacestat than with placebo (41% vs. 8%; P<0.001), with a median time to response of 5.6 months and 11.1 months, respectively; the percentage of patients with a complete response was 7% and 0%, respectively. Significant between-group differences in secondary patient-reported outcomes, including pain, symptom burden, physical or role functioning, and health-related quality of life, were observed (P≤0.01). Frequent adverse events with nirogacestat included diarrhea (in 84% of the patients), nausea (in 54%), fatigue (in 51%), hypophosphatemia (in 42%), and maculopapular rash (in 32%); 95% of adverse events were of grade 1 or 2. Among women of childbearing potential receiving nirogacestat, 27 of 36 (75%) had adverse events consistent with ovarian dysfunction, which resolved in 20 women (74%). CONCLUSIONS: Nirogacestat was associated with significant benefits with respect to progression-free survival, objective response, pain, symptom burden, physical functioning, role functioning, and health-related quality of life in adults with progressing desmoid tumors. Adverse events with nirogacestat were frequent but mostly low grade. (Funded by SpringWorks Therapeutics; DeFi ClinicalTrials.gov number, NCT03785964.).
PURPOSE: To review the current therapeutic options for the management of diabetic retinopathy (DR) and diabetic macular edema (DME) and examine the evidence for integration of laser and pharmacotherapy. METHODS: A review of the PubMed database was performed using the search terms diabetic retinopathy, diabetic macular edema, neovascularization, laser photocoagulation, intravitreal injection, vascular endothelial growth factor (VEGF), vitrectomy, pars plana vitreous surgery, antiangiogenic therapy. With additional cross-referencing, this yielded 835 publications of which 301 were selected based on content and relevance. RESULTS: Many recent studies have evaluated the pharmacological, laser and surgical therapeutic strategies for the treatment and prevention of DR and DME. Several newer diagnostic systems such as optical coherence tomography (OCT), microperimetry, and multifocal electroretinography (mfERG) are also assisting in further refinements in the staging and classification of DR and DME. Pharmacological therapies for both DR and DME include both systemic and ocular agents. Systemic agents that promote intensive glycemic control, control of dyslipidemia and antagonists of the renin-angiotensin system demonstrate beneficial effects for both DR and DME. Ocular therapies include anti-VEGF agents, corticosteroids and nonsteroidal anti-inflammatory drugs. Laser therapy, both as panretinal and focal or grid applications continue to be employed in management of DR and DME. Refinements in laser devices have yielded more tissue-sparing (subthreshold) modes in which many of the benefits of conventional continuous wave (CW) lasers can be obtained without the adverse side effects. Recent attempts to lessen the burden of anti-VEGF injections by integrating laser therapy have met with mixed results. Increasingly, vitreoretinal surgical techniques are employed for less advanced stages of DR and DME. The development and use of smaller gauge instrumentation and advanced anesthesia agents have been associated with a trend toward earlier surgical intervention for diabetic retinopathy. Several novel drug delivery strategies are currently being examined with the goal of decreasing the therapeutic burden of monthly intravitreal injections. These fall into one of the five categories: non-biodegradable polymeric drug delivery systems, biodegradable polymeric drug delivery systems, nanoparticle-based drug delivery systems, ocular injection devices and with sustained release refillable devices. At present, there remains no one single strategy for the management of the particular stages of DR and DME as there are many options that have not been rigorously tested through large, randomized, controlled clinical trials. CONCLUSION: Pharmacotherapy, both ocular and systemic, will be the primary mode of intervention in the management of DR and DME in many cases when cost and treatment burden are less constrained. Conventional laser therapy has become a secondary intervention in these instances, but remains a first-line option when cost and treatment burden are more constrained. Results with subthreshold laser appear promising but will require more rigorous study to establish its role as adjunctive therapy. Evidence to support an optimal integration of the various treatment options is lacking. Central to the widespread adoption of any therapeutic regimen for DR and DME is substantiation of safety, efficacy, and cost-effectiveness by a body of sound clinical trials.
BACKGROUND: Injuries from falls are major contributors to complications and death in older adults. Despite evidence from efficacy trials that many falls can be prevented, rates of falls resulting in injury have not declined. METHODS: We conducted a pragmatic, cluster-randomized trial to evaluate the effectiveness of a multifactorial intervention that included risk assessment and individualized plans, administered by specially trained nurses, to prevent fall injuries. A total of 86 primary care practices across 10 health care systems were randomly assigned to the intervention or to enhanced usual care (the control) (43 practices each). The participants were community-dwelling adults, 70 years of age or older, who were at increased risk for fall injuries. The primary outcome, assessed in a time-to-event analysis, was the first serious fall injury, adjudicated with the use of participant report, electronic health records, and claims data. We hypothesized that the event rate would be lower by 20% in the intervention group than in the control group. RESULTS: The demographic and baseline characteristics of the participants were similar in the intervention group (2802 participants) and the control group (2649 participants); the mean age was 80 years, and 62.0% of the participants were women. The rate of a first adjudicated serious fall injury did not differ significantly between the groups, as assessed in a time-to-first-event analysis (events per 100 person-years of follow-up, 4.9 in the intervention group and 5.3 in the control group; hazard ratio, 0.92; 95% confidence interval [CI], 0.80 to 1.06; P = 0.25). The rate of a first participant-reported fall injury was 25.6 events per 100 person-years of follow-up in the intervention group and 28.6 events per 100 person-years of follow-up in the control group (hazard ratio, 0.90; 95% CI, 0.83 to 0.99; P = 0.004). The rates of hospitalization or death were similar in the two groups. CONCLUSIONS: A multifactorial intervention, administered by nurses, did not result in a significantly lower rate of a first adjudicated serious fall injury than enhanced usual care. (Funded by the Patient-Centered Outcomes Research Institute and others; STRIDE ClinicalTrials.gov number, NCT02475850.).