Gene expression based survival prediction for cancer patients—A topic modeling approach
Authors:
Luke Kumar aff001; Russell Greiner aff001
Authors place of work:
Department of Computing Science, University of Alberta, Edmonton, Alberta, Canada
aff001; Alberta Machine Intelligence Institute (Amii), Edmonton, Alberta, Canada
aff002
Published in the journal:
PLoS ONE 14(11)
Category:
Research Article
doi:
https://doi.org/10.1371/journal.pone.0224446
Summary
Cancer is one of the leading cause of death, worldwide. Many believe that genomic data will enable us to better predict the survival time of these patients, which will lead to better, more personalized treatment options and patient care. As standard survival prediction models have a hard time coping with the high-dimensionality of such gene expression data, many projects use some dimensionality reduction techniques to overcome this hurdle. We introduce a novel methodology, inspired by topic modeling from the natural language domain, to derive expressive features from the high-dimensional gene expression data. There, a document is represented as a mixture over a relatively small number of topics, where each topic corresponds to a distribution over the words; here, to accommodate the heterogeneity of a patient’s cancer, we represent each patient (≈ document) as a mixture over cancer-topics, where each cancer-topic is a mixture over gene expression values (≈ words). This required some extensions to the standard LDA model—e.g., to accommodate the real-valued expression values—leading to our novel discretized Latent Dirichlet Allocation (dLDA) procedure. After using this dLDA to learn these cancer-topics, we can then express each patient as a distribution over a small number of cancer-topics, then use this low-dimensional “distribution vector” as input to a learning algorithm—here, we ran the recent survival prediction algorithm, MTLR, on this representation of the cancer dataset. We initially focus on the METABRIC dataset, which describes each of n = 1,981 breast cancer patients using the r = 49,576 gene expression values, from microarrays. Our results show that our approach (dLDA followed by MTLR) provides survival estimates that are more accurate than standard models, in terms of the standard Concordance measure. We then validate this “dLDA+MTLR” approach by running it on the n = 883 Pan-kidney (KIPAN) dataset, over r = 15,529 gene expression values—here using the mRNAseq modality—and find that it again achieves excellent results. In both cases, we also show that the resulting model is calibrated, using the recent “D-calibrated” measure. These successes, in two different cancer types and expression modalities, demonstrates the generality, and the effectiveness, of this approach. The dLDA+MTLR source code is available at https://github.com/nitsanluke/GE-LDA-Survival.
Keywords:
analýza hlavních komponent – Gene expression – Algorithms – Machine learning algorithms – Microarrays – breast cancer – Subroutines
1 Introduction
The World Health Organization reports that cancer has become the second leading cause of death globally, as approximately 1 in 6 deaths are caused by some form of cancer [1]. Moreover, cancers are very heterogeneous, in that the outcomes can vary widely for patients with similar diagnoses, who receive the same treatment regimen. This has motivated researchers to seek other features to help predict individual outcomes. Many such analyses use just clinical features. Unfortunately, features such as lymph node status and histological grade, while predictive of metastases, do not appear to be sufficient to reliably categorize clinical outcome [2]. This has led to many efforts to improve the prognosis for cancer, based on genomics data (e.g., gene expression (GE) or copy number variation (CNV)), possibly along with the clinical data [2–6]. Focusing for now on breast cancer, van’t Veer et al. [2] used the expression of 70 genes to distinguish high vs low risk of distant metastases within five years. Parker et al. [4] identified five subtypes of breast cancer, based on a panel of 50 genes (PAM50): luminal A, luminal B, HER2-enriched, basal-like, and normal-like. Later, Curtis et al. [7] examined ≈2000 patients from a wide study combining clinical and genomic data, and identified around ten subtypes. All three of these studies showed that their respective subtypes produce significantly different Kaplan-Meier survival curves [8], suggesting such molecular variation does influence the disease progression. There are also many other systems that use such expression information to divide the patients into two categories: high - vs low-risk; cf., [2, 6].
More recently, many survival prediction models have been applied to cancer cohorts, with the goal of estimating survival times for individual patients; some are based on standard statistical survival analysis techniques, and others based on classic regression algorithms—e.g., random survival forests [9] or support vector regression for censored data (SVRc) [10]. With the growing number of gene expression experiments being cataloged for analysis, we need to develop survival prediction models that can utilize such high dimensional data. Our work describes such a system that can learn effective survival prediction models from high-dimensional gene expression data.
The 2012 DREAM Breast Cancer Challenge (BCC) was designed to focus the community’s efforts to improve breast cancer survival prediction [3]. Its organizers made available clinical and genomic data (GE and CNV) of ≈2000 patients from the [7] study (mentioned above). Each submission to the BCC challenge mapped each patient to a single real value (called “risk”), which is predicting that patients with higher risk should die earlier than those with lower risk. The entries were therefore evaluated based on the concordance measure: basically, the percentage of these pairwise predictions that were correct [11]. This is standard, in that many survival prediction tasks use the concordance as the primary measure to assess the performance of the survival predictors, here and in other challenges [12]. The winning model [13] performed statistically better than the state-of-the-art benchmark models [3].
This paper explores several dimensionality reduction technique, including a novel approach based on topic modeling, “discretized Latent Dirichlet Allocation” (dLDA), seeking one that can produce highly predictive features from the high-dimensional gene expression data. We explored several ways to apply this topic-modeling approach to gene expression data, to identify the best ways to use it to map the gene expression description into a much lower dimensional description (from ≈50K features to 30 in this METABRIC dataset). We then gave the resulting transformed data as input to a recently-developed non-parametric learning algorithm, multi-task logistic regression (MTLR), which produced a model that can then predict an individual’s survival distribution [14]. We show that this predictor performs better than other standard survival analysis tools in terms of concordance. We also found that it was “D-calibrated” [15, 16]; see Appendix B.2.
To test the generality of our learning approach (dLDA + MTLR), we then applied the same learning algorithm—the one that worked for the METABRIC microarray gene expression dataset—to the Pan-Kidney dataset, which is a different type of cancer (kidney, not breast), and is described using a different type of features (mRNAseq, not microarray). We found that the resulting predictor was also extremely effective, in terms of both concordance and D-calibration.
This paper provides the following three contributions: (1) We produce an extension to LDA, called “dLDA”, needed to handle continuous data; (2) we use this as input to a survival prediction tool, MTLR—introducing that tool to this bioinformatics community; and (3) we demonstrate that this dLDA+MTLR combination works robustly, in two different datasets, using two different modalities—working better than some other standard approaches, in survival prediction.
Section 2 introduces the basic concepts, related to the survival prediction task in general and latent dirichlet allocation; Section 3 then describes the datasets used in this study; and Section 4 presents an overview of learning and performance tasks, at a high level. Section 5 (resp., 6, 7) then presents our results (resp., discussions, contributions). The supplementary appendices provide additional figures, tables, and other and material—e.g., defining some of the terms, and introducing “D-calibration”.
2 Foundations
This section provides the foundations: Section 2.1 overviews the survival prediction task in general then Section 2.2 describes Latent Dirichlet Allocation (LDA), first showing its original natural language context, then discussing how we need to extend it for our gene expression context. These significant modifications lead to a discretized variant, dLDA. We also contrast this approach with other survival analysis of gene expressions.
2.1 Survival prediction
Survival prediction is similar to regression as both involve learning a model that regresses the covariates of an individual to estimate the value of a dependent real-valued response variable—here, that variable is “time to event” (where the standard event is “death”). But survival prediction differs from the standard regression task as its response variable is not fully observed in all training instances—this tasks allows many of the instances to be “right censored”, in that we only see a lower bound of the response value. This might happen if a subject was alive when the study ended, meaning we only know that she lived at least (say) 5 years after the starting time, but do not know whether she actually lived 5 years and a day, or 30 years. This also happens if a subject drops out of a study, after say 2.3 years, and is then lost to follow-up; etc. Moreover, one cannot simply ignore such instances as it is common for many (or often, most) of the training instances to be right-censored; see Table 1. Such “partial label information” is problematic for standard regression techniques, which assume the label is completely specified for each training instance. Fortunately, there are survival prediction algorithms that can learn an effective model, from a cohort that includes such censored data. Each such dataset contains descriptions of a set of instances (e.g., patients), as well as two “labels” for each: one is the time, corresponding to the time from diagnosis to a final date (either death, or time of last follow-up) and the other is the status bit, which indicates whether the patient was alive at that final date (Fig 1).
2.1.1 Patient specific survival prediction using the MTLR model
This project considered 3 ways to learn a survival model: The standard approaches—Cox and Regularized Cox (RCox)—are overviewed in Appendix A.5. This subsection describes the relatively-new MTLR [14] system, which learns a model (from survival data) that, given a description of a patient x ∈ ℜr, produces a survival curve, which specifies the probability of death D, P(D ≥ t | x) vs t for all times t ≥ 0. This survival curve is similar to a Kaplan–Meier curve [8], but incorporates all of the patient specific features x. In more detail: MTLR first identifies m time points {ti}i=1‥m and then learns a variant of a logistic regression function, parameterized by W = {[wi, bi]}i=1‥m over these m time points, a different such function for each time ti—meaning W is a matrix of size m × (r + 1). Using the random variable D for the time of death for the patient described by x:
Given the learned parameters W, we can then use Eq 1 to produce a curve for each patient; we can then use the (negative of) the mean of the patient’s specific predicted survival distribution as her risk score. Yu et al. [14] presents more detailed explanations of model formulation, parameter learning (W), and the prediction task. MTLR differs from many other models (such as the standard Cox model) as: (1) MTLR produces a survival function, rather than just a risk score; and (2) MTLR does not make the proportional hazards assumption—i.e., it allows effect of each covariate to change with time. See also Haider et al. [16]. Note this is the learning process of LearnSurvivalModel (LSM[Ψ=MTLR]) appearing below in Fig 3, and Section 4.1.
2.2 Discretized Latent Dirichlet Allocation (dLDA)
Latent Dirichlet Allocation (LDA) is a widely used generative model [17], with many successful applications in natural language (NL) processing. LDA views each document as a distribution over multiple topics (document-topics distribution), where each topic is a distribution over a set of words (topic-words distribution)—that is, LDA assumes that each word in a document is generated by first sampling a topic from the document’s document-topics distribution and then sampling a word from the selected topic’s topic-words distribution. Given the set of topics (each corresponding to a specific topic-word distribution), we can view each document as its distribution over topics, which is very low dimensional.
The LDA learning process first identifies the latent topics—that is, the topic-words distributions corresponding to each latent topic—based on the words that frequently co-occur across multiple documents; n.b., it just uses the documents themselves, but not the labels. For example, it might find that many documents with the word “ball” also included “opponent” and “score”; and vice versa. Similarly, “finances”, “transaction”, and “bank” often co-occur, as do “saint”, “belief” and “pray”. Speaking loosely, the topic-model-learner might then form one topic, β ¯ 1, that gives high probabilities to the first set of words (and relatively low probabilities to the remaining words)—perhaps
This β ¯ 1 corresponds to an n-tuple over the n words; we call this β ¯ 1 ≈ [ P ( w 1 | β ¯ 1 ) , … , P ( w n | β ¯ 1 ) ]. It would similarly identify a second topic β ¯ 2 with the n-tuple β ¯ 2 ≈ [ P ( w 1 | β ¯ 2 ) , … , P ( w n | β ¯ 2 ) ] that gives high probabilities to the different set of words, etc. (While we might view the first topic as related to sports, the second related to finances, and third to religion, that is simply our interpretation, and is not needed by the learning algorithm. Other topics might not be so obvious to interpret.) This produces the topic-words distribution B = { β ¯ i } i = 1 ‥ K over K topics.
The learner would then map each document into a “distribution” over this set of K topics—perhaps document f1 would be decomposed as Θ(f1) = [θ1(f1), θ2(f1) …, θK(f1)] = [0.01, 13.02, 50.01 …, 0.03]—these are parameters for a Dirichlet distribution, which are non-negative, but do not add up to 1. These are different for different documents—e.g., perhaps f2 is expressed as Θ(f2) = [12.03, 0.001, 3.1, …, 2.4], etc. This is the document-topic distribution {Θ(fj)}j=1‥m over the m documents.
The specific learning process depends on the distributional form of the document-topics and topic-words distributions (here, we use Dirichlet for both) and also the number of latent topics, K. Given this, the LDA learning process finds the inherent structure present in the data—i.e., a model (topic-words distributions for each of the K topics { β ¯ i } i = 1 ‥ K) that maximizes the likelihood of the training data.
The same way certain sets of words often co-occur in a document, similarly sets of genes are known to be co-regulated: under some condition (corresponding to a “c_topic”), every gene in that set will have some additional regulation—some will be over-expressed, each by its own amount, and the others will be under-expressed. Moreover, just as a natural language (NL) topic typically involves relatively few words, most c_topics effectively involve relatively few genes. Also, just like a document may involve a mixture of many topics, each to its own degree, so a patient’s cancer often involves multiple c_topics; see work on cancer subclones [18]. This has motivated many researchers to use some version of topic modeling to model gene expression values, under various (sets of) conditions.
For example, Rogers et al. [19] proposed Latent Process Decomposition (LPD), a probabilistic graphical model that was inspired by LDA, for microarray data, and presented clustering of genes that led to results comparable to those produced by hierarchical clustering. (Their results are descriptive; they do not use the results in any downstream evaluation). Later Masada et al. [20] proposed improvements to the original LPD approach and showed similar results. Bicego et al. [21] report topic modeling approaches (including LPD) were useful in classification tasks with gene expression data. They applied several topic models as dimensionality reduction tools to 10 different gene expression data sets, and found that the features from the topic models led to better predictors.
Further, Lin et al. [22] reviewed various different topic models applied to gene expression data, including LDA and probabilistic latent semantic analysis (PLSA) [23], as well as the topic model approaches described above, for gene classification and clustering. They note that the topic model approaches improve over other models as one can easily interpret the topic-words distributions and the mixed membership nature of the document-topic distribution.
However, none of these tasks were survival analysis. They used shifting and scaling to convert the continuous gene expression values to discrete values; we considered this approach for our data, but found that it was not able to learn distinct topics for our data. Moreover, this gave all patients very similar document-topic distributions. Dawson et al. [24] proposed a survival supervised LDA model, called survLDA, as an extension of supervised LDA [25]. survLDA uses a Cox model [26] to model the response variable (survival time) instead of the generalized linear model [27] used in supervised LDA [25]. But Dawson et al. [24] reported that the topics learned from survLDA were very similar to the ones learned from the general (unsupervised) LDA model.
Here, we apply the “standard” topic-modeling approach to gene expression data, for the survival prediction task. While previous systems applied topic modeling techniques to gene expression data, very few have applied topic models to predict a patient’s survival times (and none to our knowledge have used mRNAseq expression data). Our work presents a more direct analogue to the NL topic modeling that can be applied to our cohort of patients with gene expression data, where each patient corresponds to a document and the genes/probes in the expression data correspond to the words that form the document. This requires making some significant modifications to the standard LDA model, which assumes the observations are frequencies of words, which are non-negative integers that generally follows a monotonically decreasing distribution. By contrast, gene expression values are arbitrary real values, believed to follow a skewed Gaussian distribution [28]; see also Fig 4. (This is also true for mRNAseq, as we need to normalize the expression counts to be comparable, from patient to patient).
We follow the approach of explicitly discretizing the expression values in a preprocessing step, so the resulting values basically, approximate a Zipf distribution. There are still some subtleties here—e.g., while the NL situation involves only non-negative integers, an affected gene can be either over-expressed, or under-expressed—i.e., we need to deal with two directions of “deviation”, while NL’s LDA just deals with one direction; see Section 4.1.1. We refer to our model as dLDA and the discretized gene expression values as dGEVs. The same way the standard LDA approach reduces the description of a document from a ≈ 105-dimensional vector (corresponding to the words used in that document) to a few dozen values (the “distribution” of the topics), this dLDA approach reduces the ≈ 50K-dimensional gene expression tuple to a few dozen values—here the “distribution” of the c_topics. Fig 5 summarizes this process: using the subroutines defined in Section 4 below, at learning time, ComputeBasis[ρ=dLDA] first identifies the set of relevant c_topics β ¯ G E from the set of gene expression values X G E ′, then later (at performance time), UseBasis[ρ=dLDA] uses those learned c_topics to transform a new patient’s high-dimensional gene expression profile x G E ′ to a low-dimensional c_topic-profile, x”GE—here going from 50K values to 30.
Section 5 presents empirical evidence that this method works effectively for our survival prediction task; Appendix C.1 shows that it performs better than the LPD technique.
3 Datasets used
We apply our methods to two large gene expression datasets: the METABRIC breast cancer cohort [7] (mircroarray) and the Pan-kidney cohort KIPAN (mRNAseq) [29, 30]. We initially focus on the METABRIC dataset [40] which is one of the largest available survival studies that includes genomic information. In 2012, the Breast Cancer Prognostic Challenge (BCC) organizers released the METABRIC (Molecular Taxonomy of Breast Cancer International Consortium) dataset for training [7]. While they subsequently released a second dataset (OSLO) for final testing [7], we are not using it for several reasons: (1) METABRIC provided disease-specific survival (DS), which considers only breast cancer death (BC-based death), rather than all causes of death [13]. By contrast, OSLO provides “overall survival”, which does not distinguish BC-based deaths from others. As DS is clearly better for our purpose, it is better to evaluate on the METABRIC dataset. (2a) OSLO and METABRIC contained different sets of probes—and in particular, OSLO contains only ∼ 80% of the METABRIC probes. (2b) Similarly, the OSLO dataset is also missing some of the clinical covariates that are present in the METABRIC dataset—e.g., menopausal status, group, stage, lymph nodes removed, etc.; see [3, Table 1]. This means a “METABRIC-OSLO study” would need to exclude some METABRIC features and some METABRIC probes.
We then used a second independent dataset, to verify the effectiveness of our “dLDA+MTLR” approach. Here, we did not use OSLO, as we wanted to explore a different type of cancer, and also use a different platform, to show that our system could still identify an appropriate (and necessarily different) set of cancer-topics (c_topics). We therefore used the KIPAN dataset from TCGA (The Cancer Genome Atlas), as it (also) contains a large number of patients and provides survival information.
Table 1 lists some of the important characteristics of these datasets. Note that KIPAN contains 15,529 genes, while METABRIC has 49,576 probes. This is because many METABRIC probes may correspond to the same gene each targeting a different DNA segment of the gene. As different probes for the same gene might behave differently, we gave our learning algorithm the complete set of probes. Our results on the KIPAN dataset show that our approach also works when dealing with gene expression data from a totally different cancer and platform (here kidney not breast, and mRNAseq rather than Microarray)—demonstrating the generality of our approach.
3.1 Training vs test data
We apply the same experimental procedure to both datasets (METABRIC and KIPAN): We partition each dataset into two subsets, and use 80% of the data for training and the remaining 20% for testing. Both partitions contain instances with comparable ranges of survival times and comparable censored-versus-uncensored ratio. When necessary, we ran internal cross-validation, within the training set, to find good settings for parameters, etc.
4 Overview of learning and performance processes
As typical for Supervised Machine Learning systems, we need to define two processes:
-
The learning algorithm, LearnSurvivalModel
LSM[ρ=dLDA; Ψ=MTLR]([XGE, XCF], Lbl) takes a labeled dataset, involving both gene expression data XGE and clinical features XCF (and survival-labels Lbl) for many patients, and computes a Ψ = MTLR survival model W. (Many subroutines are parameterized by a dimensionality reduction technique ρ ∈ {dLDA, PCA}, and/or by a survival learning algorithm Ψ ∈ {MTLR, Cox, RCox}. We use notation “Alg[ρ; Ψ](⋅)” to identify the specific parameters; hence LSM[ρ=dLDA; Ψ=MTLR]([XGE, XCF], Lbl) is dealing with the ρ = dLDA encoding and Ψ = MTLR survival learning algorithm).
It also returns the ρ = dLDA “basis set” β ¯ G E (here, think of a set of c_topic distributions), and some information about the pre-processing performed, Ω. See Fig 3.
-
The performance algorithm, UseSurvivalModel
USM[ρ=dLDA; Ψ=MTLR]([xGE, xCF], β ¯ G E, W, Ω), takes a description of an individual (both gene expression xGE, and clinical features xCF), as well as the ρ = dLDA basis set β ¯ G E and the Ψ = MTLR survival model W (and pre-processing information Ω), and returns a specific survival prediction for this individual, from which we can compute that person’s risk score. See Fig 6.
To simplify the presentation, the main text will describe the process at a high-level, skipping most of the details. Notice these functions are parameterized by the type of dimensionality reduction ρ and the survival learner Ψ. This section will especially focus on the novel aspects here, which are the ρ = dLDA transformation (Section 2.2), which complicates the ComputeBasis[ρ=dLDA](⋯) function (Section 4.1.1); and the Ψ = MTLR algorithm for learning the survival model (Section 2.1.1). Appendix A summarizes the more standard ρ = PCA approach to reducing the number of features, and the more standard survival models Ψ ∈ {Cox, RCox}, as well as other details about the learning, and performance models, in general.
4.1 Learning system LSM
Here, LSM[ρ=dLDA; Ψ=MTLR] ([XGE, XCF], Lbl) first calls PreProcess, which fills-in the missing values in the XCF clinical features (producing X C F ′), and normalizes the real-valued XGE genetic features, which is basically computing the z-scores X G E ′, over all of the values. It then calls ComputeBasis[ρ=dLDA](⋯) to compute a set of c_topics β ¯ G E from the gene expression data X G E ′ (as well as the other inputs), then calls UseBasis[ρ = dLDA](X G E ′ , β ¯ G E), which “projects” X G E ′ onto this β ¯ G E to find a low dimensional description of the genetic information; see Fig 5. These projected values, together with X C F ′ and Lbl, form the labeled training set given to the Ψ = MTLR learning system, which computes a survival model W. Here, the LSM process returns the dLDA “basis” β ¯ G E and the MTLR-model W. (Further details appear in Appendix A.)
4.1.1 ComputeBasis[ρ=dLDA](⋯) function
As noted above, the ≈50,000 expression values for each patient is so large that most standard learning algorithms would overfit. We consider two ways to reduce the dimensionality. One standard approach, Principal Component Analysis (PCA), is discussed in Appendix A.4. Here, we discuss a different approach, dLDA, that uses the Latent Dirichlet Analysis.
The PreProcess routine computes z-scores X G E ′ for the gene expression values XGE; the ComputeBasis[ρ=dLDA] subroutine then has to transform those real values to the non-negative integers required by LDA—moreover, it was designed to deal with word counts in documents where, in any given document, most words appear 0 times, then many fewer words appear once, then yet fewer words appear twice, etc. We therefore need a method for converting the real values into non-negative integers.
This process therefore discretizes the standardized gene expression values (in X G E ′) into the integers {-10, -9, …, -1, 0, 1, …, 9, 10}, by mapping each real number to the integer indexing some essentially equal-sized bins; see Fig 4, and Appendix A.2 for details.
This does map each gene expression to an integer, but this includes both positive and negative values. Given that over-expression is different from under-expression, an obvious encoding uses two non-negative integer values for each gene: mapping +2 to [2, 0], and −3 to [0, 3], etc. Note that the range of each component of the encoding will be non-negative integers, and that most of the values will be 0, then fewer will be 1, etc.—as desired. However, this does double the dimensionality of representation; i.e., we now have twice the number of genes: UNDER-‘gene_name’ and OVER-‘gene_name’.
(Below we call this the Enc_B encoding; see also B(⋅) at the bottom of Fig 4.) Given that very few values are < −1 (in METABRIC, over 14% (normalized) expression values were > 1, but less than less than 0.04% were < −1; recall that heights in Fig 4 are on a log scale), we considered another option: collapsing the +values and −values to a single value—so both +4 and −4 would be encoded as 4. This would mean only half as many features (which would reduce the chance of overfitting), and would continue to note when a gene had an exceptional value. (This is the Enc_A encoding, which corresponds to the A(⋅) at the bottom of Fig 4.) As it was not clear which approach would work better, our implementation explicitly considered both options—and used the training set to decide which worked best; see below.
The standard LDA algorithm also needs to know the number of topics (here c_topics) K to produce. ComputeBasis uses (internal) cross-validation to find the best value for K, over the range K ∈ {5, 10, 15, …, 150}, as well as encoding technique t ∈ {Enc_A, Enc_B}—seeking the setting leading to the Cox model with the best concordance (on each held-out portion). See Appendix A.2 for details. After finding the best K* and encoding t*, ComputeBasis then finds the K* c_topics on the t*-encoded (preprocessed) training gene expression data X G E ′; this is the c_topic distribution, β ¯ G E.
The vertical left-side of Fig 5 gives a high-level description of the ComputeBasis[ρ=dLDA] process: given a large set of (preprocessed) high-dimensional gene expression profiles, produce a small set of c_topics (each corresponding to a mapping from the gene expression profiles). We will later describe the UseBasis[ρ=dLDA] process that uses those c_topics to transform the high-dimensional gene expression profile of a novel instance, into a small dimensional set of values—see the left-to-right “Performance Process” part here. At this abstract level, it is easy to see that it nicely matches the ρ = PCA process, where ComputeBasis[ρ=PCA] would find the top principle components of the X G E ′ datasets (here, the β ¯ G E box would be those components), which UseBasis[ρ=PCA] could then use to transform a new gene expression profile into that low-dimensional “PC-space”.
4.2 Performance system, USM
As shown in Fig 6, the USM[ρ=dLDA;Ψ=MTLR]([xGE, xCF], β ¯ G E W, Ω) system applies the learned Ψ = MTLR model W, to a PreProcess’ed description of a novel patient, [ x G E ″ , x C F ′ ], whose gene expression values x G E ″ have been “projected” into the relevant basis β ¯ G E by UseBasis[ρ=dLDA]. This produces a survival curve, which it then uses to produce that patient’s predicted risk score: the negative of the expected time for this distribution, which corresponds to the area under its survival curve.
Each of the various subroutines are described in an appendix: PreProcess’, UseBasis[ρ=dLDA] and UseBasis[ρ=PCA] are described in Appendices A.1, A.3 and A.4, respectively. The UseModel[Ψ=Cox] and UseModel[Ψ=RCox] produce standard risk scores for each patient, obtained by applying the learned Cox (resp., RCox) model to the patient’s clinical and gene expression features; see Appendix A.5.
5 Experimental results
As noted above, we intentionally designed our learning and performance systems (Figs 3 and 6) to be very general—to allow two types of basis ρ ∈ {dLDA, PCA} and three different survival prediction algorithms Ψ ∈ {MTLR, Cox, RCox}. This allows us to explore 2 × 3 frameworks, on the two different datasets (METABRIC and KIPAN). For each, the learner uses internal internal cross-validation to find the optimal parameters. Below we report the results of each optimized model on the held-out set, focusing on the Concordance Index (CI)—a discriminator measure. We also discuss a calibration measure of these results; see Appendix B.2.
We also present our experimental results from the BCC Dream Challenge winner’s model [13]. As discussed in Section 4.1.1, ComputeBasis[ρ=dLDA] ran internal cross-validation on the training set to determine the appropriate encoding t* ∈ {Enc_A, Enc_B} and the optimal number of c_topics for the dLDA model K* from a large potential values (see Algorithm 1 in Appendix A.2). Our experiments found that the discretization t* = Enc_B, along with K* = 30 c_topics, produced the best dLDA algorithm for survival prediction in METABRIC; after fixing the encoding scheme as Enc_B, we used the same technique on the KIPAN dataset and found K = 50 c_topics to be the best. We used the C implementation from Blei et al. [17, 41] to compute the c_topics. On a single 2.66GHz processor with on 16Gb memory, a single fold takes around ∼20–30 hours (more time for larger K). We, of course, parallelized each CV fold.
We experimented with different combinations of the features from three groups: (1) clinical features, (2) SuperPC+ principle components (ρ = PCA), and/or (3) the dLDA c_topic (ρ = dLDA); and with three different survival prediction algorithms Ψ ∈ {Cox, Cox, MTLR}. Our goal in these experiments is to empirically evaluate the performance of the survival models that use various types of features. Given this goal, we evaluate the performance using different GE basis methods (ρ) by comparing their performance to a baseline model that only uses the clinical features with Cox [26]. The other combinations include clinical features as well as various different GE features; each is trained using each of the three aforementioned survival prediction algorithms (Ψ).
As an additional feature selection step, we removed the covariate “Site” from the METABRIC clinical covariates, based on our experimental results (on the training data) that shows its inclusion led to worse concordance. We experimented with a large, but selective, set of model combinations, to answer our major queries:
- (i)
does adding GE features improve survival prediction?
- (ii)
which is the best feature combination for survival prediction?
- (iii)
which is better representation of the GE features: dLDA or SuperPC+?
- (iv)
are we deriving GE features that are redundant with PAM50?
Our results appear in Table 2, shown visually in Fig 7(left). Note the baseline is “A-Cox”, where the ‘A’ refers to the feature set used, which here is the far left triplet of blocks in Fig 7(left), and the ‘Cox’ refers to the learning algorithm, which appears left-most in each triplet. These results lead us to claim:
-
(i)
Comparing the baseline, A-Cox, to the other models, we immediately see that adding GE features (using any of the dimensionality reduction technique) leads to better predictive models;—i.e., all of the results are better than A-Cox’s CI of 0.6810 (the left-most light-shaded bar in Fig 7(left)).
-
(ii)
The best model for METABRIC is the one that includes all of the types of features derived from the gene expression—here E-MTLR, which is the right-most bar of Fig 7(left).
We also performed student’s t-tests on random bootstrap samples from the test data to validate the significance of our results. When we compare this best model, E-MTLR, against models B-RCox (which is the best model using only PCA GE features) and C-MTLR (the best model using only dLDA GE features), we find statistically significant difference between them (respective pairwise p-value: 4.8e-16, 1e-3), showing that the E-MTLR model is significantly better than its closest counterparts.
-
(iii)
These empirical results show that, if you are pick only a single GE feature set, the dLDA c_topics perform better than the principle components—that is, the C-χ has a higher score than B-χ, for χ ∈ {Cox, RCox, MTLR}; moreover, a model using both sets of features performs yet better (i.e., D-χ is better that C-χ).
-
(iv)
Comparing the D-χ to E-χ, we see that adding PAM50 subtypes as features to the METABRIC database improves the held-out test concordance.
Indeed, we see that the performance of models that include PAM50 are marginally better than similar models that do not (row D), suggesting that the information added by these different representations of GE data are not redundant. Moreover, we see that, in all feature groups, both RCox and MTLR clearly outperform Cox—i.e., ν-RCox and ν-MTLR are better than ν-Cox, for ν ∈ {A,B,C,D,E}. We then tested the first three claims on the KIPAN dataset; see Table 2 (right-most column) and Fig 7(right). (As KIPAN does not deal with breast cancer, the PAM50 features are not relevant, so we could not test claim (iv).)
-
(i)
As before, we found that adding expression information improves over the baseline A-Cox –i.e., essentially all values are better than 0.7656.
-
(ii)
We again found that the best model was the one that included all of the features; here D-MTLR. Moreover, a t-test on bootstrap replicas show that this model D-MTLR was significantly better than the top model that does not include dLDA features, B-MTLR.
-
(iii)
We again see that C-χ has a higher score than B-χ, meaning (again) that models trained with only the c_topics performed much better than PCA-features; but that including both features was yet better (D-χ).
These sets of experiments support our claim that
a model learned by running MTLR on all GE features, gives very good concordance scores
–statistically better than other options in two different datasets, using different platforms, related to different cancer types.
In addition to these evaluations using the discriminative concordance measure, we also applied a calibration measure: “D-Calibration” (“D” for “Distribution”) [15, 16], which measures how well a individual survival distribution model is calibrated, using the Hosmer-Lemeshow (HL) [30] goodness-of-fit test; see Appendix B.2. We found that all of our models, for both datasets (METABRIC and KIPAN), passed this calibration test; see Appendix C.2, especially Table 3. But we have found that this is not universal. For example, we experimented with another breast cancer dataset BRCA (results not shown here), and found that the Cox model failed for all configurations (of ρ), showing that the Cox model does not always produce calibrated results—here, for situations where RCox and MTLR produced D-calibrated predictors. See also Haider et al. [16].
5.1 Other comparisons
In 2012, Cheng et al. [13] won the BCC Dream Challenge (which was based on the METABRIC data) by (i) leveraging prior knowledge of cancer biology to form Meta-Genes and (ii) training an ensemble of multiple learners, fueled by the continuous insights from the challenge competitors via open sharing of code and trained models. To compare our performances with this BCC winning program, we reproduced their models (using the DreamBox7 package), then re-trained their ensemble learners on our training split of the METABRIC data and tested on the held-out test set. Table 2[Row F] shows that the resulting ensemble model achieved a CI of 0.7293 on the test data. While that score is slightly better than the performance of our best model (Table 2[Row E]), note that all of our tuning was performed solely on the training (n = 1586) data, while their team made major design choices for their model using the entire METABRIC cohort (all n = 1981 instances), on which it was then evaluated.
Recently, Yousefi et al. [31] trained a deep neural network on this KIPAN data—including this gene expression data, as well as other features: Mutation, CNV and Protein. They reported concordance scores around 0.73−0.79, which are lower than our best, 0.8495.
Finally, while we focused on the LDA approach, we also explored another topic modeling technique, Latent Semantic Indexing (LSI) [23]. Running this on both datasets (using the same discretization approach, the same t* = Enc_B encoding and the same number of c_topics, K* = 30), we found essentially the same Concordance values, and confirmed that all four claims (i) through (iv) still hold, just replacing dLDA with the “discretized LSI” (dLSI) encoding.
6 Discussion
Given the growing number of gene expression datasets as part of survival analysis studies, it is clearly important to develop survival prediction models that can utilize such high-dimensional GE data. This motivated us to propose a novel survival prediction methodology that can learn predictive features from such GE data—exploring ways to learn and use c_topics as features for models that can effectively predict survival. N.b., this paper focuses exclusively on this predictive task, as this can lead to clinically relevant patient-specific information; indeed, this motivated the BCC Dream challenge, which provided the METABRIC dataset. We anticipate future work will explore the possible interpretation of these c_topics.
We included Cox as one of our learning modules for this task as it is known to be effective at optimizing concordance, both empirically and theoretically [32]. We included RCox as this algorithm recently won Prostate Cancer Dream Challenge 9.5 [12]. Finally, we included the MTLR survival prediction model as its performance, there, was competitive with the best, as well as based on the empirical evidence in Haider et al. [16]. Our evaluations on these two datasets show that MTLR’s performance was often better than RCox and Cox. Moreover, while the basic RCox and Cox functions produce only a risk score for each patient, MTLR provides a survival distribution for each, mapping each time to a probability; see Fig 2. Such models, which produce an individual survival distribution, can be used to compute a risk score, allowing them to be used for concordance-tasks; they can also be used to predict single time probabilities (e.g., probability of a patient living at least 3 years), and also can be visualized. (We used the Kalbfleisch-Prentice approach to estimate the base hazard function, allowing Cox and RCox to similarly produce individual survival curves. Appendix B.2 describes a way to evaluate such “individual survival distribution” models, D-Calibration. Appendix C.2 then shows that, for these datasets, these models all pass this test).
To summarize the main disadvantages and advantages of our approach, versus more standard approaches (e.g., PCA for dimensionality reduction, and (R)Cox for survival prediction):
-
Disadvantages:
-
Topic models are not simple to describe.
-
This approach requires a fairly long training time (∼20 hours on a 16GB, 2.66GHz processor for a single model)—to first find the parameters (encoding, number of c_topics), then the c_topics themselves, and finally, to learn the model that has the best performance. (However, using the trained dLDA model to predict c_topic contributions for a new patient is very fast—under a second on a general purpose laptop computer.)
-
-
Advantages:
-
An effective process to learn representation from gene expression data, as a meaningful probability distribution over the genes.
-
The learned representation from the gene expression data improves survival prediction, over standard methods, in:
-
Different cancer types: Breast and Kidney.
-
Different gene expression data types: Microarray and mRNASeq.
-
Different survival prediction algorithms: Cox, Regularized-Cox and MTLR.
-
-
Our combined approach for feature learning and survival prediction (dLDA + MTLR) archives strong concordance scores compared to standard survival models across different cancer types.
-
7 Conclusion
Table 2 shows that our proposed model, which uses MTLR to learn a model involving various types of derived GE features (dLDA c_topics and/or SuperPC+), has the best concordance, in two datasets representing different types of cancer, and two different gene expression platforms (micro-array and mRNAseq). That table shows that adding GE features improves survival prediction and that including both dLDA c_topics and SuperPC+ principle components gives the most improvements across held-out datasets. We also found that the “framework” that produced the best model in METABRIC, was also the best in the Pan-kidney KIPAN dataset, which shows the robustness of our proposed prediction framework. Moreover the c_topics extracted by our dLDA procedure (inspired by topic modeling) can be interpreted as collections of over-expressed or under-expressed gene sets; further analysis is needed to discover and validate the biological insights from these c_topics. Our results show that our novel survival prediction model—learning a MTLR survival model based on our derived GE features (dLDA c_topics and SuperPC+ components)—leads to survival prediction models that can be better than standard survival models. We anticipate that others will find this dLDA+MTLR approach (and code at https://github.com/nitsanluke/GE-LDA-Survival) helpful for their future tasks.
A Details about the algorithms
Section 4 gave a high-level overview of the important parts of the learning, and performance, systems; see also Fig 8. This appendix completes that description. In particular, it summarizes the components of the learning and performance systems—each shown as a rounded-rectangle in Figs 3 or 6—roughly in a top-to-bottom fashion. Appendix A.1 describes the PreProcess(⋯) routine that preprocesses the training data (both gene expression and clinical features), and the related PreProcess’(⋯) routine, used by USM, to preprocess a novel instance. Appendix A.2 then gives many details about ComputeBasis[ρ=dLDA](⋯) that computes the set of “c_topic − genes” distributions, given gene expression values (and some additional information)—extending the high-level description in routine in Section 4.1.1. Appendix A.3 describes the UseBasis[ρ=dLDA] routine that uses these c_topic-genes distributions to map each patient’s gene expression profile into that patient’s specific “c_topic—distribution”; see Fig 5. Appendix A.4 presents ComputeBasis[ρ=PCA] and UseBasis[ρ=PCA] techniques, to deal with the other approaches for reducing the dimensionality, PCA. Finally Appendix A.5 describes two related standard survival analysis methods: Cox [26], and Ridge-Cox (RCox) [33]. (Section 2.1.1 presented another approach, based on the more recent MTLR approach to survival analysis.)
A.1 PreProcess and PreProcess’
The PreProcess process (used by LSM in Fig 3) applies various standard “normalizations” and simple “corrections” to the training data—both raw clinical features, and gene expression values. For the clinical features XCF, PreProcess produces a normalized dataset without any missing values, ready for the subsequent steps in the pipeline—see the orange-lines in Fig 3. This uses the standard steps: (1) impute missing real (resp., categorical) values for a feature with the mean (resp., mode) of the observed values for that feature; and (2) binarizing each categorical variable (aka “one-hot encoding”)—e.g., we encoded the 12-valued “Histological type” using twelve bits: e.g., Invasive Tumor is [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]. For the gene expression data XGE, PreProcess applies the following steps: (1) As we want to deal with the log of the initial gene expression value, we first log2-transformed the data, if necessary. (Below we use “gene expression” to refer to this transformed value.) (2) Then translate all expression values into their “common z-scores”. It first computes the (common) mean and standard deviation over all the genes from the entire XGE dataset: Let e i j be the expression value of probe/gene gi of patient j, then compute the common mean μ ^ = 1 n ∑ i , j e i j (where n = 1,981×49,576 is the total number of entries for METABRIC), and the variance σ ^ 2 = 1 ( n - 1 ) ∑ i , j ( e i j - μ ^ ) 2. We then use the Z-score transformation of each entry: z i j = ( e i j - μ ^ ) σ ^. Notes: (a) this standardization is done prior to dividing the data into train and validation sets. (b) Using z-scores based on only a single gene would not be able to identify which genes did not vary much, as (after this transform) all genes would vary the same amount. (3) PreProcess then removes the genes that do not vary much, removing a gene i iff its z i j values are all within the first standard deviation—i.e., if ∀ j z i j ∈ [ - 1 , + 1 ].
This filtering process is motivated by the assumption that any gene whose expressions does not change much across multiple patients, is unlikely to be directly related to the disease, while the genes that contribute, typically have significant variations in their expression levels across patients. While this filtering procedure is unsupervised, we anticipated that it would retain the genes that have the most prognostic ability. This was confirmed as we found that this process does not eliminate any of the “top” 100 probes in the METABRIC data (these are the probes with the 100 highest concordance values); see [13, Table 1]. In METABRIC, this filtering procedure eliminates 27,131 of the original 49,576 probes, leaving only 22,445 probes—i.e., a ≈54.7% reduction in the number of features.
Later, the performance system USM will need to apply these pre-processing steps to a novel instance—in particular, for each clinical feature, it will need to know the mean (or median) value, for imputation. Similarly, it will need to transform each gene expression values into an integer; this requires knowing the global mean μ ^ and σ ^ 2 values to produce the z-values { z i j } values, We include all of these values in the Ω term, which is output by the PreProcess subroutine. This Ω is one of the inputs to the PreProcess’ process, within USM, which applies these pre-processing steps to a novel instance encoded by its xGE and xCF features. Note finally that neither PreProcess nor PreProcess’ use the labels (survival times).
A.2 ComputeBasis[ρ=dLDA]
As shown by the blue lines in Fig 3, the ComputeBasis process takes as input a pre-processed version of the labeled dataset that was input to LSM: the PreProcessed gene expression data X G E ′ and clinical features X C F ′, with their associated labels (Lbl). This process produces the “basis” set, of type ρ. This subappendix will focus on ρ = dLDA.
Algorithm 1 ComputeBasis[ρ=dLDA] algorithm
1: function ComputeBasis[ρ=dLDA](X G E ′ , X C F ′ , L b l) ⊳ Returns a set of c_topics
2: X G E ″ ≔ Discretize(X G E ′)
3: for t in {Enc_A, Enc_B} do
4: GEt ≔ Encode-GE(t, X G E ″)
5: [GEt,1, GEt,2, …, GEt,5] ≔ Partition(GEt)
6: % Notation: GEt,−i = GEt − GEt,i
7: % X C E , i ′ = clinical features;
8: for K in (5, 10, 15, …, 150) do
9: for i = 1 : 5 do
10: % Find LDA “basis set” (set of c_topics)
11: β ¯ t , K , i ≔ Compute_dLDA(GEt,−i, K)
12:
13: % Project the hold-out set onto this basis set,
14: % encoding each patient as a K-tuple of values
15: GE_Topict,K,i ≔ Use_dLDA(GEt,i, β ¯ t , K , i)
16:
17: % Learn a Cox model for this encoding, value of K, and fold i
18: % using both c_topics and the clinical features
19: % LearnCox & PredictCox are based on [26]
20: wt,K,i ≔ LearnCox([ G E _ T o p i c t , K , i , X C F , i ′ ] , L b l i)
21:
22: % Evaluate model on the hold out set
23: % Using evaluation measures concordance and likelihood
24: ct,K,i ≔ Concordance(PredictCox(w t , K , i , [ G E t , i , X C F , i ′ ]), Lbli)
25: lt,K,i ≔ Average{Likelihood(β ¯ t , K , i, GEt,i)}
26:
27: c ¯ t , K ≔ Average{ct,K,i}
28: l ¯ t , K ≔ Average{lt,K,i}
29:
30: % Find t* (encoding scheme), with the highest concordance
31: t* ≔ a r gmax t { c ¯ t , K }
32: % Selecting K*
33: K ^ = a r gmax K ( l ¯ t * , K )
34: K * = argmax K s . t . l ¯ t * , K ^ - σ ^ ( l t * , K ^ ) ≤ l ¯ t * , K { c ¯ t * , K } % Break ties giving priority to small K’s
35:
36: return Compute_dLDA(GEt*, K*)
As shown at the bottom of Algorithm 4, ComputeBasis returns the results of Compute_dLDA(GEt*, K*), which are a set of K* c_topic–distributions, based on its input GEt*, which encodes the gene expression values (X G E ′) as non-negative integers. This means ComputeBasis must first (1) transform its input real-valued gene expression values X G E ′ into non-negative integers GEt*, and (2) determine the appropriate number of c_topics K * ∈ Z +. Task (1) has two parts: (1a) Line 2 first discretizes the real-valued XGE into (positive and negative) integers Z. (1b) The next part of the subroutine determines the best way to transform those integers into non-negative integers Z ≥ 0. Below we describe these three steps, followed by (3) a description of Compute_dLDA.
(1a) Discretize subroutine
Recall first that the PreProcess routine already translated the real-valued XGE gene expression values into z-scores X G E ′, and excluded every genes whose values here all were in (−1, +1). To simplify the notation, view X G E ′ = { z i j }. The Discretize routine first assigns each z i j ∈ ( - 1 , 1 ) to 0. For the remaining “non-trivial” standardized gene expression values z i j’s (outside the first standard deviation) of each gene: Letting Z i + = { z i j | z i j ≥ 1 } be the non-trivial positive values, we divide Δ i + = max { Z i + } - min { Z i + } into 10 regions, of size Δ i + / 10 each and identify each positive z i j with the index ∈{ 1, 2, …, 10} of the appropriate bin. We similarly divide the non-trivial negative expression values Z i - = { z i j | z i j ≤ - 1 } into their 10 bins, based on Δ i - = max { Z i - } - min { Z i - } and each negative z i j is identified with the index ∈{ -1, -2, …, -10} of the appropriate bin; see Fig 4. (Of course, the actual divisions are specific to the different genes; this figure just shows a generic split.) In general, we let b i j be the integer bin index associated with gene gi for subject j.
Notes: (1) We initially tried to discretize the values into the bins associated with the standard deviation, in general. However, we found this did not work well. (2) ComputeBasis also returns these { Δ i + , Δ i - } i values, as part of the encoding –i.e., along with β ¯ G E—and UseBasis will later use this information to discretize its real-valued gene expression input. We did not show this detail, to avoid overcluttering the text and images.
(1b) Transform to non-negative integers
While Discretize mapped each gene expression value z i j to an integer b i j, the Compute_dLDA routine requires non-negative values. Section 4.1.1 discussed two ways to deal with this: using either encoding Enc_A versus Enc_B; see bottom of Fig 4. ComputeBasis uses internal cross-validation to determine which of these is best, t*, along with the number K* of c_topics; see below. (In general, we will let GEt refer to the t-encoding of the gene expression values.)
(2) Finding optimal K*, t*
As noted, the Compute_dLDA algorithm also needs to know the number of c_topics K* to produce. Rather than guess an arbitrary value, ComputeBasis instead uses (internal) cross-validation to find the best value for K, over the range K ∈ {5, 10, 15, …, 150}. For each technique t ∈ {Enc_A, Enc_B} and each of the 30 values of K, ComputeBasis first computes the dLDA model over the training set, using Compute_dLDA (for that encoding and number of c_topics); it then used these and the (preprocessed) clinical features (X C F ′) as covariates, along with the survival labels Lbl, to learn a Cox model [26]—see Algorithm 1, lines 9–20. Note it does this in-fold—using 4/5 of the training set to learn the dLDA c_topics and the Cox model, which is evaluated by computing the concordance (based on this learned model) on the remaining 1/5 (line 24).
As noted above, we need to determine (1b) which is the best discretization t*, Enc_A or Enc_B, and (2) what is the appropriate K* for that technique. To answer the first question, ComputeBasis picked the encoding technique t* that gave the highest cross-validation concordance from all the (30 × 2) combinations (see Algorithm 1, line 31). Secondly, after deciding on a encoding scheme, it sets K ^ to be the value with the largest (cross-validation) likelihood, then selects the set of K’s that are smaller than K ^ and whose cross-validation likelihood scores are within the first standard deviation of the K ^’s; see Algorithm 1, line 33. From these candidates, it selected the K* that gives essentially the highest concordance (see Algorithm 1, line 34). Empirically, we found that the internal cross-validation concordance scores was fairly flat over the critical region—e.g., K ∈ {20, ‥, 35} for METABRIC—before dipping to smaller values for larger value of K, presumably due to overfitting. This is why we are confident that the upper limit, of 150 topics, is sufficient. Once it finds the best K* and the encoding technique t*, ComputeBasis then runs Compute_dLDA on the t*-encoded (preprocessed) training gene expression data GEt*, seeking K* c_topics; this is β ¯ G E “basis”. This routine also returns the { Δ i ± } values used to produce the discretized values, GEt.
(3) Compute_dLDA
The Compute_dLDA(GEt, K) process, based on Blei et al. [17], computes K c_topics, based on the preprocessed, discretized gene expression data GEt, as well as the number of latent c_topics K; it then returns K c_topics–distributions, each ≈50,000-parameters of the Dirichlet distribution (for METABRIC), corresponding to a line of the β ¯ G E shown in Fig 5. (Each point here corresponds to its estimate of the posterior βGE, conditioned on the observed gene expression values.) This routine also uses the Dirichlet prior for the patient–c_topics distribution; here we used the symmetric Dirichlet(α, …, α) for some α ∈ ℜ>0. (As there are K c_topics; we view this as a vector α1K.) We experimented with several values α ∈ {0.01, 0.1, 0.5, 1.0}, but found that the prior did not make much difference, since we allowed the model to estimate the prior internally. We therefore set α = 0.1.
This routines also needs to set the priors for the K different c_topic–gene_expression distributions β G E ( * ) [ i , : ] = [ β G E ( * ) [ i , 1 ] , … , β G E ( * ) [ i , N ] ], for i = 1‥K, each sweeping over the N genes. Here, we use the prior β G E ( * ) [ i , j ] = 1 N + δ where δ ∼ U[0, 1/N2]—i.e., δ is sampled from the uniform distribution over the interval [0, 1/N2]. This LDA learning process [17] uses the data in GEt to compute the posterior distribution {βGE[i,:]}i for each of these K c_topics—revealing GEt’s intrinsic structure. Recall these are just the parameters for Dirichlet distribution; note they must be positive, but do not add up to 1. The Compute_dLDA returns the expected values of the gene expression values drawn from this posterior distribution: β ¯ G E [ i , j ] = β G E [ i , j ] ∑ j ′ β G E [ i , j ′ ]. Here, the probability values for each c_topic β ¯ G E [ i , : ] add up to 1. We will let β ¯ G E = { β ¯ G E [ i , : ] } refer to the entire “matrix”.
A.3 UseBasis[ρ=dLDA]
Once LSM has learned the c_topics (β ¯ G E) for the best K* and best encoding technique t*, we can then compute the c_topic distribution for a new patient (based on her gene expression xGE); see Figs 3 and 6. This will call UseBasis, which in turn runs Use_dLDA (the LDA inference procedure) on the preprocessed gene expression data x G E ′ of the current patient to compute the individual topic contributions for this patient [17]. The inference procedure determines the posterior distribution of the patient-c_topic Dirichlet distribution Θ ( x G E ′ ) = [ θ 1 ( x G E ′ ) , θ 2 ( x G E ′ ) , … , θ K * ( x G E ′ ) ] ∈ ℜ + K *, where each θ j ( x G E ′ ) ∈ ℜ + quantifies how much of this patient’s gene expression is from the jth c_topic (using the posterior mean probabilities of the c_topics, β ¯ G E).
This process reduces the ≈20 000-dimension gene expression values to a very small K*-dimensional c_topics representation—e.g., L* = 30. These low-dimensional feature vectors are then used in the survival prediction algorithms to predict survival times/risk.
A.4 ComputeBasis[ρ=PCA] and UseBasis[ρ=PCA]
The previous subappendix described one way to reduce the dimensionality of the data—to transform each patient’s 20,000-tuple to a more manageable K-tuple—there based on topic modeling ideas. There have been many other feature selection methods proposed for survival prediction using gene expression data, such as hierarchical clustering, univariate gene selection, supervised PCA, penalized Cox regression and tree-based ensemble methods [34]. Some of these techniques first apply a procedure to reduce the dimensionality of the data, based on feature selection, feature extraction or a combination of both, while others, such as random survival forests [9] and L1-penalized Cox [35], include internal feature selection. As we wanted to compare our dLDA approach to other dimensionality reduction techniques, we chose an extension to the principle component analysis called supervised principal component analysis (SuperPC) [36], instead of other regularization techniques.
This algorithm first calculates the univariate Cox score statistic of each individual gene against the survival time, then retains just the subset of genes whose score exceeds a threshold, determined by internal cross-validation. Then it computes PCA on the dataset containing only those selected genes, then projects each patient onto the first one (or two) components. The main disadvantage of the SuperPC algorithm is that the individual genes selected from the univariate selection process might not perform the best in a multivariate (final) model, perhaps because many of these top-ranked genes may be highly correlated with one another –i.e., it would be better having a more “diverse” set of genes [34, 37]. Instead, we use a variant, called SuperPC+, that initially applies PCA on the normalized gene expression data after the constant genes are removed; see PreProcessin Appendix A.1). The PCA transformation projects the initial “raw” features into a different space, which then can be used to select the top components based on the univariate Cox regression. Note this SuperPC+ is (still) computationally efficient, as it is based on PCA, which is efficient: Even though gene expression data is high dimensional (p ≫ n, where p is the number of genes and n is the number of instances), the rank of the GE matrix will be (at most) min{p, n} = n. Therefore, PCA can be performed without many computational restraints on the whole gene expression dataset, as here the PCA time complexity is O(n3). After performing PCA on the GE dataset, we can then identify the most important principal components by computing a Cox score statistic for the univariate association between each principal component and the survival time. In our experiments, we select the threshold η for the p-value of the Cox score by internal cross-validation (wrt concordance), and retained all PCs having a p-value lower than this η—finding η = 5e-4 for the METABRIC dataset and η = 5e-2 for KIPAN. These selected PC components form the basis set BGE[ρ = PCA].
UseBasis[ρ=PCA] is simply the projection of the gene expression data into the chosen PC components. This gives us a low dimensional feature representation of the original gene expression data to feed into the survival prediction algorithms.
A.5 Cox models: LearnModel[Ψ=Cox], LearnModel[Ψ=RCox]
The Cox regression model’s [26] hazard function over time t, for an individual described by x, is the product of two components:
R ( y j ) is the risk set at time yj, which are the indices of individuals who are alive and not censored before time yj
[xi, yi, δi] describes the ith subject, where
xi = vector of covariates
yi = (survival or censor) time
δi = censor bit (0 for censored; otherwise 1)
N—total number of patients in the cohort
W—coefficients (to be learned)
Note that only the uncensored likelihoods contribute directly, since for censored instances δi = 0. Therefore the censored observations are only utilized in the denominator when summed over the instances in a risk set. In essence, the partial likelihood only uses the patient’s death times to rank them in the ascending order to find the risk sets and does not use the exact times explicitly [32]. Hence, the coefficients estimated by maximizing the partial likelihood depend only on the ordering of the patient’s death times and the covariates, allowing for an implicit optimization for good concordance of the risk score. An in-depth study on the Cox proportional hazard model has revealed that the partial likelihood proposed by [26] is approximately equivalent to optimizing concordance [32].
There are several extensions of the basic Cox proportional hazards model: some extend the initial model estimating the baseline hazard and others are based on the regularization methods imposed on the coefficients (W). Generally, regularization based on LASSO, ridge penalty or the elastic-net regularization (which allows both L1 and L2 penalties) are adopted to reduce overfitting. In our work, we use the glmnet R package [33] with ridge penalty (by setting α = 0 in the glmnet function); here called RCox. We selected ridge penalty based on the internal cross validation. We found that concordance results using models with ridge penalty were better than those having no regularization (LASSO, elastic-net).
B Foundations
B.1 Evaluation: Concordance Index (CI)
This “CI” evaluation applies to any model that assigns a real number—a “risk score”—to each instance f(⋅). It considers all pairs of “comparable” instances, and determines which is predicted (by the risk model f(⋅)) to die first, and also who actually died first. CI is the proportion (probability) of these pairs of instances whose actual pair-wise survival ordering, matches the predicted ordering, with respect to f(⋅):
B.2 Evaluation: D-calibration
The concordance index is a discriminatory measure, which is relevant, for example, when deciding which patient with liver failure will die first without a transplant. By contrast, calibration measures the deviation between the observed and the predicted event time distributions. While this is not meaningful if we only have a risk score (e.g., as produced by the basic Cox Proportional Hazard function), this deviation can be computed for a survival distribution, like ones produced by the MTLR survival prediction tool, or the Cox+KF system—which extends the standard Cox model by using the Kalbfleisch-Prentice estimator to produce the baseline hazard function h0(x) in Eq 3; see [11]. In general, this calibration involves computing the difference between the predicted versus observed probabilities in various subgroups—e.g., if the predicted probability of surviving at least t = 2576 days is 0.75 for some subgroup, then we expect to observe around 75% of these patients to be alive at this time t.
We consider a novel measure of the calibration of such survival curves, called D-calibration (“D” for “Distribution”) [16]. To motivate this, consider a standard Kaplan-Meier (KM) [8] plot shown in Fig 9, which plots the set of points (t, KM(t))—i.e., it predicts that the KM(t) fraction of patients will be alive at each time t ≥ 0. Hence, the point (6184 days, 0.50) means the median survival time of the cohort is 6184 days; see Fig 9(solid line). We will use KM−1(p) to be the time associated with the probability p—technically, KM−1(p) is the earliest time when the KM curve hits p; hence KM−1(p) (0.5) = 6184 days. If this plot is D-calibrated, then around 50% of the patients (from a hold-out set, not used to produce the KM curve) will be alive at this median time. So if we (for now) ignore censored patients, and let di be the time when the ith patient died, consider the n values of {KM(di)}i=1‥n. Here, we expect KM(di) > 0.5 for 1/2 of the patients. Similarly, as the curve includes (2576 days, 0.75) and (8941 days, 0.25), then we expect 75% to be alive at 2576 days, and 25% at 8941 days; see Fig 9. Collectively, this means we expect 25% of the patients to die between KM−1 (1.0) = 0 days and KM−1 (0.75) = 2576 days, and another 25% between KM−1 (0.75) and KM−1 (0.5), etc. These are the predictions; we can also check, to see how many people actually died in each interval: in the first quartile (between 0 and 2576 days), in the second (between 2576 and 6184 days), in the third (between 6184 and 8941 days), and the fourth (after 8941 days). If the KM plot is “correct”—i.e., is D-calibrated—then we expect 1/4 of the patients will die in each of these 4 intervals. The argument above means we expect 1/4 of the {KM(di)} values to be in the interval [0, 0.25], and another quarter to be in [0.25, 0.5], etc. Stated more precisely,
A single KM curve is designed to represent a cohort of many patients. The MTLR system, however, computes a different survival curve for each patient—call it Pri(·) = PrW (· | xi) (from Eq 1). But the same ideas still apply: Each of these patients has a median predicted survival time—the time P r i - 1 ( 0 . 5 ) where its Pri(⋅) curve crosses 0.50.
By the same argument suggested above, we expect (for a good model W) that 1/2 of patients will die before their respective median survival time—d i ≤ P r i - 1 ( 0 . 5 ); that is, |{i: Pri(di) ≤ 0.5}| ≈ n/2. Continuing the arguments from above, we therefore expect the obvious analogue to Eq 6:
We can now test whether a model is D-calibrated by using the Hosmer-Lemeshow (HL) [30] goodness-of-fit test, which compares the difference between the predicted and observed events in the event subgroups:
Notes: (1) This evaluation criterion only applies to models that produce survival distributions, which means it directly applies to the MTLR models. For the Cox and RCox models, we used the Kalbfleisch-Prentice baseline hazard estimator [11] to produce personalized survival curves. (2) To provide more precise evaluation, rather than using 4 bins (quantiles), we mapped the Pri(di) probabilities into 20 bins: [0, 0.05); [0.05, 0.1), …, [0.95, 1.0]. (3) This analysis deals only with uncensored data; Haider et al. [16] discusses how to cope with censored data.
C Additional results
This appendix presents additional results: First, Appendix C.1 evaluates the Latent process decomposition (LPD) method, then Appendix C.2 provides D-calibration results of our various models.
C.1 Latent process decomposition (LPD) for microarray feature extraction
Rogers et al. [19] introduced LPD as a topic model adaptation for microarray data. We experimented with LPD (on METABRIC data) to derive genetic features and used them along with the clinical features for comparison. We used internal cross-validation for LPD to find the optimal number of latent processes for the METABRIC data—and found that 10 was best.
We then used the model based on these 10 latent process; the resulting concordance results, on the hold-out dataset, was 0.6915 (Cox), 0.6077 (RCox) and 0.6995 (MTLR). Comparing this to the “B” and “C” rows of Table 2, we see that our dLDA approach performs better than this complex adaptation of the LDA model for microarray data, for the survival prediction task—i.e., dLDA produces better features from the gene expression data.
There are two other reasons to prefer our dLDA-approach: (1) LPD has large time and memory requirements. (2) Moreover as our dLDA directly uses the LDA model, it can utilize all available off-the-shelf implementations, across several technology platforms with efficient and scalable implementation [38].
C.2 D-calibration results
Table 3 shows the D-calibration results for all of the domain-independent experiments we ran—i.e., excluding the “E” and “F” rows from Table 2, which used features that were specific to breast cancer. We see that the results were D-calibrated (i.e., had a HL p-value > 0.05) in all 12 situations, for METABRIC and KIPAN—for all feature groups {A, B, C, D}, and all 3 learning algorithms {Cox, RCox, MTLR}. We note that we found that Cox failed this test on other datasets, including BRCA.
Zdroje
1. Stewart B, Wild CP, et al. World cancer report 2014. Health. 2017.
2. Van’t Veer LJ, Dai H, Van De Vijver MJ, He YD, Hart AA, Mao M, et al. Gene expression profiling predicts clinical outcome of breast cancer. nature. 2002;415(6871):530–536. doi: 10.1038/415530a
3. Margolin AA, Bilal E, Huang E, Norman TC, Ottestad L, Mecham BH, et al. Systematic analysis of challenge-driven improvements in molecular prognostic models for breast cancer. Science translational medicine. 2013;5(181):181re1–181re1. doi: 10.1126/scitranslmed.3006112 23596205
4. Parker JS, Mullins M, Cheang MC, Leung S, Voduc D, Vickery T, et al. Supervised risk predictor of breast cancer based on intrinsic subtypes. Journal of clinical oncology. 2009;27(8):1160–1167. doi: 10.1200/JCO.2008.18.1370 19204204
5. Naderi A, Teschendorff A, Barbosa-Morais N, Pinder S, Green A, Powe D, et al. A gene-expression signature to predict survival in breast cancer across independent data sets. Oncogene. 2007;26(10):1507–1516. doi: 10.1038/sj.onc.1209920 16936776
6. Beer DG, Kardia SL, Huang CC, Giordano TJ, Levin AM, Misek DE, et al. Gene-expression profiles predict survival of patients with lung adenocarcinoma. Nature medicine. 2002;8(8):816–824. doi: 10.1038/nm733 12118244
7. Curtis C, Shah SP, Chin SF, Turashvili G, Rueda OM, Dunning MJ, et al. The genomic and transcriptomic architecture of 2,000 breast tumours reveals novel subgroups. Nature. 2012;486(7403):346–352. doi: 10.1038/nature10983 22522925
8. Altman DG. Practical statistics for medical research. CRC; 1990.
9. Ishwaran H, Kogalur UB, Blackstone EH, Lauer MS. Random Survival Forests. The Annals of Applied Statistics. 2008;2 : 841–860. doi: 10.1214/08-AOAS169
10. Khan FM, Zubek VB. Support vector regression for censored data (SVRc): a novel tool for survival analysis. In: 2008 Eighth IEEE International Conference on Data Mining. IEEE; 2008. p. 863–868.
11. Kalbfleisch JD, Prentice RL. The statistical analysis of failure time data. vol. 360. John Wiley & Sons; 2011.
12. Guinney J, Wang T, Laajala TD, Winner KK, Bare JC, Neto EC, et al. Prediction of overall survival for patients with metastatic castration-resistant prostate cancer: development of a prognostic model through a crowdsourced challenge with open clinical trial data. The Lancet Oncology. 2016. doi: 10.1016/S1470-2045(16)30560-5 27864015
13. Cheng WY, Yang THO, Anastassiou D. Development of a prognostic model for breast cancer survival in an open challenge environment. Science translational medicine. 2013;5(181):181ra50–181ra50. doi: 10.1126/scitranslmed.3005974 23596202
14. Yu CN, Greiner R, Lin HC, Baracos V. Learning Patient-Specific Cancer Survival Distributions as a Sequence of Dependent Regressors. In: Neural Information Processing Systems (NIPS); 2011. p. 1845–1853.
15. Andres A, Montano-Loza A, Greiner R, Uhlich M, Jin P, Hoehn B, et al. A novel learning algorithm to predict individual survival after liver transplantation for primary sclerosing cholangitis. PLoS One. 2018. doi: 10.1371/journal.pone.0193523
16. Haider H, Hoehn B, Davis S, Greiner R. Effective Ways to Build and Evaluate Individual Survival Distributions. arXiv preprint arXiv:181111347. 2018.
17. Blei DM, Ng AY, Jordan MI. Latent dirichlet allocation. the Journal of machine Learning research. 2003;3 : 993–1022.
18. Deshwar AG, Vembu S, Yung CK, Jang GH, Stein L, Morris Q, et al. PhyloWGS: reconstructing subclonal composition and evolution from whole-genome sequencing of tumors. Genome Biol. 2015;16 : 35. doi: 10.1186/s13059-015-0602-8 25786235
19. Rogers S, Girolami M, Campbell C, Breitling R. The latent process decomposition of cDNA microarray data sets. IEEE/ACM Transactions on Computational Biology and Bioinformatics (TCBB). 2005;2(2):143–156. doi: 10.1109/TCBB.2005.29
20. Masada T, Hamada T, Shibata Y, Oguri K. Bayesian multi-topic microarray analysis with hyperparameter reestimation. In: International Conference on Advanced Data Mining and Applications. Springer; 2009. p. 253–264.
21. Bicego M, Lovato P, Perina A, Fasoli M, Delledonne M, Pezzotti M, et al. Investigating topic models’ capabilities in expression microarray data classification. IEEE/ACM Transactions on Computational Biology and Bioinformatics (TCBB). 2012;9(6):1831–1836. doi: 10.1109/TCBB.2012.121
22. Liu L, Tang L, Dong W, Yao S, Zhou W. An overview of topic modeling and its current applications in bioinformatics. SpringerPlus. 2016;5(1):1608. doi: 10.1186/s40064-016-3252-8 27652181
23. Hofmann T. Unsupervised learning by probabilistic latent semantic analysis. Machine learning. 2001;42(1-2):177–196. doi: 10.1023/A:1007617005950
24. Dawson JA, Kendziorski C. Survival-supervised latent Dirichlet allocation models for genomic analysis of time-to-event outcomes. arXiv preprint arXiv:12025999. 2012.
25. McAuliffe JD, Blei DM. Supervised topic models. In: Advances in neural information processing systems; 2008. p. 121–128.
26. Cox DR. Regression Models and Life-Tables. Journal of the Royal Statistical Society Series B (Methodological). 1972;34(2):187–220. doi: 10.1111/j.2517-6161.1972.tb00899.x
27. McCullagh P, Nelder JA. Generalized linear models. vol. 37. CRC; 1989.
28. Wolfinger RD, Gibson G, Wolfinger ED, Bennett L, Hamadeh H, Bushel P, et al. Assessing gene significance from cDNA microarray expression data via mixed models. Journal of computational biology. 2001;8(6):625–637. doi: 10.1089/106652701753307520 11747616
29. Analysis Overview for Pan-kidney cohort (KICH+KIRC+KIRP) (Primary solid tumor cohort). Broad Institute TCGA Genome Data Analysis Center (2016). 28 January 2016.
30. Hosmer DW Jr, Lemeshow S, Sturdivant RX. Applied logistic regression. vol. 398. John Wiley & Sons; 2013.
31. Yousefi S, Amrollahi F, Amgad M, Dong C, Lewis JE, Song C, et al. Predicting clinical outcomes from large scale cancer genomic profiles with deep survival models. Scientific Reports. 2017;7(1):11707. doi: 10.1038/s41598-017-11817-6 28916782
32. Steck H, Krishnapuram B, Dehing-oberije C, Lambin P, Raykar VC. On ranking in survival analysis: Bounds on the concordance index. In: Advances in neural information processing systems; 2008. p. 1209–1216.
33. Simon N, Friedman J, Hastie T, Tibshirani R. Regularization Paths for Cox’s Proportional Hazards Model via Coordinate Descent. Journal of Statistical Software. 2011;39(5):1–13. doi: 10.18637/jss.v039.i05 27065756
34. Van Wieringen WN, Kun D, Hampel R, Boulesteix AL. Survival prediction using gene expression data: a review and comparison. Computational statistics & data analysis. 2009;53(5):1590–1603. doi: 10.1016/j.csda.2008.05.021
35. Goeman JJ. L1 penalized estimation in the Cox proportional hazards model. Biometrical journal. 2010;52(1):70–84. doi: 10.1002/bimj.200900028 19937997
36. Bair E, Tibshirani R. Semi-supervised methods to predict patient survival from gene expression data. PLoS Biol. 2004;2(4):e108. doi: 10.1371/journal.pbio.0020108 15094809
37. Ding C, Peng H. Minimum redundancy feature selection from microarray gene expression data. Journal of bioinformatics and computational biology. 2005;3(02):185–205. doi: 10.1142/S0219720005001004 15852500
38. Hoffman M, Bach FR, Blei DM. Online learning for latent dirichlet allocation. In: advances in neural information processing systems; 2010. p. 856–864.
39. http://firebrowse.org/?cohort=KIPAN&downloaddialog=true
40. https://www.synapse.org/#!Synapse:syn1688369/wiki/27311
41. https://github.com/blei-lab/lda-c
Článek vyšel v časopise
PLOS One
2019 Číslo 11
- Masturbační chování žen v ČR − dotazníková studie
- Máj pod bílým pláštěm aneb když mezi směnami vykvete láska
- Bezpečnost dlouhodobé terapie osteoporózy – aktuální data
- Bizarní technologické novinky v medicíně − odvrácená strana pokroku, nebo realita blízké budoucnosti?
- Umělá inteligence v logopedii – český projekt umožní přesnější diagnostiku i cílenou terapii dysartrie
-
Všechny články tohoto čísla
- Wild Steps in a semi-wild setting? Habitat selection and behavior of European bison reintroduced to an enclosure in an anthropogenic landscape
- The effect of facial expression on contrast sensitivity: A behavioural investigation and extension of Hedger, Adams & Garner (2015)
- Non-communicable diseases risk factors and their determinants: A cross-sectional state-wide STEPS survey, Haryana, North India
- Genotype-matched Newcastle disease virus vaccine confers improved protection against genotype XII challenge: The importance of cytoplasmic tails in viral replication and vaccine design
- Combined transcriptomics and proteomics forecast analysis for potential genes regulating the Columbian plumage color in chickens
- Persistence of traditional and emergence of new structural drivers and factors for the HIV epidemic in rural Uganda; A qualitative study
- Competency assessment of the medical interns and nurses and documenting prevailing practices to provide family planning services in teaching hospitals in three states of India
- Choice of birth place among antenatal clinic attendees in rural mission hospitals in Ebonyi State, South-East Nigeria
- Dual pathway for metabolic engineering of Escherichia coli to produce the highly valuable hydroxytyrosol
- Genetic and genomic analyses underpin the feasibility of concomitant genetic improvement of milk yield and mastitis resistance in dairy sheep
- Long-term exposure to daily ethanol injections in DBA/2J and Swiss mice: Lessons for the interpretation of ethanol sensitization
- Taxonomic and functional anuran beta diversity of a subtropical metacommunity respond differentially to environmental and spatial predictors
- A simple way to improve a conventional A/O-MBR for high simultaneous carbon and nutrient removal from synthetic municipal wastewater
- Knowledge and awareness of cervical cancer in Southwestern Ethiopia is lacking: A descriptive analysis
- Flat electrode contacts for vagus nerve stimulation
- Circulating Th17.1 cells as candidate for the prediction of therapeutic response to abatacept in patients with rheumatoid arthritis: An exploratory research
- Prevalence and socioeconomic determinants of development delay among children in Ceará, Brazil: A population-based study
- Characterizing macroinvertebrate community composition and abundance in freshwater tidal wetlands of the Sacramento-San Joaquin Delta
- A randomized controlled trial comparing isosorbide dinitrate-oxytocin versus misoprostol-oxytocin at management of foetal intrauterine death
- Hello, is that me you are looking for? A re-examination of the role of the DMN in social and self relevant aspects of off-task thought
- Lactobacillus rhamnosus Lcr35 as an effective treatment for preventing Candida albicans infection in the invertebrate model Caenorhabditis elegans: First mechanistic insights
- Use of latent class analysis to identify multimorbidity patterns and associated factors in Korean adults aged 50 years and older
- A study of psychological pain in substance use disorder and its relationship to treatment outcome
- Effects of artificially introduced Enterococcus faecalis strains in experimental necrotizing enterocolitis
- Treatment-seeking for vaginal fistula in sub-Saharan Africa
- Dissemination and stakeholder engagement practices among dissemination & implementation scientists: Results from an online survey
- Comparative analysis of the accelerated aged seed transcriptome profiles of two maize chromosome segment substitution lines
- Transactional sex among men who have sex with men participating in the CohMSM prospective cohort study in West Africa
- Addiction of mesenchymal phenotypes on the FGF/FGFR axis in oral squamous cell carcinoma cells
- Left parietal tACS at alpha frequency induces a shift of visuospatial attention
- Microtranscriptome analysis of sugarcane cultivars in response to aluminum stress
- The role of alien species on plant-floral visitor network structure in invaded communities
- Predictive factors for unfavourable treatment in MDR-TB and XDR-TB patients in Rio de Janeiro State, Brazil, 2000-2016
- Agricultural impacts on streams near Nitrate Vulnerable Zones: A case study in the Ebro basin, Northern Spain
- Development of a multi-locus typing scheme for an Enterobacteriaceae linear plasmid that mediates inter-species transfer of flagella
- The roles of MRI-based prostate volume and associated zone-adjusted prostate-specific antigen concentrations in predicting prostate cancer and high-risk prostate cancer
- Re-modeling of foliar membrane lipids in a seagrass allows for growth in phosphorus-deplete conditions
- Effect of sampling frequency on fractal fluctuations during treadmill walking
- Effect of calcium intake and the dietary cation-anion difference during early lactation on the bone mobilization dynamics throughout lactation in dairy cows
- Facilitators and barriers to linkage to HIV care and treatment among female sex workers in a community-based HIV prevention intervention in Tanzania: A qualitative study
- Tuberculosis treatment outcome: The case of women in Ethiopia and China, ten-years retrospective cohort study
- Protein:Protein interactions in the cytoplasmic membrane apparently influencing sugar transport and phosphorylation activities of the e. coli phosphotransferase system
- A digital collection of rare and endangered lemurs and other primates from the Duke Lemur Center
- Computational fluid dynamics simulation of changes in the morphology and airflow dynamics of the upper airways in OSAHS patients after treatment with oral appliances
- Resistome metagenomics from plate to farm: The resistome and microbial composition during food waste feeding and composting on a Vermont poultry farm
- Lower limb chronic edema management program: Perspectives of disengaged patients on challenges, enablers and barriers to program attendance and adherence
- Discovery of powdery mildew resistance gene candidates from Aegilops biuncialis chromosome 2Mb based on transcriptome sequencing
- Modelling vegetation understory cover using LiDAR metrics
- Assessing the impact of the “one-child policy” in China: A synthetic control approach
- CRISPR-Cas9 modified bacteriophage for treatment of Staphylococcus aureus induced osteomyelitis and soft tissue infection
- Forecasting type-specific seasonal influenza after 26 weeks in the United States using influenza activities in other countries
- Chronic exercise modulates the cellular immunity and its cannabinoid receptors expression
- Characterization of the diverse plasmid pool harbored by the blaNDM-1-containing Acinetobacter bereziniae HPC229 clinical strain
- What does mitogenomics tell us about the evolutionary history of the Drosophila buzzatii cluster (repleta group)?
- A cell-based evaluation of a non-essential amino acid formulation as a non-bioactive control for activation and stimulation of muscle protein synthesis using ex vivo human serum
- Conjugated linoleic acid as a novel insecticide targeting the agricultural pest Leptinotarsa decemlineata
- Relationship between pattern electroretinogram and optic disc morphology in glaucoma
- Depicting changes in land surface cover at Al-Hassa oasis of Saudi Arabia using remote sensing and GIS techniques
- Land snail dispersal, abundance and diversity on green roofs
- Fanconi-BRCA pathway mutations in childhood T-cell acute lymphoblastic leukemia
- Mesenchymal Stem/ Stromal Cells metabolomic and bioactive factors profiles: A comparative analysis on the umbilical cord and dental pulp derived Stem/ Stromal Cells secretome
- The association between caesarean section delivery and later life obesity in 21-24 year olds in an Urban South African birth cohort
- Diagnosis and treatment of acute respiratory illness in children under five in primary care in low-, middle-, and high-income countries: A descriptive FRESH AIR study
- Quality control of cervical cytology using a 3-type HPV mRNA test increases screening program sensitivity of cervical intraepithelial neoplasia grade 2+ in young Norwegian women—A cohort study
- Toxicity and sublethal effects of two plant allelochemicals on the demographical traits of cotton aphid, Aphis gossypii Glover (Hemiptera: Aphididae)
- Protocol development for discovery of angiogenesis inhibitors via automated methods using zebrafish
- Friends with malefit. The effects of keeping dogs and cats, sustaining animal-related injuries and Toxoplasma infection on health and quality of life
- Trueness of digital intraoral impression in reproducing multiple implant position
- Comparison of drug safety data obtained from the monitoring system, literature, and social media: An empirical proof from a Chinese patent medicine
- Norm values and psychometric properties of the short version of the Trier Inventory for Chronic Stress (TICS) in a representative German sample
- Maternal health and birth outcomes in a South African birth cohort study
- Structural characterization of scorpion peptides and their bactericidal activity against clinical isolates of multidrug-resistant bacteria
- Molecular evolution of genes encoding allergen proteins in the peanuts genus Arachis: Structural and functional implications
- Structural characterization of the saxitoxin-targeting APTSTX1 aptamer using optical tweezers and molecular dynamics simulations
- Residential household yard care practices along urban-exurban gradients in six climatically-diverse U.S. metropolitan areas
- Formal comment on “Assessing the impact of the ‘one-child policy’ in China: A synthetic control approach”
- Evaluation of a global spring wheat panel for stripe rust: Resistance loci validation and novel resources identification
- “Big men” in the office: The gender-specific influence of weight upon persuasiveness
- Modification of everyday activities and its association with self-awareness in cognitively diverse older adults
- The effect of bivalve filtration on eDNA-based detection of aquatic organisms
- Selective culture enrichment and sequencing of feces to enhance detection of antimicrobial resistance genes in third-generation cephalosporin resistant Enterobacteriaceae
- Development and validation of rapid environmental DNA (eDNA) detection methods for bog turtle (Glyptemys muhlenbergii)
- Average and time-specific maternal prenatal inflammatory biomarkers and the risk of labor epidural associated fever
- Preference-based measure of health-related quality of life and its determinants in sickle cell disease in Nigeria
- Factors influencing participation dynamics in research for development interventions with multi-stakeholder platforms: A metric approach to studying stakeholder participation
- Contextual variation in young children’s acquisition of social-emotional skills
- Prokaryotic and eukaryotic microbiomes associated with blooms of the ichthyotoxic dinoflagellate Cochlodinium (Margalefidinium) polykrikoides in New York, USA, estuaries
- Reconciling the statistics of spectral reflectance and colour
- Temporal weights in loudness: Investigation of the effects of background noise and sound level
- A global assessment of street-network sprawl
- Correction: KRIT1 Regulates the Homeostasis of Intracellular Reactive Oxygen Species
- Mindfulness-Based Blood Pressure Reduction (MB-BP): Stage 1 single-arm clinical trial
- Measurement of abortion safety using community-based surveys: Findings from three countries
- Behavioral response of naïve and non-naïve deer to wolf urine
- SNARE proteins rescue impaired autophagic flux in Down syndrome
- Negative impact of gestational diabetes mellitus on progress of pelvic floor muscle electromyography activity: Cohort study
- Change in left inferior frontal connectivity with less unexpected harmonic cadence by musical expertise
- Structural mechanism for regulation of DNA binding of BpsR, a Bordetella regulator of biofilm formation, by 6-hydroxynicotinic acid
- How does open innovation lead competitive advantage? A dynamic capability view perspective
- Bull efficiency using dairy genetic traits
- Improved cortical boundary registration for locally distorted fMRI scans
- Extractive single document summarization using binary differential evolution: Optimization of different sentence quality measures
- Measuring the tilt and slant of Chinese handwriting in primary school students: A computerized approach
- Isolation and identification of an isoflavone reducing bacterium from feces from a pregnant horse
- Sugar labeling: How numerical information of sugar content influences healthiness and tastiness expectations
- Optimally adjusted last cluster for prediction based on balancing the bias and variance by bootstrapping
- Quantifying normal and parkinsonian gait features from home movies: Practical application of a deep learning–based 2D pose estimator
- Heterogeneity of porcine bone marrow-derived dendritic cells induced by GM-CSF
- Can visual interpretation of NucliSens graphs reduce the need for repeat viral load testing?
- Manganese levels in infant formula and young child nutritional beverages in the United States and France: Comparison to breast milk and regulations
- Association between metabolic body composition status and risk for impaired renal function: A cross-sectional study
- Toddler skills predict moderate-to-late preterm born children’s cognition and behaviour at 6 years of age
- The bacterial community in potato is recruited from soil and partly inherited across generations
- Infective endocarditis and diabetes mellitus: Results from a single-center study from 1994 to 2017
- Patient satisfaction with HIV services in Vietnam: Status, service models and association with treatment outcome
- Ion concentration polarization (ICP) of proteins at silicon micropillar nanogaps
- The trajectory of patterns of light and sedentary physical activity among females, ages 14-23
- Coadministration of kla peptide with HPRP-A1 to enhance anticancer activity
- Measuring the complexity of directed graphs: A polynomial-based approach
- Estimation of maize evapotraspiration under drought stress - A case study of Huaibei Plain, China
- Publication rates in animal research. Extent and characteristics of published and non-published animal studies followed up at two German university medical centres
- Developmental conservation of microRNA gene localization at the nuclear periphery
- Exploring critical factors of the perceived usefulness of blended learning for higher education students
- Anti-Alzheimer potential, metabolomic profiling and molecular docking of green synthesized silver nanoparticles of Lampranthus coccineus and Malephora lutea aqueous extracts
- Protective effect of Platymiscium floribundum Vog. in tree extract on periodontitis inflammation in rats
- Direct transport vs secondary transfer to level I trauma centers in a French exclusive trauma system: Impact on mortality and determinants of triage on road-traffic victims
- Honey bee microbiome associated with different hive and sample types over a honey production season
- Bacterial communities in the rhizosphere, phyllosphere and endosphere of tomato plants
- Sildenafil citrate long-term treatment effects on cardiovascular reactivity in a SHR experimental model of metabolic syndrome
- Postoperative delirium after lung resection for primary lung cancer: Risk factors, risk scoring system, and prognosis
- The CSF-1-receptor inhibitor, JNJ-40346527 (PRV-6527), reduced inflammatory macrophage recruitment to the intestinal mucosa and suppressed murine T cell mediated colitis
- Using Er:YAG laser to remove lithium disilicate crowns from zirconia implant abutments: An in vitro study
- Antibacterial efficacy of cold atmospheric plasma against Enterococcus faecalis planktonic cultures and biofilms in vitro
- Mechanisms of African swine fever virus pathogenesis and immune evasion inferred from gene expression changes in infected swine macrophages
- Application of ensemble methods to analyse the decline of organochlorine pesticides in relation to the interactions between age, gender and time
- Mitogenomic diversity in Sacred Ibis Mummies sheds light on early Egyptian practices
- Automated detection of a nonperfusion area caused by retinal vein occlusion in optical coherence tomography angiography images using deep learning
- Characterisation of a novel SCCmec VI element harbouring fusC in an emerging Staphylococcus aureus strain from the Arabian Gulf region
- Inducible UCP1 silencing: A lentiviral RNA-interference approach to quantify the contribution of beige fat to energy homeostasis
- iCrotoK-PseAAC: Identify lysine crotonylation sites by blending position relative statistical features according to the Chou’s 5-step rule
- Emerging practices supporting diabetes self-management among food insecure adults and families: A scoping review
- Does aneurysm side influence the infarction side and patients´ outcome after subarachnoid hemorrhage?
- Raising the bar: Recovery ambition for species at risk in Canada and the US
- Management of locally advanced non-small cell lung cancer in the modern era: A national Italian survey on diagnosis, treatment and multidisciplinary approach
- Foraging strategies are maintained despite workforce reduction: A multidisciplinary survey on the pollen collected by a social pollinator
- Incidence of colorectal cancer in Eritrea: Data from the National Health Laboratory, 2011-2017
- Integrated analysis of miRNA landscape and cellular networking pathways in stage-specific prostate cancer
- Evaluation of the reactogenicity, adjuvanticity and antigenicity of LT(R192G) and LT(R192G/L211A) by intradermal immunization in mice
- Role of rhesus macaque IFITM3(2) in simian immunodeficiency virus infection of macaques
- Variation in the LRR region of Pi54 protein alters its interaction with the AvrPi54 protein revealed by in silico analysis
- Evolutionarily conserved susceptibility of the mitochondrial respiratory chain to SDHI pesticides and its consequence on the impact of SDHIs on human cultured cells
- Statistical determination of synergy based on Bliss definition of drugs independence
- The association between sleep problems and academic performance in primary school-aged children: Findings from a Norwegian longitudinal population-based study
- Estimating the national cost burden of in-hospital needlestick injuries among healthcare workers in Japan
- Assessing reliability of intra-tumor heterogeneity estimates from single sample whole exome sequencing data
- Dispersion of Legionella bacteria in atmosphere: A practical source location estimation method
- Integrative proteomic and phosphoproteomic profiling of prostate cell lines
- Treatment paths for localised prostate cancer in Italy: The results of a multidisciplinary, observational, prospective study (Pros-IT CNR)
- Why are undergraduate emerging adults anxious and avoidant in their romantic relationships? The role of family relationships
- Barriers to implementation of emergency obstetric and neonatal care in rural Pakistan
- Testosterone supplementation improves insulin responsiveness in HFD fed male T2DM mice and potentiates insulin signaling in the skeletal muscle and C2C12 myocyte cell line
- Ang-(1-7)/ MAS1 receptor axis inhibits allergic airway inflammation via blockade of Src-mediated EGFR transactivation in a murine model of asthma
- Factors influencing bird-building collisions in the downtown area of a major North American city
- Collembola laterally move biochar particles
- Decreased retinal thickness in patients with Alzheimer’s disease is correlated with disease severity
- Moving system with action sport cameras: 3D kinematics of the walking and running in a large volume
- Factors influencing subclinical atherosclerosis in patients with biopsy-proven nonalcoholic fatty liver disease
- Boundary violations and adolescent drinking: Observational evidence that symbolic boundaries moderate social influence
- Inadequate conflict of interest policies at most French teaching hospitals: A survey and website analysis
- A new resolution function to evaluate tree shape statistics
- Thermostat wars? The roles of gender and thermal comfort negotiations in household energy use behavior
- Patients undergoing surgery for lumbar spinal stenosis experience unique courses of pain and disability: A group-based trajectory analysis
- Lifetime prevalence of intimate partner violence against women in an urban Brazilian city: A cross-sectional survey
- The factors associated with being left-behind children in China: Multilevel analysis with nationally representative data
- High heat tolerance in plants from the Andean highlands: Implications for paramos in a warmer world
- Quantifying pediatric patient need for second- and third-line HIV treatment: A tool for decision-making in resource-limited settings
- Discovery of actionable genetic alterations with targeted panel sequencing in children with relapsed or refractory solid tumors
- Iodine status of non-pregnant women and availability of food vehicles for fortification with iodine in a remote community in Gulf province, Papua New Guinea
- Fibre and extracellular matrix contributions to passive forces in human skeletal muscles: An experimental based constitutive law for numerical modelling of the passive element in the classical Hill-type three element model
- The status of imported Barremian-Bedoulian flint in north-eastern Iberia during the Middle Neolithic. Insights from the variscite mines of Gavà (Barcelona)
- Psychology of personal data donation
- Radiocarbon dating and cultural dynamics across Mongolia’s early pastoral transition
- MARGO (Massively Automated Real-time GUI for Object-tracking), a platform for high-throughput ethology
- Visual detection of time-varying signals: Opposing biases and their timescales
- Results from a World Health Organization pilot of the Basic Emergency Care Course in Sub Saharan Africa
- Scientists’ opinions and attitudes towards citizens’ understanding of science and their role in public engagement activities
- Dacentrurine stegosaurs (Dinosauria): A new specimen of Miragaia longicollum from the Late Jurassic of Portugal resolves taxonomical validity and shows the occurrence of the clade in North America
- Integrated pan-cancer gene expression and drug sensitivity analysis reveals SLFN11 mRNA as a solid tumor biomarker predictive of sensitivity to DNA-damaging chemotherapy
- Does membrane feeding compromise the quality of Aedes aegypti mosquitoes?
- Morphology, phylogeny, and taxonomy of two species of colonial volvocine green algae from Lake Victoria, Tanzania
- Metabolomics profiles associated with HbA1c levels in patients with type 2 diabetes
- Exploring local realities: Perceptions and experiences of healthcare workers on the management and control of drug-resistant tuberculosis in Addis Ababa, Ethiopia
- Sex differences in the treatment and outcome of emergency general surgery
- Comorbidities and costs in HIV patients: A retrospective claims database analysis in Germany
- Barriers to integration of bioinformatics into undergraduate life sciences education: A national study of US life sciences faculty uncover significant barriers to integrating bioinformatics into undergraduate instruction
- Local unemployment changes the springboard effect of low pay: Evidence from England
- A comparison of body composition assessment methods in climbers: Which is better?
- Comparison of an in-house ‘home-brew’ and commercial ViroSeq integrase genotyping assays on HIV-1 subtype C samples
- Elucidating genetic variability and population structure in Venturia inaequalis associated with apple scab diseaseusing SSR markers
- Clustering via hypergraph modularity
- Indomethacin enhances anti-tumor efficacy of a MUC1 peptide vaccine against breast cancer in MUC1 transgenic mice
- Multistage fuzzy comprehensive evaluation of landslide hazards based on a cloud model
- Inducible microRNA-200c decreases motility of breast cancer cells and reduces filamin A
- Pharmacological signatures of the reduced incidence and the progression of cognitive decline in ageing populations suggest the protective role of beneficial polypharmacy
- Continuous influenza virus production in a tubular bioreactor system provides stable titers and avoids the “von Magnus effect”
- Complex interaction networks of cytokines after transarterial chemotherapy in patients with hepatocellular carcinoma
- Gender essentialism in transgender and cisgender children
- Insertional mutagenesis in the zoonotic pathogen Chlamydia caviae
- Being there: A scoping review of grief support training in medical education
- Does the psychological profile influence the position of promising young futsal players?
- Effect of self-rated health status on functioning difficulties among older adults in Ghana: Coarsened exact matching method of analysis of the World Health Organization’s study on global AGEing and adult health, Wave 2
- Olfactory screening of Parkinson’s Disease patients and healthy subjects in China and Germany: A study of cross-cultural adaptation of the Sniffin’ Sticks 12-identification test
- Molecular evolution of cytochrome C oxidase-I protein of insects living in Saudi Arabia
- Correlates of leisure-time sedentary behavior among 181,793 adolescents aged 12-15 years from 66 low- and middle-income countries
- Cost-effectiveness analysis of Mucosal Leishmaniasis diagnosis with PCR-based vs parasitological tests in Colombia
- Spatiotemporal analysis of historical records (2001–2012) on dengue fever in Vietnam and development of a statistical model for forecasting risk
- Resilience assessment of Puerto Rico’s coral reefs to inform reef management
- Effect of community based health education on knowledge and attitude towards iron and folic acid supplementation among pregnant women in Kiambu County, Kenya: A quasi experimental study
- Implementation and effectiveness of non-specialist mediated interventions for children with Autism Spectrum Disorder: A systematic review and meta-analysis
- A tailored cognitive behavioral program for juvenile justice-referred females at risk of substance use and delinquency: A pilot quasi-experimental trial
- Impact of adjusted kidney volume measured in the bench surgery on one-year renal function in kidney transplantation
- Machine learning algorithm validation with a limited sample size
- The magnitude of suicidal ideation, attempts and associated factors of HIV positive youth attending ART follow ups at St. Paul’s hospital Millennium Medical College and St. Peter’s specialized hospital, Addis Ababa, Ethiopia, 2018
- The nonlinear effect of financial and fiscal policies on poverty alleviation in China—An empirical analysis of Chinese 382 impoverished counties with PSTR models
- Impacts of risk and competition on the profitability of banks: Empirical evidence from Pakistan
- Molecular characterization of lung adenocarcinoma from Korean patients using next generation sequencing
- An expansin-like protein expands forage cell walls and synergistically increases hydrolysis, digestibility and fermentation of livestock feeds by fibrolytic enzymes
- Joint image compression and encryption based on sparse Bayesian learning and bit-level 3D Arnold cat maps
- Urticating setae of tarantulas (Araneae: Theraphosidae): Morphology, revision of typology and terminology and implications for taxonomy
- Live observation of the oviposition process in Daphnia magna
- On the accuracy of displacement-based wave intensity analysis: Effect of vessel wall viscoelasticity and nonlinearity
- Nodosilinea signiensis sp. nov. (Leptolyngbyaceae, Synechococcales), a new terrestrial cyanobacterium isolated from mats collected on Signy Island, South Orkney Islands, Antarctica
- A 3’ UTR SNP rs885863, a cis-eQTL for the circadian gene VIPR2 and lincRNA 689, is associated with opioid addiction
- Characterizing the Randot Preschool stereotest: Testability, norms, reliability, specificity and sensitivity in children aged 2-11 years
- Tributyltin chloride (TBT) induces RXRA down-regulation and lipid accumulation in human liver cells
- Amazon climatic factors driving terpene composition of Iryanthera polyneura Ducke in terra-firme forest: A statistical approach
- Differences in clinical features of cluster headache between drinkers and nondrinkers in Japan
- Distribution of macular ganglion cell layer thickness in foveal hypoplasia: A new diagnostic criterion for ocular albinism
- Polo-like kinase 1 (Plk1) inhibition synergizes with taxanes in triple negative breast cancer
- Effect of mechanochemical activation of natural phosphorite structure as well as phosphorus solubility
- Automated content analysis across six languages
- A deep learning reconstruction framework for X-ray computed tomography with incomplete data
- Integrating interconception care in preventive child health care services: The Healthy Pregnancy 4 All program
- The prognostic significance of tumor-infiltrating lymphocytes assessment with hematoxylin and eosin sections in resected primary lung adenocarcinoma
- Effectiveness of novel fabrics to resist punctures and lacerations from white shark (Carcharodon carcharias): Implications to reduce injuries from shark bites
- Bacillus Calmette-Guérin (BCG) therapy lowers the incidence of Alzheimer’s disease in bladder cancer patients
- Serial block-face scanning electron microscopy reveals neuronal-epithelial cell fusion in the mouse cornea
- Salt or fish (or salted fish)? The Bronze Age specialised sites along the Tyrrhenian coast of Central Italy: New insights from Caprolace settlement
- Pragmatic language dysfunction in systemic lupus erythematosus patients: Results from a single center Italian study
- Association between cerebral atrophy and osteoporotic vertebral compression fractures
- Latitudinal gradient of cyanobacterial diversity in tidal flats
- Gene expression based survival prediction for cancer patients—A topic modeling approach
- Understanding allergic multimorbidity within the non-eosinophilic interactome
- The association between psychological distress and angina pectoris: A population-based study
- Comparative analysis on Facebook post interaction using DNN, ELM and LSTM
- Cerebellum-mediated trainability of eye and head movements for dynamic gazing
- Psychological and physiological effects of applying self-control to the mobile phone
- Omecamtiv mecarbil lowers the contractile deficit in a mouse model of nebulin-based nemaline myopathy
- Genome-wide SNP analyses reveal population structure of Portunus pelagicus along Vietnam coastline
- Modulating transcription through development of semi-synthetic yeast core promoters
- Left-handed metamaterial bandpass filter for GPS, Earth Exploration-Satellite and WiMAX frequency sensing applications
- Cost-effectiveness analysis of PSA-based mass screening: Evidence from a randomised controlled trial combined with register data
- A good tennis player does not lose matches. The effects of valence congruency in processing stance-argument pairs
- Validation of the group tasks uncertainty model (MITAG) in a German sample
- Parent psychological wellbeing in a single-family room versus an open bay neonatal intensive care unit
- Optimizing the procedure of grain nutrient predictions in barley via hyperspectral imaging
- In-situ time resolved spectrographic measurement using an additively manufactured metallic micro-fluidic analysis platform
- Race disparity in blood sphingolipidomics associated with lupus cardiovascular comorbidity
- Characterization of the placental transcriptome through mid to late gestation in the mare
- Indirect violence exposure and mental health symptoms among an urban public-school population: Prevalence and correlates
- Diagnostic ability of multifocal electroretinogram in early multiple sclerosis using a new signal analysis method
- Predictors of never having a mammogram among Chinese, Vietnamese, and Korean immigrant women in the U.S.
- The impact of hepatic steatosis on portal hypertension
- How do and could clinical guidelines support patient-centred care for women: Content analysis of guidelines
- Study of the epidemiological behavior of malaria in the Darien Region, Panama. 2015–2017
- School-based obesity prevention for busy low-income families—Organisational and personal barriers and facilitators to implementation
- Neighborhood crime, disorder and substance use in the Caribbean context: Jamaica National Drug Use Prevalence Survey 2016
- Genomic comparison of diverse Salmonella serovars isolated from swine
- Significance of the lobe-specific emphysema index to predict prolonged air leak after anatomical segmentectomy
- Modeling of inter-organizational coordination dynamics in resilience planning of infrastructure systems: A multilayer network simulation framework
- Manipulating the odds: The effects of Machiavellianism and construal level on cheating behavior
- Early recognition of anorexia through patient-generated assessment predicts survival in patients with oesophagogastric cancer
- Identifying publications in questionable journals in the context of performance-based research funding
- ITGAM is a risk factor to systemic lupus erythematosus and possibly a protection factor to rheumatoid arthritis in patients from Mexico
- Nurses’ and patients’ experiences and preferences of the ankle-brachial pressure index and multi-site photoplethysmography for the diagnosis of peripheral arterial disease: A qualitative study
- Cluster tendency assessment in neuronal spike data
- Voluntary medical male circumcision for HIV prevention among adolescents in Kenya: Unintended consequences of pursuing service-delivery targets
- Primary care in five European countries: A citizens’ perspective on the quality of care for children
- High Order Profile Expansion to tackle the new user problem on recommender systems
- Psychometric properties of the Korean version of the Health Literacy on Social Determinants of Health Questionnaire (K-HL-SDHQ)
- Flood hazard mapping and assessment in data-scarce Nyaungdon area, Myanmar
- Methods for the identification of farm escapees in feral mink (Neovison vison) populations
- Transcriptional analysis of amino acid, metal ion, vitamin and carbohydrate uptake in butanol-producing Clostridium beijerinckii NRRL B-598
- Long-term vancomycin use had low risk of ototoxicity
- Overcoming platinum resistance in ovarian cancer by targeting pregnancy-associated plasma protein-A
- Exploration of muscle loss and metabolic state during prolonged critical illness: Implications for intervention?
- Pan-caspase inhibitor F573 mitigates liver ischemia reperfusion injury in a murine model
- Efficacy of interleukin 10 gene hydrofection in pig liver vascular isolated ‘in vivo’ by surgical procedure with interest in liver transplantation
- Molecular characteristics of segment 5, a unique fragment encoding two partially overlapping ORFs in the genome of rice black-streaked dwarf virus
- Early economic evaluation of MRI-guided laser interstitial thermal therapy (MRgLITT) and epilepsy surgery for mesial temporal lobe epilepsy
- GLADS: A gel-less approach for detection of STMS markers in wheat and rice
- Anterior tooth-use behaviors among early modern humans and Neandertals
- Incidence patterns of orofacial clefts in purebred dogs
- Capacity of the medullary cavity of tibia and femur for intra-bone marrow transplantation in mice
- Association of thoracic spine deformity and cardiovascular disease in a mouse model for Marfan syndrome
- Predicting atrial fibrillation in primary care using machine learning
- M3VR—A multi-stage, multi-resolution, and multi-volumes-of-interest volume registration method applied to 3D endovaginal ultrasound
- A developmental trajectory supporting the evaluation and achievement of competencies: Articulating the Mastery Rubric for the nurse practitioner (MR-NP) program curriculum
- Mobile medication manager application to improve adherence with immunosuppressive therapy in renal transplant recipients: A randomized controlled trial
- Default Mode Network structural alterations in Kocher-Monro trajectory white matter transection: A 3 and 7 tesla simulation modeling approach
- Phylogenetic revision of Gymnotidae (Teleostei: Gymnotiformes), with descriptions of six subgenera
- Population genetic analysis of 36 Y-chromosomal STRs yields comprehensive insights into the forensic features and phylogenetic relationship of Chinese Tai-Kadai-speaking Bouyei
- Prevention of suicidal behaviour: Results of a controlled community-based intervention study in four European countries
- An assessment of khat consumption habit and its linkage to household economies and work culture: The case of Harar city
- Fixation of genetic variation and optimization of gene expression: The speed of evolution in isolated lizard populations undergoing Reverse Island Syndrome
- One simple claudication question as first step in Peripheral Arterial Disease (PAD) screening: A meta-analysis of the association with reduced Ankle Brachial Index (ABI) in 27,945 subjects
- Direct cost of health care for individuals with community associated Clostridium difficile infections: A population-based cohort study
- Association between serum homocysteine level and cognitive function in middle-aged type 2 diabetes mellitus patients
- A qualitative research synthesis of contextual factors contributing to female overweight and obesity over the life course in sub-Saharan Africa
- Insight into the relationship between aryl-hydrocarbon receptor and β-catenin in human colon cancer cells
- Hidden noise in immunologic parameters might explain rapid progression in early-onset periodontitis
- The role of stigma in the acceptance and disclosure of HIV among recently diagnosed men who have sex with men in Australia: A qualitative study
- Detection of Schistosoma japonicum and Oncomelania hupensis quadrasi environmental DNA and its potential utility to schistosomiasis japonica surveillance in the Philippines
- Does age influence the quality of life in children with atopic dermatitis?
- Questioning the lasting effect of galvanic vestibular stimulation on postural control
- Identification of a novel monocytic phenotype in Classic Hodgkin Lymphoma tumor microenvironment
- Characterization of 20 complete plastomes from the tribe Laureae (Lauraceae) and distribution of small inversions
- Binding and dynamics of melatonin at the interface of phosphatidylcholine-cholesterol membranes
- Recent climate-driven ecological change across a continent as perceived through local ecological knowledge
- Nonalcoholic fatty liver disease is an early predictor of metabolic diseases in a metabolically healthy population
- Occurrence and multilocus genotyping of Giardia duodenalis from post-weaned dairy calves in Sichuan province, China
- Retinoic acid-stimulated ERK1/2 pathway regulates meiotic initiation in cultured fetal germ cells
- Gender disparities in scientific production: A nationwide assessment among physicians in Peru
- Effect of F1 and F2 generations on genetic variability and working steps of doubled haploid production in maize
- Mitochondrial dysfunction in rheumatoid arthritis: A comprehensive analysis by integrating gene expression, protein-protein interactions and gene ontology data
- A caspase-6-cleaved fragment of Glial Fibrillary Acidic Protein as a potential serological biomarker of CNS injury after cardiac arrest
- A handy method to remove bacterial contamination from fungal cultures
- The self-care profiles and its determinants among adults with hypertension in primary health care clinics in Selangor, Malaysia
- The mutational landscape of quinolone resistance in Escherichia coli
- Exploring the influence of self-perceptions on the relationship between motor competence and identity in adolescents
- Study on the damage characteristics of gas-bearing shale under different unloading stress paths
- EPILAT-IRA Study: A contribution to the understanding of the epidemiology of acute kidney injury in Latin America
- 16S rDNA droplet digital PCR for monitoring bacterial DNAemia in bloodstream infections
- Three-dimensional (3D) brain microphysiological system for organophosphates and neurochemical agent toxicity screening
- Diversity of endocervical microbiota associated with genital Chlamydia trachomatis infection and infertility among women visiting obstetrics and gynecology clinics in Malaysia
- Health impact of hepatic-venous-occlusive disease in a small town in Ethiopia—Case study from Tahtay koraro district in Tigray region, 2017
- Development of a novel automatable fabrication method based on electrospinning co electrospraying for rotator cuff augmentation patches
- Development of a quantitative PCR assay for the detection and enumeration of a potentially ciguatoxin-producing dinoflagellate, Gambierdiscus lapillus (Gonyaulacales, Dinophyceae)
- Association of clinical factors with survival outcomes in laryngeal squamous cell carcinoma (LSCC)
- Seasonal oyster harvesting recorded in a Late Archaic period shell ring
- Population preferences for breast cancer screening policies: Discrete choice experiment in Belarus
- Respiratory health and inflammatory markers - Exposure to respirable dust and quartz and chemical binders in Swedish iron foundries
- Trends and predictors of mother-to-child transmission of HIV in an era of protocol changes: Findings from two large health facilities in North East Nigeria
- Elevated Ki-67 (MIB-1) expression as an independent predictor for unfavorable pathologic outcomes and biochemical recurrence after radical prostatectomy in patients with localized prostate cancer: A propensity score matched study
- Genome-wide identification and gene expression analysis of SOS family genes in tuber mustard (Brassica juncea var. tumida)
- Carvedilol improves glucose tolerance and insulin sensitivity in treatment of adrenergic overdrive in high fat diet-induced obesity in mice
- Institutional differences in USMLE Step 1 and 2 CK performance: Cross-sectional study of 89 US allopathic medical schools
- Molecular epidemiological characteristics of dengue virus carried by 34 patients in Guangzhou in 2018
- Heteroplasmy in the complete chicken mitochondrial genome
- Candida blood stream infections observed between 2011 and 2016 in a large Italian University Hospital: A time-based retrospective analysis on epidemiology, biofilm production, antifungal agents consumption and drug-susceptibility
- Sixty years since the creation of Lake Kariba: Thermal and oxygen dynamics in the riverine and lacustrine sub-basins
- Association of uric acid in serum and urine with subclinical renal damage: Hanzhong Adolescent Hypertension Study
- Appropriate management of acute gastroenteritis in Australian children: A population-based study
- The plasma metabolome of women in early pregnancy differs from that of non-pregnant women
- Effectiveness of four types of neuraminidase inhibitors approved in Japan for the treatment of influenza
- More than just availability: Who has access and who administers take-home naloxone in Baltimore, MD
- Evaluating the cross-cultural validity of the Dutch version of the Social Exclusion Index for Health Surveys (SEI-HS): A mixed methods study
- Diminuendo al bottom—Clarifying the semantics of music notation by re-modeling
- Structural analysis of the manganese transport regulator MntR from Bacillus halodurans in apo and manganese bound forms
- Serum uromodulin is associated with the severity of clinicopathological findings in ANCA-associated glomerulonephritis
- Male support for cervical cancer screening and treatment in rural Ghana
- ADAPTS: Automated deconvolution augmentation of profiles for tissue specific cells
- Comparison of shape quantification methods for genomic prediction, and genome-wide association study of sorghum seed morphology
- An attempt to identify the issues underlying the lack of consistent conceptualisations in the field of student mathematics-related beliefs
- Video abstracts and plain language summaries are more effective than graphical abstracts and published abstracts
- Trophic structure of the macrofauna associated to deep-vents of the southern Gulf of California: Pescadero Basin and Pescadero Transform Fault
- Incomplete insertion of pedicle screws in a standard construct reduces the fatigue life: A biomechanical analysis
- Cost savings associated with timely treatment of botulism with botulism antitoxin heptavalent product
- Effects of light and nitrogen availability on photosynthetic efficiency and fatty acid content of three original benthic diatom strains
- Early signal detection of adverse events following influenza vaccination using proportional reporting ratio, Victoria, Australia
- Bioinformatic analysis of a novel Echinococcus granulosus nuclear receptor with two DNA binding domains
- Genome-wide identification and characterization, phylogenetic comparison and expression profiles of SPL transcription factor family in B. juncea (Cruciferae)
- Hypoxia inhibits TNF-α-induced TSLP expression in keratinocytes
- Conceptualising alcohol consumption in relation to long-term health conditions: Exploring risk in interviewee accounts of drinking and taking medications
- Elevated interleukin-25 and its association to Th2 cytokines in systemic lupus erythematosus with lupus nephritis
- Thrombocytopenia and thrombocytosis are associated with different outcome in atrial fibrillation patients on anticoagulant therapy
- Involvement of extracellular vesicles in the macrophage-tumor cell communication in head and neck squamous cell carcinoma
- Comparison of Humphrey Field Analyzer and imo visual field test results in patients with glaucoma and pseudo-fixation loss
- Out-of-pocket expenditure and catastrophic health expenditure for hospitalization due to injuries in public sector hospitals in North India
- Concurrent validity and discriminative ability of Dutch performance-based motor tests in 5 to 6 years old children
- Cumulative viral load as a predictor of CD4+ T-cell response to antiretroviral therapy using Bayesian statistical models
- Can General Practitioners manage mental disorders in primary care? A partially randomised, pragmatic, cluster trial
- Self-serving incentives impair collective decisions by increasing conformity
- Mutation and immune profiling of metaplastic breast cancer: Correlation with survival
- The clinicopathological significance of Thrombospondin-4 expression in the tumor microenvironment of gastric cancer
- Propofol-based total intravenous anesthesia did not improve survival compared to desflurane anesthesia in breast cancer surgery
- Association between ossification of the posterior longitudinal ligament and ossification of the nuchal ligament in the cervical spine
- Effects of Debaryomyces hansenii treatment on intestinal mucosa microecology in mice with antibiotic-associated diarrhea
- Molecular validation of clinical Pantoea isolates identified by MALDI-TOF
- A novel wheat lodging resistance evaluation method and device based on the thrust force of the stalks
- Evolution of high tooth replacement rates in theropod dinosaurs
- Outpatient facility-based order variation in combined imaging
- Ethnic-racial identity affirmation: Validation in Aboriginal Australian children
- Non-intubated anesthesia in patients undergoing video-assisted thoracoscopic surgery: A systematic review and meta-analysis
- Tissue-type plasminogen activator selectively inhibits multiple toll-like receptors in CSF-1-differentiated macrophages
- Changes of serum pentraxin-3 and hypersensitive CRP levels during pregnancy and their relationship with gestational diabetes mellitus
- Synergistic immuno-modulatory activity in human macrophages of a medicinal mushroom formulation consisting of Reishi, Shiitake and Maitake
- Investigating reindeer pastoralism and exploitation of high mountain zones in northern Mongolia through ice patch archaeology
- Diversity pattern of Plasmodium knowlesi merozoite surface protein 4 (MSP4) in natural population of Malaysia
- Protein synthesis rates of muscle, tendon, ligament, cartilage, and bone tissue in vivo in humans
- “What gets measured better gets done better”: The landscape of validation of global maternal and newborn health indicators through key informant interviews
- Contactless monitoring of heart and respiratory rate in anesthetized pigs using infrared thermography
- Molecular characterisation of genital human papillomavirus among women in Southwestern, Nigeria
- The impact of “male clinics” on health-seeking behaviors of adult men in rural Kenya
- Gene expression microarray public dataset reanalysis in chronic obstructive pulmonary disease
- Utility of the new cobas HCV test for viral load monitoring during direct-acting antiviral therapy
- Impact of negative tuberculin skin test on growth among disadvantaged Bangladeshi children
- Streptococcal phosphotransferase system imports unsaturated hyaluronan disaccharide derived from host extracellular matrices
- Maternal diet modulates placental nutrient transporter gene expression in a mouse model of diabetic pregnancy
- Effects of an incremental theory of personality intervention on the reciprocity between bullying and cyberbullying victimization and perpetration in adolescents
- The clot thickens: Autologous and allogeneic fibrin sealants are mechanically equivalent in an ex vivo model of cartilage repair
- Reproducibility, stability, and accuracy of microbial profiles by fecal sample collection method in three distinct populations
- Cooperation with autonomous machines through culture and emotion
- Variation in hybridogenetic hybrid emergence between populations of water frogs from the Pelophylax esculentus complex
- Breast cancer in Tanzanian, black American, and white American women: An assessment of prognostic and predictive features, including tumor infiltrating lymphocytes
- Intramolecular tautomerization of the quercetin molecule due to the proton transfer: QM computational study
- A global overview of cassava genetic diversity
- Whole body periodic acceleration in normal and reduced mucociliary clearance of conscious sheep
- Identifying resurrection genes through the differentially expressed genes between Selaginella tamariscina (Beauv.) spring and Selaginella moellendorffii Hieron under drought stress
- Impact of hemodialysis on the concentrations of sodium and potassium during infusion of sodium thiosulfate using an In Vitro hemodialysis model
- Minimal effects of oyster aquaculture on local water quality: Examples from southern Chesapeake Bay
- Suboptimal infant and young child feeding practices in rural Boucle du Mouhoun, Burkina Faso: Findings from a cross-sectional population-based survey
- High salinity tolerance of invasive blue catfish suggests potential for further range expansion in the Chesapeake Bay region
- From waste to food: Optimising the breakdown of oil palm waste to provide substrate for insects farmed as animal feed
- Quantitative assessment of interstitial lung disease in Sjögren’s syndrome
- Comparative efficacy of tenofovir and entecavir in nucleos(t)ide analogue-naive chronic hepatitis B: A systematic review and meta-analysis
- Reference ranges for ultrasonographic renal dimensions as functions of age and body indices: A retrospective observational study in Taiwan
- Finding phrases: On the role of co-verbal facial information in learning word order in infancy
- Mathematical modeling reveals the factors involved in the phenomena of cancer stem cells stabilization
- Effects of forest management and roe deer impact on a mountain forest development in the Italian Apennines: A modelling approach using LANDIS-II
- Evaluation of comprehensive improvement for mild and moderate soil salinization in arid zone
- Efficacy, acceptability and feasibility of daily text-messaging in promoting glycaemic control and other clinical outcomes in a low-resource setting of South Africa: A randomised controlled trial
- Magnitude and associated factors of postpartum depression among women in Nekemte town, East Wollega zone, west Ethiopia, 2019: A community-based study
- Comparison of continuous wave and cold lateral condensation filling techniques in 3D printed simulated C-shape canals instrumented with Reciproc Blue or Hyflex EDM
- Effect of caffeine on neuromuscular function following eccentric-based exercise
- AtUBL5 regulates growth and development through pre-mRNA splicing in Arabidopsis thaliana
- The gut microbiome of freshwater Unionidae mussels is determined by host species and is selectively retained from filtered seston
- Alcohol consumption and survival after breast cancer diagnosis in Japanese women: A prospective patient cohort study
- Selection of reference genes for normalization of cranberry (Vaccinium macrocarpon Ait.) gene expression under different experimental conditions
- The household economic costs associated with depression symptoms: A cross-sectional household study conducted in the North West province of South Africa
- Increased cell size, structural complexity and migration of cancer cells acquiring fibroblast organelles by cell-projection pumping
- Acute low- compared to high-load resistance training to failure results in greater energy expenditure during exercise in healthy young men
- Impact of body mass index and metabolically unhealthy status on mortality in the Japanese general population: The JMS cohort study
- Characterization of two thermophilic cellulases from Talaromyces leycettanus JCM12802 and their synergistic action on cellulose hydrolysis
- Ecohydrology of urban trees under passive and active irrigation in a semiarid city
- Cyclosporine A eyedrops with self-nanoemulsifying drug delivery systems have improved physicochemical properties and efficacy against dry eye disease in a murine dry eye model
- LFastqC: A lossless non-reference-based FASTQ compressor
- Highly accurate prediction of flammability limits of chemical compounds using novel integrated hybrid models
- Nonsteroidal anti-inflammatory drugs and acetaminophen ameliorate muscular mechanical hyperalgesia developed after lengthening contractions via cyclooxygenase-2 independent mechanisms in rats
- A popular Indian clove-based mosquito repellent is less effective against Culex quinquefasciatus and Aedes aegypti than DEET
- Yeasts affect tolerance of Drosophila melanogaster to food substrate with high NaCl concentration
- The effect of climate change on cholera disease: The road ahead using artificial neural network
- Grit (effortful persistence) can be measured with a short scale, shows little variation across socio-demographic subgroups, and is associated with career success and career engagement
- Micro-dislodgement during transcatheter aortic valve implantation with a contemporary self-expandable prosthesis
- Improving the antimicrobial efficacy against resistant Staphylococcus aureus by a combined use of conjugated oligoelectrolytes
- Kin discrimination and outer membrane exchange in Myxococcus xanthus: Experimental analysis of a natural population
- Inflammatory cell infiltrates, hypoxia, vascularization, pentraxin 3 and osteoprotegerin in abdominal aortic aneurysms – A quantitative histological study
- Effects of virtual reality rehabilitation training on gait and balance in patients with Parkinson's disease: A systematic review
- Serum miR-33a is associated with steatosis and inflammation in patients with non-alcoholic fatty liver disease after liver transplantation
- Association between housing tenure and self-rated health in Japan: Findings from a nationwide cross-sectional survey
- Investigation of biochemical and physiological parameters of the newborn Saiga antelope (Saiga tatarica) in Gansu Province, China
- One-year follow-up of changes in refraction and aberrations induced by corneal incision
- Evaluation of upper limb superficial venous percussion as a sign of anatomical location and venous permeability. A comparative study of superficial venous percussion to ultrasound findings on non-renal patients and on chronic kidney disease patients
- An assessment of the Dutch experience with health insurers acting as healthcare advisors
- Perception of potential harm and benefits of HIV vaccine trial participation: A qualitative study from urban Tanzania
- Veterans with Gulf War Illness exhibit distinct respiratory patterns during maximal cardiopulmonary exercise
- Deep brain stimulation restores the glutamatergic and GABAergic synaptic transmission and plasticity to normal levels in kindled rats
- Metformin strongly affects transcriptome of peripheral blood cells in healthy individuals
- Cranberry extracts promote growth of Bacteroidaceae and decrease abundance of Enterobacteriaceae in a human gut simulator model
- Long-term retention on antiretroviral therapy among infants, children, adolescents and adults in Malawi: A cohort study
- Histochemical quantification of collagen content in articular cartilage
- Optogenetically transduced human ES cell-derived neural progenitors and their neuronal progenies: Phenotypic characterization and responses to optical stimulation
- Ion torrent high throughput mitochondrial genome sequencing (HTMGS)
- Outpatient antibiotic prescription rate and pattern in the private sector in India: Evidence from medical audit data
- Acute Influenza A virus outbreak in an enzootic infected sow herd: Impact on viral dynamics, genetic and antigenic variability and effect of maternally derived antibodies and vaccination
- Prevalence and correlates of low serum calcium in late pregnancy: A cross sectional study in the Nkongsamba Regional Hospital; Littoral Region of Cameroon
- Home-cage monitoring ascertains signatures of ictal and interictal behavior in mouse models of generalized seizures
- CRISPR/Cas9 gene editing in the West Nile Virus vector, Culex quinquefasciatus Say
- Genetic susceptibility to angiotensin-converting enzyme-inhibitor induced angioedema: A systematic review and evaluation of methodological approaches
- Proton pump inhibitor use increases the risk of peritonitis in peritoneal dialysis patients
- Comparative distribution of extended-spectrum beta-lactamase–producing Escherichia coli from urine infections and environmental waters
- Sex differences in thigh muscle volumes, sprint performance and mechanical properties in national-level sprinters
- Maternal serum and cord blood leptin concentrations at delivery
- Winter nitrification in ice-covered lakes
- Intolerance of uncertainty fuels depressive symptoms through rumination: Cross-sectional and longitudinal studies
- Monitoring exercise-induced muscle damage indicators and myoelectric activity during two weeks of knee extensor exercise training in young and old men
- Can adoption of pollution prevention techniques reduce pollution substitution?
- The association between self-efficacy and self-management behaviors among Chinese patients with type 2 diabetes
- Poly-arginine-18 peptides do not exacerbate bleeding, or improve functional outcomes following collagenase-induced intracerebral hemorrhage in the rat
- Affective disorders in the elderly in different European countries: Results from the MentDis_ICF65+ study
- Evaluation of forearm vascular resistance during orthostatic stress: Velocity is proportional to flow and size doesn’t matter
- Proton pencil minibeam irradiation of an in-vivo mouse ear model spares healthy tissue dependent on beam size
- Maternal stress in Shank3ex4-9 mice increases pup-directed care and alters brain white matter in male offspring
- Aspartate aminotransferase-to-platelet ratio index (APRI): A potential marker for diagnosis in patients at risk of severe malaria caused by Plasmodium vivax
- Exploiting open source 3D printer architecture for laboratory robotics to automate high-throughput time-lapse imaging for analytical microbiology
- Long non-coding RNAs and latent HIV – A search for novel targets for latency reversal
- Clinical characteristics of neonatal fulminant necrotizing enterocolitis in a tertiary Children's hospital in the last 10 years
- Effects of neuromuscular electrical stimulation training on muscle size in collegiate track and field athletes
- Adaptive fuzzy flow rate control considering multifractal traffic modeling and 5G communications
- Evaluation of four commercial tests for detecting ceftiofur in waste milk bulk tank samples
- A smart tele-cytology point-of-care platform for oral cancer screening
- Vasopressin SNP pain factors and stress in sickle cell disease
- Carbonate production of Micronesian reefs suppressed by thermal anomalies and Acanthaster as sea-level rises
- Microbial metabolisms in an abyssal ferromanganese crust from the Takuyo-Daigo Seamount as revealed by metagenomics
- Incidence of chronic kidney disease hospitalisations and mortality in Espírito Santo between 1996 to 2017
- The impact of short-term machine perfusion on the risk of cancer recurrence after rat liver transplantation with donors after circulatory death
- Proteomic profiling of the thrombin-activated canine platelet secretome (CAPS)
- Blood metal levels and serum testosterone concentrations in male and female children and adolescents: NHANES 2011–2012
- The effects of prolonged single night session of videogaming on sleep and declarative memory
- Diversity, distribution and dynamics of large trees across an old-growth lowland tropical rain forest landscape
- Mapping developmental QTL for plant height in soybean [Glycine max (L.) Merr.] using a four-way recombinant inbred line population
- Vaginal ring acceptability and related preferences among women in low- and middle-income countries: A systematic review and narrative synthesis
- UM171 induces a homeostatic inflammatory-detoxification response supporting human HSC self-renewal
- Positive selection and precipitation effects on the mitochondrial NADH dehydrogenase subunit 6 gene in brown hares (Lepus europaeus) under a phylogeographic perspective
- Evaluation of Minimum Inhibitory Concentrations for 154 Mycoplasma synoviae isolates from Italy collected during 2012-2017
- Enhancement of antibiotics antimicrobial activity due to the silver nanoparticles impact on the cell membrane
- Correction: Smoking, alcohol use disorder and tuberculosis treatment outcomes: A dual co-morbidity burden that cannot be ignored
- Correction: Effect of corruption on perceived difficulties in healthcare access in sub-Saharan Africa
- Knowledge-based best of breed approach for automated detection of clinical events based on German free text digital hospital discharge letters
- Importance of thorough tissue and cellular level characterization of targeted drugs in the evaluation of pharmacodynamic effects
- Integrated value-chain and risk assessment of Pig-Related Zoonoses in Ghana
- Failed sperm retrieval from severely oligospermic or non-obstructive azoospermic patients on oocyte retrieval day: Emergent oocyte cryopreservation is a feasible strategy
- Cassava yield traits predicted by genomic selection methods
- Verification of hub genes in the expression profile of aortic dissection
- Pig farmers’ willingness to pay for management strategies to reduce aggression between pigs
- Metabolomic response of Euglena gracilis and its bleached mutant strain to light
- Diagnostic value of ASVS for insulinoma localization: A systematic review and meta-analysis
- Newly educated care managers’ experiences of providing care for persons with stress-related mental disorders in the clinical primary care context
- Real-time telemetry monitoring of oxygen in the central complex of freely-walking Gromphadorhina portentosa
- Qualification programmes for immigrant health professionals: A systematic review
- An analytical model to minimize the latency in healthcare internet-of-things in fog computing environment
- Grain filling of early-season rice cultivars grown under mechanical transplanting
- Intercalation of small molecules into DNA in chromatin is primarily controlled by superhelical constraint
- Correlative evidence for co-regulation of phosphorus and carbon exchanges with symbiotic fungus in the arbuscular mycorrhizal Medicago truncatula
- How to design a dose-finding study on combined agents: Choice of design and development of R functions
- Altered expression of Notch1 in Alzheimer's disease
- The ZJU index is a powerful surrogate marker for NAFLD in severely obese North American women
- Trunk velocity-dependent Light Touch reduces postural sway during standing
- Evaluation of cytological diagnostic accuracy for canine splenic neoplasms: An investigation in 78 cases using STARD guidelines
- Trade-offs in motivating volunteer effort: Experimental evidence on voluntary contributions to science
- Does caching strategy vary with microclimate in endangered Mt. Graham red squirrels?
- Assessment of energy expenditure during high intensity cycling and running using a heart rate and activity monitor in young active adults
- Evaluating rectal swab collection method for gut microbiome analysis in the common marmoset (Callithrix jacchus)
- Implementation of a screening, brief intervention and referral to treatment programme for risky substance use in South African emergency centres: A mixed methods evaluation study
- Can the CalproQuest predict a positive Calprotectin test? A prospective diagnostic study
- The calcium sensor OsCBL1 modulates nitrate signaling to regulate seedling growth in rice
- Acceptability of and treatment preferences for recurrent bacterial vaginosis—Topical lactic acid gel or oral metronidazole antibiotic: Qualitative findings from the VITA trial
- Mathematical determination of the HIV-1 matrix shell structure and its impact on the biology of HIV-1
- Contingent negative variation during a modified cueing task in simulated driving
- CAMDI interacts with the human memory-associated protein KIBRA and regulates AMPAR cell surface expression and cognition
- Effect of feeding patterns on growth and nutritional status of children aged 0-24 months: A Chinese cohort study
- A fecal sequel: Testing the limits of a genetic assay for bat species identification
- Measuring the impact of chronic conditions and associated multimorbidity on health-related quality of life in the general population in Hong Kong SAR, China: A cross-sectional study
- Short and long-term clinical effectiveness and cost-effectiveness of a late-phase community-based balance and gait exercise program following hip fracture. The EVA-Hip Randomised Controlled Trial
- Vaccine cold chain in general practices: A prospective study in 75 refrigerators (Keep Cool study)
- Brazilian norms for the Bank of Standardized Stimuli (BOSS)
- Distinct varieties of aesthetic chills in response to multimedia
- Interaction between apolipoprotein E genotype and hypertension on cognitive function in older women in the Nurses’ Health Study
- Correction: Resistance profile of the HIV-1 maturation inhibitor GSK3532795 in vitro and in a clinical study
- New formulation of the Gompertz equation to describe the kinetics of untreated tumors
- Development of visual perception of others’ actions: Children’s judgment of lifted weight
- Retrospective comparative analysis of intraocular lens calculation formulas after hyperopic refractive surgery
- Human vitreous concentrations of citicoline following topical application of citicoline 2% ophthalmic solution
- Development and validation of exhaled breath condensate microRNAs to identify and endotype asthma in children
- Arthroscopic release for frozen shoulder: Does the timing of intervention and diabetes affect outcome?
- Risk factors affecting dairy cattle protective grouping behavior, commonly known as bunching, against Stomoxys calcitrans (L.) on California dairies
- Acceleration of chemical shift encoding-based water fat MRI for liver proton density fat fraction and T2* mapping using compressed sensing
- Characterisation and microbial community analysis of lipid utilising microorganisms for biogas formation
- Sexuality in male partners of women with fibromyalgia syndrome: A qualitative study
- Exploring optimization strategies for improving explicit water models: Rigid n-point model and polarizable model based on Drude oscillator
- Artificial insemination with fresh, liquid stored and frozen thawed semen in dromedary camels
- Moving into an urban drug scene among people who use drugs in Vancouver, Canada: Latent class growth analysis
- Numerical study on the start and unstart phenomena in a scramjet inlet-isolator model
- Effects of dietary supplementation with apple peel powder on the growth, blood and liver parameters, and transcriptome of genetically improved farmed tilapia (GIFT, Oreochromis niloticus)
- Urban growth simulation in different scenarios using the SLEUTH model: A case study of Hefei, East China
- Chronic bronchitis without airflow obstruction, asthma and rhinitis are differently associated with cardiovascular risk factors and diseases
- Factors associated with medication adherence among people with diabetes mellitus in poor urban areas of Cambodia: A cross-sectional study
- Mammary microbiome of lactating organic dairy cows varies by time, tissue site, and infection status
- Force field generalization and the internal representation of motor learning
- Polyphenism of visual and chemical secondary sexually-selected wing traits in the butterfly Bicyclus anynana: How different is the intermediate phenotype?
- Minimal genetic differentiation of the malaria vector Nyssorhynchus darlingi associated with forest cover level in Amazonian Brazil
- The impact of leisure activities on older adults’ cognitive function, physical function, and mental health
- scafSLICR: A MATLAB-based slicing algorithm to enable 3D-printing of tissue engineering scaffolds with heterogeneous porous microarchitecture
- Association of serum leptin and adiponectin concentrations with echocardiographic parameters and pathophysiological states in patients with cardiovascular disease receiving cardiovascular surgery
- Operation of cognitive memory inhibition in adults with Down syndrome: Effects of maintenance load and material
- Influences on surgical antimicrobial prophylaxis decision making by surgical craft groups, anaesthetists, pharmacists and nurses in public and private hospitals
- Post-treatment Lyme disease symptoms score: Developing a new tool for research
- Expression of Concern: The Role of the RACK1 Ortholog Cpc2p in Modulating Pheromone-Induced Cell Cycle Arrest in Fission Yeast
- Equine bronchial fibroblasts enhance proliferation and differentiation of primary equine bronchial epithelial cells co-cultured under air-liquid interface
- Investigating cooperation with robotic peers
- Synthesis, purification and crystallization of a putative critical bulge of HAR1 RNA
- Prosthetic push-off power in trans-tibial amputee level ground walking: A systematic review
- A case study of the use of verbal reports for talent identification purposes in soccer: A Messi affair!
- Transgenerational deep sequencing revealed hypermethylation of hippocampal mGluR1 gene with altered mRNA expression of mGluR5 and mGluR3 associated with behavioral changes in Sprague Dawley rats with history of prolonged febrile seizure
- Obesity is associated with an impaired survival in lymphoma patients undergoing autologous stem cell transplantation
- Periodontal disease: Repercussions in pregnant woman and newborn health—A cohort study
- Origins of Chinese reindeer (Rangifer tarandus) based on mitochondrial DNA analyses
- Regional, racial, gender, and tumor biology disparities in breast cancer survival rates in Africa: A systematic review and meta-analysis
- How effective are films in inducing positive and negative emotional states? A meta-analysis
- 3D nanostructural characterisation of grain boundaries in atom probe data utilising machine learning methods
- An outbreak of tuberculosis in a middle school in Henan, China: Epidemiology and risk factors
- Initial clinical radiological findings and staging to predict prognosis of primary hepatic angiosarcoma: A retrospective analysis
- A new early Eocene deperetellid tapiroid illuminates the origin of Deperetellidae and the pattern of premolar molarization in Perissodactyla
- Longevity and marginal bone loss of narrow-diameter implants supporting single crowns: A systematic review
- Impact of UVC-sustained recirculating air filtration on airborne bacteria and dust in a pig facility
- Cold-related Florida manatee mortality in relation to air and water temperatures
- Conceptual fluency in inductive reasoning
- Clinical outcomes and treatment patterns among Medicare patients with nonvalvular atrial fibrillation (NVAF) and chronic kidney disease
- Improvements in the learnability of smartphone haptic interfaces for visually impaired users
- Role of the malic enzyme in metabolism of the halotolerant methanotroph Methylotuvimicrobium alcaliphilum 20Z
- Cyclic loading test study on a new cast-in-situ insulated sandwich concrete wall
- Natural compounds as angiogenic enzyme thymidine phosphorylase inhibitors: In vitro biochemical inhibition, mechanistic, and in silico modeling studies
- Analysis of virulence potential of Escherichia coli O145 isolated from cattle feces and hide samples based on whole genome sequencing
- Pre-clinical medical student reflections on implicit bias: Implications for learning and teaching
- Prognostic significance of non-sustained ventricular tachycardia on stored electrograms in pacemaker recipients
- Determinants of preterm birth among mothers who gave birth at public hospitals in the Amhara region, Ethiopia: A case-control study
- Real-world evidence of the effectiveness of ombitasvir-paritaprevir/r ± dasabuvir ± ribavirin in patients monoinfected with chronic hepatitis C or coinfected with human immunodeficiency virus-1 in Spain
- Unique transcriptomic landscapes identified in idiopathic spontaneous and infection related preterm births compared to normal term births
- Restrained expansion of the recall germinal center response as biomarker of protection for influenza vaccination in mice
- Arabidopsis TRM5 encodes a nuclear-localised bifunctional tRNA guanine and inosine-N1-methyltransferase that is important for growth
- Achievement of weight loss in patients with overweight during dietetic treatment in primary health care
- Autophagy deficiency exacerbates colitis through excessive oxidative stress and MAPK signaling pathway activation
- The impacts of parity on lung function data (LFD) of healthy females aged 40 years and more issued from an upper middle income country (Algeria): A comparative study
- Reorganization of spatial configurations in visual working memory: A matter of set size?
- Unravelling travellers’ route choice behaviour at full-scale urban network by focusing on representative OD pairs in computer experiments
- Evaluating the higher-order structure of the Profile of Emotional Competence (PEC): Confirmatory factor analysis and Bayesian structural equation modeling
- HIV prevalence and correlated factors among male clients of female sex workers in a border region of China
- Next generation sequencing and RNA-seq characterization of adipose tissue in the Nile crocodile (Crocodylus niloticus) in South Africa: Possible mechanism(s) of pathogenesis and pathophysiology of pansteatitis
- Association between advanced maternal age and maternal and neonatal morbidity: A cross-sectional study on a Spanish population
- Ethnic differences in the prevalence, socioeconomic and health related risk factors of knee pain and osteoarthritis symptoms in older Malaysians
- Increasing knowledge of HIV status in a country with high HIV testing coverage: Results from the Botswana Combination Prevention Project
- Friends with benefits: The effects of vegetative shading on plant survival in a green roof environment
- Comparison of the fecal, cecal, and mucus microbiome in male and female mice after TNBS-induced colitis
- Identifying candidate diagnostic markers for early stage of non-small cell lung cancer
- Complex alternative splicing of human Endonuclease V mRNA, but evidence for only a single protein isoform
- Correction: KML001 Induces Apoptosis and Autophagic Cell Death in Prostate Cancer Cells via Oxidative Stress Pathway
- Unique developmental trajectories of risk behaviors in adolescence and associated outcomes in young adulthood
- Enhanced fibrinolysis detection in a natural occurring canine model with intracavitary effusions: Comparison and degree of agreement between thromboelastometry and FDPs, D-dimer and fibrinogen concentrations
- Overexpression of Saussurea involucrata dehydrin gene SiDHN promotes cold and drought tolerance in transgenic tomato plants
- Foxtail millet (Setaria italica (L.) P. Beauv) CIPKs are responsive to ABA and abiotic stresses
- Autonomous drone hunter operating by deep learning and all-onboard computations in GPS-denied environments
- Heterogeneity Diffusion Imaging of gliomas: Initial experience and validation
- Frequency cluster formation and slow oscillations in neural populations with plasticity
- DHP23002 as a next generation oral paclitaxel formulation for pancreatic cancer therapy
- Diagnostic accuracy of SOX11 immunohistochemistry in mantle cell lymphoma: A meta-analysis
- Analytical solution to swing equations in power grids
- Pathways to conspiracy: The social and linguistic precursors of involvement in Reddit’s conspiracy theory forum
- Spatiotemporally random and diverse grid cell spike patterns contribute to the transformation of grid cell to place cell in a neural network model
- Empathic concern and personal distress depend on situational but not dispositional factors
- Who is more susceptible to job stressors and resources? Sensory-processing sensitivity as a personal resource and vulnerability factor
- Cost-effectiveness of integrating postpartum antiretroviral therapy and infant care into maternal & child health services in South Africa
- A substitution mutation in a conserved domain of mammalian acetate-dependent acetyl CoA synthetase 2 results in destabilized protein and impaired HIF-2 signaling
- One step at a time: Physical activity is linked to positive interpretations of ambiguity
- Calreticulin regulates vascular endothelial growth factor-A mRNA stability in gastric cancer cells
- Evaluation of various methods of selection of B. subtilis strains capable of secreting surface-active compounds
- Association between US Pharmacopeia (USP) monograph standards, generic entry and prescription drug costs
- Molecular characterisation of the synovial fluid microbiome in rheumatoid arthritis patients and healthy control subjects
- On sorption hysteresis in wood: Separating hysteresis in cell wall water and capillary water in the full moisture range
- Inbreeding, Allee effects and stochasticity might be sufficient to account for Neanderthal extinction
- Reliability and construct validity of the stepping-forward affordance perception test for fall risk assessment in community-dwelling older adults
- Socioeconomic determinants of nutritional status among ‘Baiga’ tribal children In Balaghat district of Madhya Pradesh: A qualitative study
- Study on characteristics of fire plume in building facade window under lateral blow
- ‘When you talk to someone in a bad way or always put her under pressure, it is actually worse than beating her’: Conceptions and experiences of emotional intimate partner violence in Rwanda and South Africa
- Effects of 6-mercaptopurine in pressure overload induced right heart failure
- The association between haemoglobin levels in the first 20 weeks of pregnancy and pregnancy outcomes
- Implementation and evaluation of an antimicrobial stewardship programme in companion animal clinics: A stepped-wedge design intervention study
- Factors associated with persistently high-cost health care utilization for musculoskeletal pain
- Nitrogen and chlorophyll status determination in durum wheat as influenced by fertilization and soil management: Preliminary results
- Effect of repeated in vivo microCT imaging on the properties of the mouse tibia
- Coupling environment and physiology to predict effects of climate change on the taxonomic and functional diversity of fish assemblages in the Murray-Darling Basin, Australia
- Hematology and plasma biochemistries in the Blanding’s turtle (Emydoidea blandingii) in Lake County, Illinois
- CRISPR-Cas influences the acquisition of antibiotic resistance in Klebsiella pneumoniae
- Phosphorylation-dependent activity-based conformational changes in P21-activated kinase family members and screening of novel ATP competitive inhibitors
- Antidepressant prescriptions, discontinuation, depression and perinatal outcomes, including breastfeeding: A population cohort analysis
- Why men with a low-risk prostate cancer select and stay on active surveillance: A qualitative study
- Imported severe malaria and risk factors for intensive care: A single-centre retrospective analysis
- Combined treatment (image-guided thrombectomy and endovascular therapy with open femoral access) for acute lower limb ischemia: Clinical efficacy and outcomes
- Low-latency single channel real-time neural spike sorting system based on template matching
- Quantifying the scale effect in geospatial big data using semi-variograms
- Paper-and-pencil versus computerized administration mode: Comparison of data quality and risk behavior prevalence estimates in the European school Survey Project on Alcohol and other Drugs (ESPAD)
- Regression adjusted colocalisation colour mapping (RACC): A novel biological visual analysis method for qualitative colocalisation analysis of 3D fluorescence micrographs
- Ostrich eggshell bead diameter in the Holocene: Regional variation with the spread of herding in eastern and southern Africa
- Spatial and temporal variations in female size at maturity of a Southern Rock Lobster (Jasus edwardsii) population: A likely response to climate change
- Inactive USP14 and inactive UCHL5 cause accumulation of distinct ubiquitinated proteins in mammalian cells
- Training rhesus macaques to take daily oral antiretroviral therapy for preclinical evaluation of HIV prevention and treatment strategies
- Left ventricular structural and functional changes in Friedreich ataxia – Relationship with body size, sex, age and genetic severity
- Magnitude and factors associated with anemia among pregnant women attending antenatal care in Bench Maji, Keffa and Sheka zones of public hospitals, Southwest, Ethiopia, 2018: A cross -sectional study
- Effectiveness of telerehabilitation in the management of adults with stroke: A systematic review
- Hydrogen sulphide-induced hypometabolism in human-sized porcine kidneys
- Correction: Comparison of the molecular properties of retinitis pigmentosa P23H and N15S amino acid replacements in rhodopsin
- Retraction: Regulation of gastric smooth muscle contraction via Ca2+-dependent and Ca2+-independent actin polymerization
- Evaluation of neutral oral contrast agents for assessment of the small bowel at abdominal staging CT
- Blood type and breed-associated differences in cell marker expression on equine bone marrow-derived mesenchymal stem cells including major histocompatibility complex class II antigen expression
- Induced abortion and future use of IVF treatment; A nationwide register study
- Psychosocial determinants of sustained maternal functional impairment: Longitudinal findings from a pregnancy-birth cohort study in rural Pakistan
- Measurement of finger joint angle using stretchable carbon nanotube strain sensor
- Determinants of mortality among patients with drug-resistant tuberculosis in northern Nigeria
- Drugs modulating stochastic gene expression affect the erythroid differentiation process
- Efficacy of UB0316, a multi-strain probiotic formulation in patients with type 2 diabetes mellitus: A double blind, randomized, placebo controlled study
- Prognostic value of des-γ-carboxy prothrombin in patients with hepatocellular carcinoma treated with transarterial chemotherapy: A systematic review and meta-analysis
- Avermectin induces the oxidative stress, genotoxicity, and immunological responses in the Chinese Mitten Crab, Eriocheir sinensis
- Antibiotic use in mandarin production (Citrus reticulata Blanco) in major mandarin-producing areas in Thailand: A survey assessment
- Application of CPI cutoff value based on parentage testing of duos and trios typed by four autosomal kits
- Correction: Good and Bad in the Hands of Politicians: Spontaneous Gestures during Positive and Negative Speech
- Adolescents with worse levels of oral health literacy have more cavitated carious lesions
- Effective methods for the inactivation of Francisella tularensis
- Detection of early-stage Alzheimer’s pathology using blood-based autoantibody biomarkers in elderly hip fracture repair patients
- Correlation between internal pudendal artery stenosis and erectile dysfunction in patients with suspected coronary artery disease
- Analysis of HER2 genomic binding in breast cancer cells identifies a global role in direct gene regulation
- Population productivity of shovelnose rays: Inferring the potential for recovery
- Correction: Long-term clinical outcomes in a cohort of patients with solitary plasmacytoma treated in the modern era
- Effects of tetracycline on myocardial infarct size in obese rats with chemically-induced colitis
- Mineral absorption is an enriched pathway in a brain region of restless legs syndrome patients with reduced MEIS1 expression
- Changes in weight and body composition across five years at university: A prospective observational study
- Adeno-associated virus-mediated expression of human butyrylcholinesterase to treat organophosphate poisoning
- Effects of insulin signaling on mouse taste cell proliferation
- Patient-level cost of home- and facility-based child pneumonia treatment in Suba Sub County, Kenya
- TAP: A static analysis model for PHP vulnerabilities based on token and deep learning technology
- Cost-effectiveness of QuantiFERON-TB Gold In-Tube versus tuberculin skin test for diagnosis and treatment of Latent Tuberculosis Infection in primary health care workers in Brazil
- Multifaceted intervention for the prevention and management of musculoskeletal pain in nursing staff: Results of a cluster randomized controlled trial
- Changes over time in creatinine clearance and comparison of emergent adverse events for HIV-positive adults receiving standard doses (300 mg/day) of lamivudine-containing antiretroviral therapy with baseline creatinine clearance of 30–49 vs ≥50 mL/min
- Population dynamics of foxes during restricted-area culling in Britain: Advancing understanding through state-space modelling of culling records
- Impacts of experimental advisory exit speed sign on traffic speeds for freeway exit ramp
- In-hospital outcomes and 30-day readmission rates among ischemic and hemorrhagic stroke patients with delirium
- Monitoring quality indicators for the Xpert MTB/RIF molecular assay in Ethiopia
- Delivering genes across the blood-brain barrier: LY6A, a novel cellular receptor for AAV-PHP.B capsids
- Correction: Using remote sensing to detect whale strandings in remote areas: The case of sei whales mass mortality in Chilean Patagonia
- Comparison of the inoculum size effects of antibiotics on IMP-6 β-lactamase-producing Enterobacteriaceae co-harboring plasmid-mediated quinolone resistance genes
- Contrast-enhanced computed tomography findings of canine primary renal tumors including renal cell carcinoma, lymphoma, and hemangiosarcoma
- Non-invasive in vivo imaging of UCP1 expression in live mice via near-infrared fluorescent protein iRFP720
- Overexpression of pink1 or parkin in indirect flight muscles promotes mitochondrial proteostasis and extends lifespan in Drosophila melanogaster
- Fiber stiffness, pore size and adhesion control migratory phenotype of MDA-MB-231 cells in collagen gels
- Comparison of two experimental ARDS models in pigs using electrical impedance tomography
- Are primary school children attending full-day school still engaged in sports clubs?
- Stroke risks in women with dysmenorrhea by age and stroke subtype
- Changes in patterns of mortality rates and years of life lost due to firearms in the United States, 1999 to 2016: A joinpoint analysis
- In vitro modeling of Batrachochytrium dendrobatidis infection of the amphibian skin
- Development and validation of LC-MS/MS method for imatinib and norimatinib monitoring by finger-prick DBS in gastrointestinal stromal tumor patients
- Correction: Habitat disturbance and the organization of bacterial communities in Neotropical hematophagous arthropods
- Characterisation of early metazoan secretion through associated signal peptidase complex subunits, prohormone convertases and carboxypeptidases of the marine sponge (Amphimedon queenslandica)
- Time trends between 2002 and 2017 in correlates of self-reported sitting time in European adults
- Performance of patient acuity rating by rapid response team nurses for predicting short-term prognosis
- Changes in HbA1c during the first six years after the diagnosis of Type 2 diabetes mellitus predict long-term microvascular outcomes
- Correction: Antimicrobial resistance genotypes and phenotypes of Campylobacter jejuni isolated in Italy from humans, birds from wild and urban habitats, and poultry
- Correction: Mental health and quality of life outcomes in family members of patients with chronic critical illness admitted to the intensive care units of two Brazilian hospitals serving the extremes of the socioeconomic spectrum
- Correction: Establishing an infrastructure for collaboration in primate cognition research
- Correction: The impact of public health insurance on health care utilisation, financial protection and health status in low- and middle-income countries: A systematic review
- Health provider and service-user experiences of sensory modulation rooms in an acute inpatient psychiatry setting
- Comparison of potential drug-drug interactions with metabolic syndrome medications detected by two databases
- The Polish version of the Cultural Intelligence Scale: Assessment of its reliability and validity among healthcare professionals and medical faculty students
- Selection of optimal reference genes for qRT-PCR analysis of shoot development and graviresponse in prostrate and erect chrysanthemums
- Metastasis risk prediction model in osteosarcoma using metabolic imaging phenotypes: A multivariable radiomics model
- Defining hospital community benefit activities using Delphi technique: A comparison between China and the United States
- Establishment of the experimental procedure for prediction of conjugation capacity in mutant UGT1A1
- A robust multi-objective optimization framework to capture both cellular and intercellular properties in cardiac cellular model tuning: Analyzing different regions of membrane resistance profile in parameter fitting
- Sea star wasting disease demography and etiology in the brooding sea star Leptasterias spp.
- Diagnostic plasma miRNA-profiles for ovarian cancer in patients with pelvic mass
- Genetic diversity and drug resistance of HIV-1 among infected pregnant women newly diagnosed in Luanda, Angola
- I’ve been robbed! – Can changes in floral traits discourage bee pollination?
- Visualising statistical models using dynamic nomograms
- Assessing the capacity of Malawi’s district and central hospitals to manage traumatic diaphyseal femoral fractures in adults
- Diagnostic performance of basal cortisol level at 0900-1300h in adrenal insufficiency
- The Mastery Rubric for Bioinformatics: A tool to support design and evaluation of career-spanning education and training
- Microdissection and whole chromosome painting confirm karyotype transformation in cryptic species of the Lariophagus distinguendus (Förster, 1841) complex (Hymenoptera: Pteromalidae)
- Quality of Kangaroo Mother Care services in Ethiopia: Implications for policy and practice
- Gemcitabine potentiates the anti-tumour effect of radiation on medullary thyroid cancer
- iTRAQ-based high-throughput proteomics analysis reveals alterations of plasma proteins in patients infected with human bocavirus
- The detection of a non-anemophilous plant species using airborne eDNA
- Perception and control of low cable operation forces in voluntary closing body-powered upper-limb prostheses
- Neoadjuvant chemotherapy plus surgery versus concurrent chemoradiotherapy in stage IB2-IIB cervical cancer: A systematic review and meta-analysis
- Randomized methods to characterize large-scale vortical flow networks
- Disentangling the coexistence strategies of mud-daubing wasp species through trophic analysis in oases of Baja California peninsula
- Front-of-pack nutritional labels: Understanding by low- and middle-income Mexican consumers
- Distress in patients with end-stage renal disease: Staff perceptions of barriers to the identification of mild-moderate distress and the provision of emotional support
- Pathways to antibiotics in Bangladesh: A qualitative study investigating how and when households access medicine including antibiotics for humans or animals when they are ill
- DOC export is exceeded by C fixation in May Creek: A late-successional watershed of the Copper River Basin, Alaska
- Behavioral observation of prosocial behavior and social initiative is related to preschoolers’ psychopathological symptoms
- Evaluating the impact of citations of articles based on knowledge flow patterns hidden in the citations
- Correction: Economic sanctions and academia: Overlooked impact and long-term consequences
- Correction: A novel association between relaxin receptor polymorphism and hematopoietic stem cell yield after mobilization
- Expression of Concern: Cooperativity of Oncogenic K-Ras and Downregulated p16/INK4A in Human Pancreatic Tumorigenesis
- Price dispersion of generic medications
- Sex differences in body composition but not neuromuscular function following long-term, doxycycline-induced reduction in circulating levels of myostatin in mice
- The emotion regulation effect of cognitive control is related to depressive state through the mediation of rumination: An ERP study
- Comparison of SMS-EPI and 3D-EPI at 7T in an fMRI localizer study with matched spatiotemporal resolution and homogenized excitation profiles
- Left ventricular mass normalization for body size in children based on an allometrically adjusted ratio is as accurate as normalization based on the centile curves method
- Correction: Combining biophysical parameters, spectral indices and multivariate hyperspectral models for estimating yield and water productivity of spring wheat across different agronomic practices
- Correction: Flowers as viral hot spots: Honey bees (Apis mellifera) unevenly deposit viruses across plant species
- 'Small small quarrels bring about happiness or love in the relationships’: Exploring community perceptions and gendered norms contributing to male perpetrated intimate partner violence in the Central Region of Ghana
- The performance of practitioners conducting facial comparisons on images of children across age
- Increased amounts and stability of telomeric repeat-containing RNA (TERRA) following DNA damage induced by etoposide
- Patients with limitation or withdrawal of life supporting care admitted in a medico-surgical intermediate care unit: Prevalence, description and outcome over a six-month period
- Correction: Diverse radiofrequency sensitivity and radiofrequency effects of mobile or cordless phone near fields exposure in Drosophila melanogaster
- Predicting the performance of TV series through textual and network analysis: The case of Big Bang Theory
- Risk of temperature, humidity and concentrations of air pollutants on the hospitalization of AECOPD
- Mixed methods grant applications in the health sciences: An analysis of reviewer comments
- Renal abnormalities among children with sickle cell conditions in highly resource-limited setting in Ghana
- Size matters: How reaching and vergence movements are influenced by the familiar size of stereoscopically presented objects
- Willingness to receive institutional and community-based eldercare among the rural elderly in China
- An improved deep learning method for predicting DNA-binding proteins based on contextual features in amino acid sequences
- Beyond executive functions, creativity skills benefit academic outcomes: Insights from Montessori education
- A LAMP assay for the rapid and robust assessment of Wolbachia infection in Aedes aegypti under field and laboratory conditions
- Nonarteritic anterior ischemic optic neuropathy is associated with cerebral small vessel disease
- Fiber-tract localized diffusion coefficients highlight patterns of white matter disruption induced by proximity to glioma
- The fight against polio through the NO-DO newsreels during the Francoism period in Spain
- Ocean sound levels in the northeast Pacific recorded from an autonomous underwater glider
- Cost-consequence analysis of influenza vaccination among the staff of a large teaching hospital in Rome, Italy: A pilot study
- The relationship among the progression of inflammation in umbilical cord, fetal inflammatory response, early-onset neonatal sepsis, and chorioamnionitis
- How medical professional students view older people with dementia: Implications for education and practice
- An enhanced nonparametric EWMA sign control chart using sequential mechanism
- Land use change, carbon stocks and tree species diversity in green spaces of a secondary city in Myanmar, Pyin Oo Lwin
- Is there a difference in women’s experiences of care with medication vs. manual vacuum aspiration abortions? Determinants of person-centered care for abortion services
- Maternal complications in pregnancy and childbirth for women with epilepsy: Time trends in a nationwide cohort
- Adsorption of oxytetracycline on kaolinite
- Interdisciplinary stratified care for low back pain: A qualitative study on the acceptability, potential facilitators and barriers to implementation
- The role of resource transfer in positive, non-additive litter decomposition
- The impact of language on the interpretation of resuscitation clinical care plans by doctors. A mixed methods study
- Quantum dots reveal heterogeneous membrane diffusivity and dynamic surface density polarization of dopamine transporter
- Genomic analysis of Shiga toxin-producing Escherichia coli from patients and asymptomatic food handlers in Japan
- The heavy metals lead and cadmium are cytotoxic to human bone osteoblasts via induction of redox stress
- Anatomical, taxonomic, and phylogenetic reappraisal of a poorly known ghost knifefish, Tembeassu marauna (Ostariophysi: Gymnotiformes), using X-ray microcomputed tomography
- Matrix-assisted laser desorption/ionization time of flight mass spectrometry identification of Vibrio (Listonella) anguillarum isolated from sea bass and sea bream
- Recommendations of older adults on how to use the PROM ‘TOPICS-MDS’ in healthcare conversations: A Delphi study
- The winner takes it all—Competitiveness of single nodes in globalized supply networks
- Hamsters in the city: A study on the behaviour of a population of common hamsters (Cricetus cricetus) in urban environment
- Correction: Liquid biopsies for omics-based analysis in sentinel mussels
- Size matters! Association between journal size and longitudinal variability of the Journal Impact Factor
- Drug resistance and epidemiology characteristics of multidrug-resistant tuberculosis patients in 17 provinces of China
- A model-based framework for chronic hepatitis C prevalence estimation
- Adding rewards to regulation: The impacts of watershed conservation on land cover and household wellbeing in Moyobamba, Peru
- Clinical determinants of social media use in individuals with schizophrenia
- Arsenic and nutrient absorption characteristics and antioxidant response in different leaves of two ryegrass (Lolium perenne) species under arsenic stress
- An evolution of socioeconomic related inequality in teenage pregnancy and childbearing in Malawi
- A single plasmid based CRISPR interference in Synechocystis 6803 – A proof of concept
- Structural vulnerability to narcotics-driven firearm violence: An ethnographic and epidemiological study of Philadelphia’s Puerto Rican inner-city
- Temporal trends in intracerebral hemorrhage: Evidence from the Austrian Stroke Unit Registry
- Prevalence and risk factors for multi-drug resistant Escherichia coli among poultry workers in the Federal Capital Territory, Abuja, Nigeria
- Prediction of disease-related metabolites using bi-random walks
- Clinical use, efficacy, and durability of maraviroc for antiretroviral therapy in routine care: A European survey
- Biomarker discovery in inflammatory bowel diseases using network-based feature selection
- The Cinderella Complex: Word embeddings reveal gender stereotypes in movies and books
- Exoproteome profiling of Trypanosoma cruzi during amastigogenesis early stages
- Reproducible phenotype alteration due to prolonged cooling of the pupae of Polyommatus icarus butterflies
- Nutritional treatment with an immune-modulating enteral formula alleviates 5-fluorouracil-induced adverse effects in rats
- Pharmacy-based predictors of non-adherence, non-persistence and reinitiation of antihypertensive drugs among patients on oral diabetes drugs in the Netherlands
- Systematic review of the accuracy of plasma preparation tubes for HIV viral load testing
- Circadian clock regulates the shape and content of dendritic spines in mouse barrel cortex
- “Anybody can make kids; it takes a real man to look after your kids”: Aboriginal men’s discourse on parenting
- Correction: A 1D computer model of the arterial circulation in horses: An important resource for studying global interactions between heart and vessels under normal and pathological conditions
- Maternal interpregnancy weight change and premature birth: Findings from an English population-based cohort study
- Correction: Identifying performance benchmarks and determinants for reproductive performance and calf survival using a longitudinal field study of cow-calf herds in western Canada
- Prognostic value of the model for end-stage liver disease excluding INR score (MELD-XI) in patients with adult congenital heart disease
- Treatment of Urethral Pain Syndrome (UPS) in Sweden
- Migration and political polarization in the U.S.: An analysis of the county-level migration network
- Epidemiology and complications of late-onset sepsis: an Italian area-based study
- The relationship between women’s experience of intimate partner violence and other socio-demographic factors, and under-5 children’s health in South Africa
- Association between trunk and gluteus muscle size and long jump performance
- Multimorbidity and complex multimorbidity in Brazilian rural workers
- Correction: Interspecific Phylogenic Relationships within Genus Melilotus Based on Nuclear and Chloroplast DNA
- Insulin-like growth factor (IGF)-II- mediated fibrosis in pathogenic lung conditions
- Wolf diet and prey selection in the South-Eastern Carpathian Mountains, Romania
- In vitro activity of aryl-thiazole derivatives against Schistosoma mansoni schistosomula and adult worms
- Sample size issues in multilevel logistic regression models
- Seed germination ecology of Ageratum houstonianum: A major invasive weed in Nepal
- Experiences of lifestyle change among women with gestational diabetes mellitus (GDM): A behavioural diagnosis using the COM-B model in a low-income setting
- Pharmacologic management of HCV treatment in patients with HCV monoinfection vs. HIV/HCV coinfection: Does coinfection really matter?
- The association between cigarette smoking and serum thyroid stimulating hormone, thyroid peroxidase antibodies and thyroglobulin antibodies levels in Chinese residents: A cross-sectional study in 10 cities
- Mouse movement measures enhance the stop-signal task in adult ADHD assessment
- Ecosystem functioning in urban grasslands: The role of biodiversity, plant invasions and urbanization
- Correction: KETOS: Clinical decision support and machine learning as a service – A training and deployment platform based on Docker, OMOP-CDM, and FHIR Web Services
- Does craniofacial morphology affect third molars impaction? Results from a population-based study in northeastern Germany
- Hyperconnectivity during screen-based stories listening is associated with lower narrative comprehension in preschool children exposed to screens vs dialogic reading: An EEG study
- Weight loss is associated with improved quality of life among rural women completers of a web-based lifestyle intervention
- Long-term high-grain diet altered the ruminal pH, fermentation, and composition and functions of the rumen bacterial community, leading to enhanced lactic acid production in Japanese Black beef cattle during fattening
- Beyond detoxification: Pleiotropic functions of multiple glutathione S-transferase isoforms protect mice against a toxic electrophile
- Golgi reassembly and stacking protein 65 downregulation is required for the anti-cancer effect of dihydromyricetin on human ovarian cancer cells
- SSR marker development in Clerodendrum trichotomum using transcriptome sequencing
- Risk factors for the carriage of Streptococcus infantarius subspecies infantarius isolated from African fermented dairy products
- Development of an intervention tool for precision oral self-care: Personalized and evidence-based practice for patients with periodontal disease
- Personal values in adolescence and psychological distress in adults: A cross-sectional study based on a retrospective recall
- Overactive bladder and bladder pain syndrome/interstitial cystitis in primary Sjögren’s syndrome patients: A nationwide population-based study
- Clinical utility of combined preimplantation genetic testing methods in couples at risk of passing on beta thalassemia/hemoglobin E disease: A retrospective review from a single center
- Hip stress distribution - Predictor of dislocation in hip arthroplasties. A retrospective study of 149 arthroplasties
- Mortality, morbidity, and cardiac surgery in Injection Drug Use (IDU)-associated versus non-IDU infective endocarditis: The need to expand substance use disorder treatment and harm reduction services
- Pup mortality in New Zealand sea lions (Phocarctos hookeri) at Enderby Island, Auckland Islands, 2013-18
- In vitro endothelial cell migration from limbal edge-modified Quarter-DMEK grafts
- Liquid Chromatography/Mass Spectrometry based serum metabolomics study on recurrent abortion women with antiphospholipid syndrome
- Gut carriage of antimicrobial resistance genes among young children in urban Maputo, Mozambique: Associations with enteric pathogen carriage and environmental risk factors
- Prepubertal nutrition alters Leydig cell functional capacity and timing of puberty
- Reliability of the Swedish version of the Evidence-Based Practice Attitude Scale assessing physiotherapist’s attitudes to implementation of evidence-based practice
- Mitochondrial alarmins are tissue mediators of ventilator-induced lung injury and ARDS
- Complete Chloroplast Genomes of Vachellia nilotica and Senegalia senegal: Comparative Genomics and Phylogenomic Placement in a New Generic System
- Retraction: Over-Expression of Superoxide Dismutase Ameliorates Cr(VI) Induced Adverse Effects via Modulating Cellular Immune System of Drosophila melanogaster
- Effect of pre-season training phase on anthropometric, hormonal and fitness parameters in young soccer players
- Exosomes from conditioned media of bone marrow-derived mesenchymal stem cells promote bone regeneration by enhancing angiogenesis
- Outcome of patients with heart failure after transcatheter aortic valve implantation
- Fatty acid profile of Romanian’s common bean (Phaseolus vulgaris L.) lipid fractions and their complexation ability by β-cyclodextrin
- Appropriate empirical antibiotic therapy and mortality: Conflicting data explained by residual confounding
- Treatment of corneal endothelial damage in a rabbit model with a bioengineered graft using human decellularized corneal lamina and cultured human corneal endothelium
- Telbivudine on IgG-associated hypergammaglobulinemia and TGF-β1 hyperactivity in hepatitis B virus-related liver cirrhosis
- Correction: Axial variation of deoxyhemoglobin density as a source of the low-frequency time lag structure in blood oxygenation level-dependent signals
- Correction: Mobile health-based physical activity intervention for individuals with spinal cord injury in the community: A pilot study
- Retraction: Placental expression of CD100, CD72 and CD45 is dysregulated in human miscarriage
- Correction: Use of IoT sensing and occupant surveys for determining the resilience of buildings to forest fire generated PM2.5
- Correction: The modulation of facial mimicry by attachment tendencies and their underlying affiliation motives in 3-year-olds: An EMG study
- Correction: Cognitive impairment in multiple sclerosis: An exploratory analysis of environmental and lifestyle risk factors
- Discovering novel disease comorbidities using electronic medical records
- Glutathione contributes to efficient post-Golgi trafficking of incoming HPV16 genome
- Epidemiology and antimicrobial resistance of methicillin-resistant Staphylococcus aureus isolates colonizing pigs with different exposure to antibiotics
- Social information use in adolescents: The impact of adults, peers and household composition
- Public practices on antibiotic use: A cross-sectional study among Qatar University students and their family members
- Effects of Topper Training on psychosocial problems, self-esteem, and peer victimisation in Dutch children: A randomised trial
- Comparative studies of two generations of NanoString nCounter System
- General practitioners’ perceptions of delayed antibiotic prescription for respiratory tract infections: A phenomenographic study
- Can altered magnetic field affect the foraging behaviour of ants?
- Parasitic infections and medical expenses according to Health Insurance Review Assessment claims data in South Korea, 2011–2018
- A prospective observational study of on-treatment plasma homocysteine levels as a biomarker of toxicity, depression and vitamin supplementation lead-in time pre pemetrexed, in patients with non-small cell lung cancer and malignant mesothelioma
- A strategy to identify protein-N-myristoylation-dependent phosphorylation reactions of cellular proteins by using Phos-tag SDS-PAGE
- Expression profile of sonic hedgehog signaling-related molecules in basal cell carcinoma
- Seasonal alternation of the ontogenetic development of the moon jellyfish Aurelia coerulea in Maizuru Bay, Japan
- Reliability of measurement of active trunk movement in wheelchair basketball players
- Chinese SLE Treatment and Research group (CSTAR) registry: Clinical significance of thrombocytopenia in Chinese patients with systemic lupus erythematosus
- Does source credibility matter for point-of-decision prompts? A quasi-experimental field study to increase stair use
- Male-pattern baldness and incident coronary heart disease and risk factors in the Heinz Nixdorf Recall Study
- Quality and utilization patterns of maternity waiting homes at referral facilities in rural Zambia: A mixed-methods multiple case analysis of intervention and standard of care sites
- Determining an optimal pool size for testing beef herds for Johne’s disease in Australia
- Correction: Change in larval fish assemblage in a USA east coast estuary estimated from twenty-six years of fixed weekly sampling
- APOE-knockout in rabbits causes loss of cells in nucleus pulposus and enhances the levels of inflammatory catabolic cytokines damaging the intervertebral disc matrix
- Testing Species Assignments in Extant Terebratulide Brachiopods: A Three-dimensional Geometric Morphometric Analysis of Long-Looped Brachidia
- A daily diary study on maladaptive daydreaming, mind wandering, and sleep disturbances: Examining within-person and between-persons relations
- Improved chemotherapy modeling with RAG-based immune deficient mice
- Effect of tracheal antimicrobial peptide on the development of Mannheimia haemolytica pneumonia in cattle
- The internal realities of individuals with type 2 diabetes – a functional framework of self-management practices via Grounded Theory approach
- Role of platelet parameters in early detection and prediction of severity of preeclampsia: A comparative cross-sectional study at Ayder comprehensive specialized and Mekelle general hospitals, Mekelle, Tigray, Ethiopia
- eIF4E and 4EBP1 are prognostic markers of head and neck squamous cell carcinoma recurrence after definitive surgery and adjuvant radiotherapy
- Smoking and other determinants of bone turnover
- Oxygen delivery, oxygen consumption and decreased kidney function after cardiopulmonary bypass
- School engagement of children in early grades: Psychometric, and gender comparisons
- Correction: A review of the elusive bicolored iris Snouted Treefrogs (Anura: Hylidae:Scinax uruguayus group)
- Perceived attractiveness of Czech faces across 10 cultures: Associations with sexual shape dimorphism, averageness, fluctuating asymmetry, and eye color
- Discovery of stable and prognostic CT-based radiomic features independent of contrast administration and dimensionality in oesophageal cancer
- Correction: Population-based dementia prediction model using Korean public health examination data: A cohort study
- Location, location, location: Close ties among older continuing care retirement community residents
- Correction: ISED: Constructing a high-resolution elevation road dataset from massive, low-quality in-situ observations derived from geosocial fitness tracking data
- Correction: Use of validated objective methods of locomotion characteristics and weight distribution for evaluating the efficacy of ketoprofen for alleviating pain in cows with limb pathologies
- Monitoring fine root growth to identify optimal fertilization timing in a forest plantation: A case study in Northeast Vietnam
- Metabolic costs of spontaneous swimming in Sprattus sprattus L., at different water temperatures
- Enterovirus 71 vaccine acceptance among parents of children < 5 years old and their knowledge of hand, foot and mouth disease, Chongqing, China, 2017
- Correction: Transcriptome profiling of mouse brain and lung under Dip2a regulation using RNA-sequencing
- Genetic diversity and antiretroviral resistance-associated mutation profile of treated and naive HIV-1 infected patients from the Northwest and Southwest regions of Cameroon
- Maximum parsimony interpretation of chromatin capture experiments
- Multiple innate antibacterial immune defense elements are correlated in diverse ungulate species
- Incidence and characteristics of ventricular tachycardia in patients after percutaneous coronary revascularization of chronic total occlusions
- Estimating measures of latent variables from m-alternative forced choice responses
- Clade F AAVHSCs cross the blood brain barrier and transduce the central nervous system in addition to peripheral tissues following intravenous administration in nonhuman primates
- First evidence of hepatitis E virus infection in a small mammal (yellow-necked mouse) from Croatia
- The inhibitory effects of polypyrrole on the biofilm formation of Streptococcus mutans
- Self-reported adverse drug effects and associated factors among H. pylori infected patients on standard triple therapy: Prospective follow up study
- Upregulation of ERK phosphorylation in rat dorsal root ganglion neurons contributes to oxaliplatin-induced chronic neuropathic pain
- Characterization of the relationship between neutron production and thermal load on a target material in an accelerator-based boron neutron capture therapy system employing a solid-state Li target
- Remote heart rate monitoring - Assessment of the Facereader rPPg by Noldus
- Seroprevalence of rubella virus antibodies among pregnant women in the Center and South-West regions of Cameroon
- Effectiveness of steam sterilization of reusable medical devices in primary and secondary care public hospitals in Nepal and factors associated with ineffective sterilization: A nation-wide cross-sectional study
- Relevance of HTLV-1 proviral load in asymptomatic and symptomatic patients living in endemic and non-endemic areas of Argentina
- Ritualized aggressive behavior reveals distinct social structures in native and introduced range tawny crazy ants
- The value of kinetic glomerular filtration rate estimation on medication dosing in acute kidney injury
- Screening and characterization of long noncoding RNAs involved in the albinism of Ananas comosus var. bracteatus leaves
- Visual attention to emotional faces in adolescents with social anxiety disorder receiving cognitive behavioral therapy
- A Q fever outbreak associated to courier transport of pets
- Antibodies against measles and rubella virus among different age groups in Thailand: A population-based serological survey
- Molecular diet analysis of Anguilliformes leptocephalus larvae collected in the western North Pacific
- Correction: The relationship between context, structure, and processes with outcomes of 6 regional diabetes networks in Europe
- Correction: The C-reactive protein/albumin ratio as an independent predictor of mortality in patients with severe sepsis or septic shock treated with early goal-directed therapy
- Interleukin 21 (IL-21) regulates chronic allograft vasculopathy (CAV) in murine heart allograft rejection
- Semantic computational analysis of anticoagulation use in atrial fibrillation from real world data
- The implementation of HTA in medicine pricing and reimbursement policies in Indonesia: Insights from multiple stakeholders
- International experiences during United States ophthalmology residency training: Current structure of international experiences and perspectives of faculty mentors at United States training institutions
- Questionable utility of digoxin in left-ventricular assist device recipients: A multicenter, retrospective analysis
- Genotyping and outcomes of presumptive second line ART failure cases switched to third line or maintained on second line ART in Mumbai, India
- A mathematical model of honey bee colony dynamics to predict the effect of pollen on colony failure
- Airway microbiome composition correlates with lung function and arterial stiffness in an age-dependent manner
- An odorant receptor from Anopheles gambiae that demonstrates enantioselectivity to the plant volatile, linalool
- Factors associated with full immunization of children 12–23 months of age in Ethiopia: A multilevel analysis using 2016 Ethiopia Demographic and Health Survey
- Additional evidence that the rat renal interstitium contracts in vivo
- Factors affecting acceptance of at-birth point of care HIV testing among providers and parents in Kenya: A qualitative study
- Removal efficiency of central vacuum system and protective masks to suspended particles from dental treatment
- Psychological well-being and distress in patients with generalized anxiety disorder: The roles of positive and negative functioning
- Conventional rotator cuff versus all-suture anchors—A biomechanical study focusing on the insertion angle in an unlimited cyclic model
- Are viral-infections associated with Ménière’s Disease? A systematic review and meta-analysis of molecular-markers of viral-infection in case-controlled observational studies of MD
- An evaluation of genetic causes and environmental risks for bilateral optic atrophy
- Comparative vector competence of the Afrotropical soft tick Ornithodoros moubata and Palearctic species, O. erraticus and O. verrucosus, for African swine fever virus strains circulating in Eurasia
- Effects of the solubility of yeast cell wall preparations on their potential prebiotic properties in dogs
- Carbogen gas-challenge BOLD fMRI in assessment of liver hypoxia after portal microcapsules implantation
- Socioeconomic determinants of cancer screening utilisation in Latin America: A systematic review
- Development of an easy-to-use questionnaire assessing critical care nursing competence in Japan: A cross-sectional study
- Towards successful business process improvement – An extension of change acceleration process model
- Correction: Dietary polyphenols as a safe and novel intervention for modulating pain associated with intervertebral disc degeneration in an in-vivo rat model
- Correction: Phylogenetic analysis of hepatitis C virus among HIV/ HCV co-infected patients in Nigeria
- Correction: Relationship between self-disclosure to first acquaintances and subjective well-being in people with schizophrenia spectrum disorders living in the community
- Impact of ATM rs1801516 on late skin reactions of radiotherapy for breast cancer: Evidences from a cohort study and a trial sequential meta-analysis
- Involvement of human and canine MRP1 and MRP4 in benzylpenicillin transport
- Soil organic matter rather than ectomycorrhizal diversity is related to urban tree health
- Clinical risk assessment in early pregnancy for preeclampsia in nulliparous women: A population based cohort study
- The relation between circulating levels of vitamin D and parathyroid hormone in children and adolescents with overweight or obesity: Quest for a threshold
- Behavioural evidence for segments as subordinate units in Chinese spoken word production: The form-preparation paradigm revisited
- Correction: Measuring the impact of an interdisciplinary learning project on nursing, architecture and landscape design students’ empathy
- Analysis of the characteristics of chemotherapy-resistant renal cell carcinomas based on global transcriptional analysis of their tissues and cell lines
- The characteristics and treatment patterns of patients with Parkinson’s disease in the United States and United Kingdom: A retrospective cohort study
- Sex differences in youth elite swimming
- Unconventional SCCmec types and low prevalence of the Panton-Valentine Leukocidin exotoxin in South African blood culture Staphylococcus aureus surveillance isolates, 2013-2016
- Prosocial perceptions of taxation predict support for taxes
- Correction: Clonality analysis of pulmonary tumors by genome-wide copy number profiling
- Improved oxygenation following methylprednisolone therapy and survival in paediatric acute respiratory distress syndrome
- Normative values for relative schoolbag weight in primary school children aged 6-14 from Czech Republic: A pilot study
- Correction: Intensive longitudinal modelling predicts diurnal activity of salivary alpha-amylase
- Correction: SNV discovery and functional candidate gene identification for milk composition based on whole genome resequencing of Holstein bulls with extremely high and low breeding values
- Monoclonal antibody anti-PBP2a protects mice against MRSA (methicillin-resistant Staphylococcus aureus) infections
- Diurnal variations of amplitude of accommodation in different age groups
- HHIP overexpression inhibits the proliferation, migration and invasion of non-small cell lung cancer
- Infusion of HIV-1 Nef-expressing astrocytes into the rat hippocampus induces enteropathy and interstitial pneumonitis and increases blood–brain-barrier permeability
- Correlation analysis of cold-related gene expression with physiological and biochemical indicators under cold stress in oil palm
- Student engagement and wellbeing over time at a higher education institution
- Gender-based differences in platelet function and platelet reactivity to P2Y12 inhibitors
- Influence of season and social context on male giant panda (Ailuropoda melanoleuca) vocal behaviour
- Development of an intravaginal ring for the topical delivery of Aurora kinase A inhibitor, MLN8237
- Differential phosphorylation determines the repressor and activator potencies of GLI1 proteins and their efficiency in modulating the HPV life cycle
- Polymorphisms of FDPS, LRP5, SOST and VKORC1 genes and their relation with osteoporosis in postmenopausal Romanian women
- Depression increases the risk of rotator cuff tear and rotator cuff repair surgery: A nationwide population-based study
- Interleukin-38 interacts with destrin/actin-depolymerizing factor in human keratinocytes
- Correction: Fast, quantitative, murine cardiac 19F MRI/MRS of PFCE-labeled progenitor stem cells and macrophages at 9.4T
- Persistent post-discharge opioid prescribing after traumatic brain injury requiring intensive care unit admission: A cross-sectional study with longitudinal outcome
- Genome-wide histone modification profiling of inner cell mass and trophectoderm of bovine blastocysts by RAT-ChIP
- Aerobic exercise increases post-exercise exogenous protein oxidation in healthy young males
- Selection for tandem stop codons in ciliate species with reassigned stop codons
- Research ethics in inter- and multi-disciplinary teams: Differences in disciplinary interpretations
- Correction: Analyzing data from the digital healthcare exchange platform for surveillance of antibiotic prescriptions in primary care in urban Kenya: A mixed-methods study
- Correction: People making deontological judgments in the Trapdoor dilemma are perceived to be more prosocial in economic games than they actually are
- LFRET, a novel rapid assay for anti-tissue transglutaminase antibody detection
- Effects of isotemporal substitution of sedentary behavior with light-intensity or moderate-to-vigorous physical activity on cardiometabolic markers in male adolescents
- Topical estrogen application to wounds promotes delayed cutaneous wound healing in 80-week-old female mice
- Correction: An international randomised placebo-controlled trial of a four-component combination pill (“polypill”) in people with raised cardiovascular risk
- Correction: Evaluation of lung toxicity risk with computed tomography ventilation image for thoracic cancer patients
- Retraction: Pathological Roles of Interleukin-22 in the Development of Recurrent Hepatitis C after Liver Transplantation
- Correction: Elevational Distribution and Ecology of Small Mammals on Tanzania's Second Highest Mountain
- Correction: Decreased breast cancer-specific mortality risk in patients with a history of thyroid cancer
- Correction: Fecal microbiota dysbiosis in macaques and humans within a shared environment
- Correction: The center of pressure and ankle muscle co-contraction in response to anterior-posterior perturbations
- PLOS One
- Archiv čísel
- Aktuální číslo
- Informace o časopisu
Nejčtenější v tomto čísle
- A daily diary study on maladaptive daydreaming, mind wandering, and sleep disturbances: Examining within-person and between-persons relations
- Pathways to conspiracy: The social and linguistic precursors of involvement in Reddit’s conspiracy theory forum
- A 3’ UTR SNP rs885863, a cis-eQTL for the circadian gene VIPR2 and lincRNA 689, is associated with opioid addiction
- A substitution mutation in a conserved domain of mammalian acetate-dependent acetyl CoA synthetase 2 results in destabilized protein and impaired HIF-2 signaling
Zvyšte si kvalifikaci online z pohodlí domova
Mazová zátka a její řešení
nový kurzVšechny kurzy