PyRates—A Python framework for rate-based neural simulations
Authors:
Richard Gast aff001; Daniel Rose aff003; Christoph Salomon aff001; Harald E. Möller aff002; Nikolaus Weiskopf aff003; Thomas R. Knösche aff001
Authors place of work:
MEG and Cortical Networks Group, Max Planck Institute for Human Cognitive and Brain Sciences, Leipzig, Saxony, Germany
aff001; Nuclear Magnetic Resonance Group, Max Planck Institute for Human Cognitive and Brain Sciences, Leipzig, Saxony, Germany
aff002; Neurophysics Department, Max Planck Institute for Human Cognitive and Brain Sciences, Leipzig, Saxony, Germany
aff003; Institute for Biomedical Engineering and Informatics, TU Ilmenau, Ilmenau, Thuringia, Germany
aff004
Published in the journal:
PLoS ONE 14(12)
Category:
Research Article
doi:
https://doi.org/10.1371/journal.pone.0225900
Summary
In neuroscience, computational modeling has become an important source of insight into brain states and dynamics. A basic requirement for computational modeling studies is the availability of efficient software for setting up models and performing numerical simulations. While many such tools exist for different families of neural models, there is a lack of tools allowing for both a generic model definition and efficiently parallelized simulations. In this work, we present PyRates, a Python framework that provides the means to build a large variety of rate-based neural models. PyRates provides intuitive access to and modification of all mathematical operators in a graph, thus allowing for a highly generic model definition. For computational efficiency and parallelization, the model is translated into a compute graph. Using the example of two different neural models belonging to the family of rate-based population models, we explain the mathematical formalism, software structure and user interfaces of PyRates. We show via numerical simulations that the behavior of the PyRates model implementations is consistent with the literature. Finally, we demonstrate the computational capacities and scalability of PyRates via a number of benchmark simulations of neural networks differing in size and connectivity.
Keywords:
Network analysis – Simulation and modeling – Neurons – Electroencephalography – Synapses – Membrane potential – Neural networks – Data visualization
Introduction
In the last decades, computational neuroscience has become an integral part of neuroscientific research. A major factor in this development has been the difficulty in gaining mechanistic insights into neural processes and structures from recordings of brain activity, without additional computational models. This problem is strongly linked to the actual signals recorded with non-invasive brain imaging techniques such as magneto - and electroencephalography (MEG/EEG) or functional magnetic resonance imaging (fMRI). Even though the spatiotemporal resolution of these techniques has improved throughout the years, they are still limited with respect to the state variables of the brain they can detect. Spatial resolution in fMRI has been pushed to the sub-millimeter range [1, 2], whereas EEG and MEG offer a temporal resolution thought to be sufficient to capture all electrophysiological signaling processes in the brain [3]. On the EEG/MEG side, the measured signal is thought to arise mainly from the superposition of primary and secondary currents resulting from post-synaptic polarization of a large number of cells with similarly oriented dendrites [4]. Therefore, the activity of cell-types that do not show a clear orientation preference (like most inhibitory interneurons [5]) are difficult to detect, even though they might play a crucial role for the underlying neural dynamics. Further issues of EEG/MEG acquisitions are their limited sensitivity to sub-cortical signal sources and the inverse problem one faces when trying to locate the source of a signal within the brain [6]. On the other hand, fMRI measures hemodynamic signals of the brain related to local blood flow, blood volume, and blood oxygenation levels and thus delivers only an indirect, strongly blurred view of the dynamic state of the brain [7]. These limitations create the need for additional models and assumptions that link the recorded signals to the underlying neural activity. Computational models of neural dynamics (called neural models henceforth) are particularly important for interpreting neuroimaging data and understanding the neural mechanisms involved in their generation [8–10]. Such models have been developed for various spatial and temporal scales of the brain, ranging from highly detailed models of a single neuron to models that represent the combined activity of thousands of neurons. In any case, they provide observation and control over all state variables included in a given model, thus offering mechanistic insights into their dynamics.
Numerical simulations are the primary method used to investigate neural models beyond pure mathematical analyses and to link model variables with experimental data. Such numerical simulations can be highly computationally expensive and scale with the model size, simulation time, and temporal resolution of the simulation. Different software tools have been developed for neural modeling that offer various solutions to render numerical simulations more efficient (e.g. TVB [11], DCM [12], Nengo [13], NEST [14], ANNarchy [15], Brian [16], and NEURON [17]). Since the brain is a highly parallelized information processing system (i.e. all of its 1˜00 billion cells can transform and propagate signals in parallel), most models of the brain have a high degree of structural parallelism as well. This means that they involve calculations that can be evaluated in parallel, such as the updating of the firing rate of each cell population inside a neural model. One obvious way of optimizing numerical simulations of neural models is to distribute these calculations on parallel hardware, such as the central and graphical processing units (CPUs and GPUs) of a computer. Neural simulation tools that implement such mechanisms include Nengo [13], ANNarchy [15], Brian [16], NEURON [18], and PCSIM [19], for example. Each of these tools has been built for neural models of certain families. For example, the setup and simulation of complex multi-compartment models of single spiking neurons is supported by NEURON, Nest, and Brian. Tools dedicated to networks of point neurons, on the other hand, include ANNarchy, Nengo, and PCSIM (though NEURON, Nest, and Brian support point neuron models as well). Finally, neural population models are the focus of TVB and DCM. For most of these tools, a pool of pre-implemented models of the given families are available that the user can choose from. However, often it is not possible to add new models or modeling mechanisms to this pool without considerable effort. This holds true especially if one wants to benefit from the parallelization and optimization features of the respective software. Exceptions are tools like ANNarchy and Brian that include code generation mechanisms. These allow the user to define the mathematical equations that certain parts of the model will be governed by and will automatically translate them into the same representations that the pre-implemented models follow. Unfortunately, the tools that provide such code generation mechanisms are limited with regards to the model parts that can be customized in such a way and concerning the families of neural models they can express. It should be mentioned that NEURON allows one to build custom, multi-compartment neuron models that can be used in network models without any impact on the parallelization mechanisms. This enables the setup of heterogeneous, multi-scale models of single cells without loss of parallelization efficiency via high-level interfaces to NEURON such as BioNet or NetPyNE [20, 21]. However, these mechanisms do not allow the modification of the underlying equations of the state variables in the model.
To summarize, we believe that the increasing number of computational models and numerical simulations in neuroscientific research necessitates the development of neural simulation tools that:
follow a well-defined mathematical formalism in their model configurations,
are flexible enough so that scientists can implement custom models that go beyond pre-implemented models in both the mathematical equations and network structure,
are structured in such a way that models are easily understood, set up, and shared with other scientists,
enable efficient numerical simulations on parallel computing hardware.
To address these needs, we present PyRates, an open-source Python framework for rate-based neural modeling (freely available at https://www.cbs.mpg.de/departments/neurophysics/software/pyrates and https://github.com/pyrates-neuroscience/PyRates). The basic aim behind PyRates is to provide a well-documented, thoroughly tested, and computationally powerful framework for neural modeling and simulations. In PyRates, both the model configuration and simulation can be performed with a few lines of code. Each model is represented by a graph of nodes and edges, with the former representing the model units (i.e. single cells, cell populations, …) and the latter the information transfer between them. Further, as we will explain in more detail below, the user has full control over the mathematical equations that define the nodes and edges. To enable an efficient parallelization, the underlying model equations are translated into a compute graph, specifying which parts of the equations have to be evaluated serially and which parts can be processed in parallel. Parallel hardware that PyRates can employ for this purpose includes central processing units (CPUs), graphical processing units (GPUs), and compute clusters with multiple machines. In principle this will allow the implementation of any kind of dynamic neural system that can be expressed as a graph. For the remainder of this article we will focus on a specific family of neural models, namely rate-based population models (hence the name PyRates).
The focus on population models is (i) in accordance with the expertise of the authors and (ii) serves the purpose of keeping the article concise. However, the emphasis of the paper lies on introducing the features and capacities of the framework, how to define a model in PyRates, and how to use the software to perform and analyze neural simulations. Therefore, we first introduce the mathematical syntax used for all of our models, followed by an explanation how single mathematical equations are structured in PyRates to form a neural network model. To this end, we provide a step-by-step example of how to configure and simulate a particular neural population model. We continue with a section dedicated to the evaluation of different numerical simulation scenarios. First, we validate the implementation of two exemplary neural population models in PyRates by replicating key behaviors of the models reported in their original publications. Second, we demonstrate the computational efficiency and scalability of PyRates via a number of benchmarks that constitute realistic numerical simulation scenarios. Finally, we discuss the strengths and limitations of PyRates for developing and simulating neural models.
Neural population models
Investigating the human brain via EEG/MEG or fMRI means working with signals that are assumed to represent changes in the average activity of large cell populations. While these signals can be explained by detailed models of single cell processes, such models come with a state space of much higher dimensionality than the measured signals. Indeed, several approaches exist that employ this strategy to model the neural processes underlying macroscopic brain signals [22, 23] via tools such as the Human Neocortical Neurosolver or LFPy [24, 25]. As an alternative approach, neural mass models have widely been used to model the dynamics of the macroscopic brain signals of interest [26]. That is, they describe the average activity of large cell populations in the brain via a mean-field approach, rendering their investigation computationally much less expensive than single cell approaches [8, 27, 28]. As a downside, all information about the underlying single cell activity, except for the mean of their probability distribution is lost. Thus, their application is limited to neurodynamic questions addressing changes in those macroscopic state variables. Often, neural mass models express the state of each neural population by an average membrane potential and an average firing rate. The dynamics and transformations of these state variables can typically be formulated via three mathematical operators. The first two describe the input-output structure of a single population: While the rate-to-potential operator (RPO) transforms synaptic inputs into average membrane potential changes, the potential-to-rate operator (PRO) transforms the average membrane potential into an average firing rate output. Widely used forms for these operators are a convolution operation with an exponential kernel for the RPO (e.g. [29, 30, 32]) and a sigmoidal, instantaneous transformation for the PRO (e.g. [28, 33, 34]). The third operator is the coupling operator (CO) that transforms outgoing into incoming firing rates and is thus used to establish connections across populations. By describing the dynamics of large neural population networks via three basic transforms (RPO, PRO & CO), neural mass models combine computational feasibility with biophysical interpretability. Due to these desirable qualities, neural mass models have become an attractive method for studying neural dynamics on a meso - and macroscopic scale [8, 10, 26]. They have been established as one of the most popular methods for modeling EEG/MEG and fMRI measurements and have been able to account for various dynamic properties of experimentally observed neural activity [31, 32, 35–40].
A particular neural mass model that we will use repeatedly in later sections is the three-population circuit introduced by Jansen and Rit [29]. The Jansen-Rit circuit (JRC) was originally proposed as a mechanistic model of the EEG signal generated by the visual cortex [29, 41]. Historically, however, it has been used as a canonical model of cell population interactions in a cortical column [35, 36, 40]. Its basic structure can be seen in Fig 1B, which can be thought of as a single cortical column. The signal generated by this column is the result of dynamic interactions between a projection cell population of pyramidal cells (PC), an excitatory interneuron population (EIN) and an inhibitory interneuron population (IIN). For certain parametrizations, the JRC has been shown to be able to produce key features of a typical EEG signal, such as the waxing-and-waning alpha oscillations [29, 30, 42]. A detailed account of the model’s mathematical description will be given in the next section, where we will demonstrate how to implement models in PyRates, using the example of the JRC equations. We chose to employ the JRC as an exemplary population model in this article since it is an established model used in numerous publications that the reader can compare with our report.
Another neural population model that we will make use of in this paper is the one described by Montbrió and colleagues [43]. It has been mentioned as one of the next generation neural mass models that provide a more precise mean-field description than classic neural population models like the JRC [44]. The model proposed by Montbrió and colleagues represents a mathematically exact mean-field derivation of a network of globally coupled quadratic integrate-and-fire neurons [43]. It can thus represent every macroscopic state the single cell network may fall into. This distinguishes it from the JRC, since it has no such correspondence between a single-cell network and the population descriptions. Furthermore, the macroscopic states (average membrane potential and average firing rate) of the Montbrió model can be linked directly to the synchronicity of the underlying single-cell network, a property that benefits the investigation of EEG phenomena such as event-related (de-)synchronization. We chose this model as our second example case due to its novelty and its potential importance for future neural population studies. Within the domain of rate-based neural population models, we found these two models sufficiently distinct to demonstrate the ability of PyRates to implement different model structures.
The framework
PyRates requires an installation of Python 3.6 or newer and can be installed via the package manager pip, simply by calling pip install pyrates from the command line. The core goal of PyRates is to let scientists focus on the model definition, i.e. working out the equation structure, while the software takes care of transforming them into computationally efficient network structures and numerical simulations thereof.
This goal is reflected in the modular software design and user interface. Model configuration and simulation are realized as separate software layers as depicted in Fig 2. The frontend features multiple user interfaces for different levels of programming expertise and allows scientists to flexibly implement custom models. The models are then transformed into a graph-based intermediate representation that the backend interprets to perform efficient computations. We employ a custom mathematical syntax and domain specific model definition language. Both focus on readability and are much reduced in comparison to general-purpose languages. The following paragraphs explain the user interfaces and how to define models and run simulations. More details on implementation and installation can be found in the online documentation (see pyrates.readthedocs.io).
Mathematical syntax
Neural network models are usually defined by a set of (differential) equations and corresponding parameters. In PyRates, researchers can define computational models in terms of algebraic equations and relations between different equations. The mathematical syntax strongly follows the conventions used in Python, though in some cases common alternatives are allowed as well. For example, the equation a=5·(b+c)d2 can be written as a = 5 * (b + c) / d**2. Here, the power operator is a double asterisk ** as used in Python. However, the commonly used caret ^ symbol is implemented as a synonym. Parentheses, for example (b + c) indicate grouping. Arguments to a function are also grouped using parenthesis, e.g. exp(2) or sin(4 + 3).
Currently, PyRates does not include a full computer algebra system. By convention, the variable of interest is positioned on the left-hand-side of the equality sign and all other variables and operations on the right-hand-side. First-order differential equations are allowed as an exception: The expression d/dt * a is treated as a new variable and can thus be positioned as the variable of interest on the left-hand-side as in
The above examples assumed scalar variables, but vectors and higher-dimensional variables may also be used in PyRates. In particular, indexing is possible via square brackets […] and mostly follows the conventions of numpy [45], the de facto standard for numerics in Python. Supported indexing methods include single element indexing a[3], slicing [1 : 5], slicing along multiple axes separated by commas [0 : 5, 3 : 7], multi-element indexing a[[3], [4]], and slicing via Boolean masks a[a>5] for variable a of suitable dimensions. For more detailed explanations, please refer to the numpy documentation. A full list of supported mathematical symbols and pre-implemented functions can be found in the supporting information (S1 and S2 Tables).
Components of a network model
In contrast to most other neural simulation frameworks, PyRates treats network models as network graphs rather than matrices. This works well for densely connected graphs, but gives the most computational benefit for sparse networks. Fig 1 gives an overview of the different components that make up a model. A network graph is called a circuit and is spanned by nodes and edges. For a neural population model, one node may correspond to one neural population with the edges encoding coupling between populations. In addition, circuits may be nested arbitrarily within other circuits. Small, self-contained network models can thus easily be reused in larger networks with a clear and intuitive hierarchy. Fig 1A illustrates this feature with a fictional large-scale circuit which comprises four brain areas and connections between them. Each area may consist of a single node or a more complex sub-circuit. Edges between areas are depicted as lines. Fig 1B zooms in on one brain area containing a three-node sub-circuit. This local model corresponds to the previously defined Jansen-Rit model [29, 41].
An individual network node consists of operators. One operator defines a scope, in which a set of equations and related variables are uniquely defined. It also acts as an isolated computational unit that transforms any number of input variables into one output. Whether an equation belongs to one operator or another decides the order in which equations are evaluated. Equations belonging to the same operator will be evaluated simultaneously, whereas equations in different operators can be evaluated in sequence. As an example, Fig 1C shows the operator structure of a pyramidal cell population in the Jansen-Rit model. There are two rate-to-potential operators (Eqs (5) and (6)), one for inhibitory synapses (RPOi) and one for excitatory synapses (RPOe). The two RPOs contain identical equations but different values assigned to the parameters. The subsequent potential-to-rate operator (PRO, Eq (7)) sums both synaptic contributions into one membrane potential that is transformed into an outgoing firing rate. In this configuration, the two synaptic contributions are evaluated independently, but possibly in parallel. The equation in the PRO on the other hand will only be evaluated after the synaptic RPOs. The exact order of operators is determined based on the respective input and output variables.
Apart from nodes, edges may also contain coupling operators. An example is shown in Fig 1D. Each edge propagates information from a source node to a target node. In between, one or more operators can transform the relevant variable, representing coupling dynamics between source and target nodes. This could represent an axon or bundle of axons that propagates firing rates between neural masses. Depending on distance, location or myelination, these axons may behave differently, which is encoded in operators. Note that edges can read any one variable from a source population and can thus be used to represent dramatically different coupling dynamics than those described above.
The described distinction between circuits, nodes, edges and operators is meant to provide an intuitive understanding of a model while giving the user many degrees of freedom in defining custom models.
Model definition language
PyRates provides multiple interfaces to define a network model (see Fig 2). Templates are building blocks that can be reused at multiple scales. Complex heterogeneous networks will consist of many different templates whereas large homogeneous networks may reuse a few templates many times. For brevity, we will focus on the YAML-based template interface which is most suitable for users with little programming expertise. YAML is a data serialization standard using a syntax that is reduced to the absolute necessities and focuses on readability (version 1.2, [46]).
All examples in this section are based on the popular Jansen-Rit model [29]. Additionally, we will briefly discuss the implementation of the Montbrió model [43] for completeness. The Jansen-Rit model is a three-population neural mass model whose basic structure is illustrated in Fig 1. The model is formulated in two state-variables: Average membrane potential V and average firing rate r. Incoming presynaptic firing rates rin are converted to post-synaptic potentials via the rate-to-potential operator (RPO). In the Jansen-Rit model, this is a second-order, linear, ordinary differential equation:
JansenRitSynapse: # name of the template
description: … # optional descriptive text
base: OperatorTemplate # parent template or Python class to use
equations: # unordered list of equations
- ’d/dt * V = V_t’
- ’d/dt * V_t = h/tau * r_in − (1./tau)^2 * V − 2.*1./tau*V_t’
variables:
# additional information to define variables in equations
r_in:
default: input # defines variable type
V:
default: output
V_t:
description: integration variable # optional
default: variable
tau:
description: Synaptic time constant
default: constant
h:
default: constant
Similar to Python, YAML structures information using indentation to improve readability. The base attribute may either refer to the Python class that is used to load the template or a parent template. Using the equations attribute, an unsorted list of string-based equations should be provided. These equations will be evaluated simultaneously during simulations and need to follow the above defined mathematical syntax. The variables attribute gives additional information regarding the variables used within equations. The only mandatory attribute of variables is default which defines the variable type, data type and initial value. Additional attributes can be defined, e.g. a description may help users to understand the template itself or variables in the equations.
For the Jansen-Rit model, it is useful to define sub-templates for excitatory and inhibitory synapses. These share the same equations, but have different values for the constants τ and h which can be set in sub-templates, e.g. (values based on [41]):
ExcitatorySynapse:
base: JansenRitSynapse # parent template
variables:
h:
default: 3.25e−3
tau:
default: 10e−3
Above, the JansenRitSynapse template is reused as the base template and only the relevant variables are adapted. A single neural mass in the Jansen-Rit model may be implemented as a network node with one or more synapse operators and one operator that the transforms average membrane potential to the average firing rate (PRO, Eq (11)/Eq (7)):
PyramidalCellPopulation:
base: NodeTemplate # Python class for node templates
operators:
- ExcitatorySynapse # output: V
- InhibitorySynapse # output: V
- PotentialToRateOperator # input: V
This node template represents the neural population of pyramidal projection cells as depicted in Fig 1C. PyRates internally orders operators based on their input and output variables. This way, complex operator hierarchies can be built without any additional syntax as long as input and output variable names are consistent across all operators. In this example, two synapse operators receive input from other neural masses (or external sources), transforming firing rates r into membrane potentials V (rate-to-potential operators, RPO). The synapse operators are independent and on the same hierarchical level. Equations in these two operators can thus be evaluated in parallel. Both synapse operators define the membrane potential V as output. The potential-to-rate (PRO) operator on the other hand, receives V as input. This is recognised as a dependency and the PRO will be evaluated after the synapse operators have been processed.
Note that cyclic operator dependencies are not allowed. If necessary, self-edges can be used to connect variables to each other within one node, to implement cyclic dependencies.
As described earlier, circuits are used in PyRates to represent one or more nodes and their connecting edges. The following circuit template represents the Jansen-Rit model as depicted in Fig 1B:
JansenRitCircuit:
base: CircuitTemplate
nodes: # list nodes and label them
EIN: ExcitatoryInterneurons
IIN: InhibitoryInterneurons
PC: PyramidalCellPopulation
edges: # assign edges between nodes
# − [<source>, <target>, <template_or_operators>, <values>]
- [PC/PRO/r_out, IIN/RPO_e/r_in, null, {weight: 33.75}]
- [PC/PRO/r_out, EIN/RPO_e/r_in, null, {weight: 135.}]
- [EIN/PRO/r_out, PC/RPO_e/r_in, null, {weight: 108.}]
- [IIN/PRO/r_out, PC/RPO_i/r_in, null, {weight: 33.75}]
The nodes attribute specifies which node templates to use and assigns labels to them. These labels are used in edges to define source and target, respectively. Each edge is defined by a list (square brackets) of up to four elements: (1) source specifier, (2) target specifier, (3) template (containing operators), and (4) additional named values or attributes. The format for source and target is <node_label>/<operator>/<variable>, i.e. an edge establishes a link to a specific variable in a specific operator within a node. Multiple edges can thus interact with different variables on the same node. Note that for brevity the operators were abbreviated here in contrast to the definitions above. In addition to source and target, it is possible to also include operators inside an edge that allow additional transformations specific to the coupling between the source and target variables. These operators can be defined in a separate edge template that is referred to in the third list entry. In this particular example, the entry is left empty (“null”). The fourth list entry contains named attributes, which are saved on the edge. Two default attributes exist: weight scales the output variable of the edge before it is projected to the target and defaults to 1.0; delay determines whether the information passing through the edge is applied instantaneously (i.e. in the next simulation time step) or after a discrete delay (defined in seconds). By default, no delays are set. Additional attributes may be defined, e.g. to adapt values of operators inside the edge.
In the above example, all edges project the outgoing firing rate rout from one node to the incoming firing rate rin of a different node, rescaled by an edge-specific weight. Values of the latter are taken from the original paper by Jansen and Rit [29]. This example with the given values can be used to simulate alpha activity in EEG or MEG.
Jansen and Rit also investigated how more complex components of visual evoked potentials arise from the interaction of two circuits, one representing visual cortex and one prefrontal cortex [29]. In PyRates, circuits can be inserted into other circuits alongside nodes. A template for the two-circuit example from [29] could look like this:
DoubleJRCircuit:
base: CircuitTemplate
circuits: # define sub−circuits and their labels
JRC1: JansenRitCircuit
JRC2: JansenRitCircuit
edges: # assign edges between nodes in sub−circuits
- [JRC1/PC/PRO/r_out, JRC2/PC/RPO_e/r_in, null, {weight: 10.,
delay: 0.0}]
- [JRC2/PC/PRO/r_out, JRC1/PC/RPO_e/r_in, null, {weight: 10.,
delay: 0.0}]
Circuits are added to the template in the same way as nodes, the only difference being the attribute name circuits. Edges are also defined similarly. Source and target keys start with the assigned sub-circuit label, followed by the label of the population within that circuit and so on. For heterogeneous or small networks it makes sense to build the entire circuit hierarchy with templates. For large-scale networks, PyRates also allows the loading of a connectivity matrix from which to build the network. This is realized via the Python interface. Assuming that a JRC template has been set up containing the 3 nodes (PC, EIN, IIN), the syntax for adding edges from a matrix is:
jrc = circuit_template.apply()
jrc.add_edges_from_matrix(source_var=’RPO/m_out’,
target_var=’RPO_e_pc/m_in’,
nodes=[’PC’, ’EIN’, ’IIN’],
weight = C)
Here, C refers to a 3 x 3 matrix containing the connection strengths. It is also possible to define entire models (or even templates) using mere Python. Similar to YAML templates, templates defined in Python can also be adapted when they are referenced, to perform minor tweaks instead of defining multiple templates for small variations. For more information on alternative ways to set up a network and further examples, we refer the interested reader to the online documentation at pyrates.readthedocs.io.
From model to simulation
All frontend interfaces translate a user-defined model into a set of Python objects that we call the intermediate representation (IR, middle layer in Fig 2). This paragraph will give more details on the IR and explain how a simulation can be started and evaluated based on the previously defined model. A model circuit is represented by the CircuitIR class, which builds a network graph representation of the model using the software package networkx [47]. The package is commonly used for graph-based data representation in Python and provides many interfaces to manipulate, analyze and visualize graphs. The CircuitIR contains additional convenience methods to plot a network graph or access and manipulate its content. The following lines of code load the JansenRitCircuit template that was defined above and transforms the template into a CircuitIR instance:
from pyrates.frontend import CircuitTemplate
# read YAML template and convert to Python object
template = CircuitTemplate.from_yaml(“path/to/file/JansenRitCircuit”)
# transform template object to intermediate representation
circuit_ir = template.apply()
The apply method also accepts additional arguments to change parameter values while applying the template.
Actual simulations take place in the compute backend (see Fig 2). Currently, the user can choose between two backend implementations. The default backend is based on NumPy and provides particularly fast simulations on single CPUs and, in combination with the Python distribution provided by Intel, on multiple CPUs. The alternative backend is based on tensorflow 2.0 [48], which makes use of dataflow graphs to run parallel computations on CPUs and GPUs. For optimal parallelization of network representations, PyRates can summarize identical sets of (scalar) mathematical operations into more efficient vector operations. Automatic vectorization can be enabled via the vectorization keyword argument of the compile method:
net = circuit_ir.compile(vectorization = True, dt = 0.0001, solver=’euler’)
where vectorization = False indicates that the model should be processed as is, while vectorization = True reduces identical nodes to one vectorized node. dt refers to the (integration) time step in seconds used during simulations. By default, differential equations are integrated using an explicit Euler algorithm which is the most common algorithm used in stochastic network simulations. In addition, PyRates provides two alternative numerical solvers that can be chosen via the solver argument. They implement the midpoint method (solver=’midpoint’) and a 2/3 Runge-Kutta algorithm (solver=’rk23’). The unit of dt and the choice of a suitable value depends on time constants defined in the model. Here, we chose a value of 0.1ms, which is consistent with the numerical integration schemes reported in the literature (e.g. [40, 43]). A simulation can be executed by calling the run method, e.g.:
results, time = net.run(simulation_time = 10.0, # in seconds
outputs={’V’: ‘PC/PRO/V’},
sampling_step_size = 0.01) # in seconds
This example defines a total simulation time of 10 seconds and specifies that only the membrane voltage from PC (pyramidal cell) nodes should be observed. Note that variable histories will only be stored for variables defined as output. All other data is overwritten as soon as possible to save memory. Along this line, a sampling step-size can be defined that determines the distance in time between observation points of the output variable histories. Collected data is formatted as a DataFrame from the pandas package [49], a powerful data structure for serial data that comes with a lot of convenience methods, e.g. for plotting or statistics. To gain any meaningful results from this implementation of a JRC, it needs to be provided input in a biologically plausible range. External inputs can be included via input variables. To allow for external input being applied pre-synaptically to the excitatory synapse of the pyramidal cells, one would have to modify the JansenRitSynapse as follows:
JansenRitSynapse_with_input:
base: JansenRitSynapse
equations:
replace: # insert u by replacing m_in by a sum
r_in: (r_in + u)
variables:
u: # adding the new additional variable u
default: input
We reused the previously defined JansenRitSynapse template and added the variable u as an input variable by replacing occurrences of r_in by (r_in + u) using string replacement. The previously defined equation
results, time = net.run(simulation_time = 10.0,
outputs={’V’: ‘PC/PRO/V’},
inputs={’PC/RPO_e/u’: ext_input})
In this example, ext_input would be an array defining the input value for each simulation step. This subsumes a working implementation of a single Jansen-Rit model that can be used as a base unit to construct models of cortico-cortical networks. By using the above defined YAML templates, all simulations described in the next section that are based on Jansen-Rit models can be replicated.
Implementing the Montbrió model
The neural mass model recently proposed by Montbrió and colleagues is a single-population model that is derived from all-to-all coupled quadratic integrate-and-fire (QIF) neurons [43]. It establishes a mathematically exact correspondence between macroscopic (population level) and microscopic (single cell level) states and equations. The model consists of two coupled differential equations that describe the dynamics of mean membrane potential V and mean firing rate r:
MontbrioOperator:
base: OperatorTemplate
equations:
- “d/dt * r = delta/(PI * tau**2) + 2.*r*V/tau”
- “d/dt * V = (V**2 + eta + inp) / tau + J*r − tau*(PI*r)**2”
variables:
…
Variable definitions are omitted in the above template for brevity. Since a single population in the Montbrió model is already capable of oscillations, a meaningful network can be set up with a single neural mass as follows:
MontbrioPopulation:
base: NodeTemplate
operators:
- MontbrioOperator
MontbrioNetwork:
base: CircuitTemplate
nodes:
Pop1: MontbrioPopulation
edges:
This template can be used to replicate the simulation results presented in the next section that were obtained from the Montbrió model.
Exploring model parameter spaces
When setting up computational models, it is often important to explore the relationship between model behavior and model parametrization. PyRates offers a simple but efficient mechanism to run many such simulations on parallel computation hardware. The function pyrates.utility.grid_search takes a single model template along with a specification of the parameter grid to sample sets of parameters from. It then constructs multiple model instances with differing parameters and adds them to the same circuit, but without edges between individual instances. All model instances can thus be computed efficiently in parallel on the same parallel hardware instead of executing them consecutively. How many instances can be simulated on a single piece of hardware depends on the memory capacities and number of parallel compute units. Additionally, PyRates provides an interface for deploying large parameter grid searches across multiple work stations. This allows the splitting of large parameter grids into smaller grids that can be run in parallel on multiple machines. For a tutorial on how to use those functionalities, we refer the interested reader to the jupyter notebooks that can be found at https://github.com/pyrates-neuroscience/PyRates/tree/master/documentation which contain various examples of parameter grid searches.
Visualization and data analysis
PyRates features built-in functions for quick data analysis and visualization as well as native support for external libraries due to its commonly used data structures. On the one hand, network graphs are based on networkx Graph objects [47]. Hence, the entire toolset of networkx is natively supported, including an interface to the graphviz [50] library. Additionally, we provide functions for quick visualization of a network model within PyRates. On the other hand, simulation results are returned as a pandas.DataFrame which is a widely adopted structure for tabular data with powerful built-in analysis methods [49]. While this data structure already allows for an intuitive interface to the seaborn plotting library by itself, we also provide a number of visualization functions such as time-series plots, heat maps, and polar plots in PyRates. Most of those provide direct interfaces to plotting functions from seaborn and MNE-Python, the latter being an analysis toolbox for EEG and MEG data [51, 52].
Results
The aim of this section is to (1) demonstrate that numerical simulations of models implemented in PyRates show the expected results and (2) analyze the computational capabilities and scalability of PyRates on a number of benchmarks. As explained previously, we chose the models proposed by Jansen and Rit and Montbrió and colleagues as exemplary models for these demonstrations. We will replicate the basic model dynamics under extrinsic input as reported in the original publications. To this end, we will compare the relationship between changes in the model parametrization and the model dynamics with the relationship reported in the literature. For this purpose, we will use the grid search functionality of PyRates, allowing evaluation of the model behavior for multiple parametrizations in parallel. Having validated the model implementations in PyRates, we will use the JRC as base model for a number of benchmark simulations. All simulations performed throughout this section use an explicit Euler integration scheme with a simulation step size of 0.1 ms. They have been run on a custom Linux machine with an NVidia Geforce Titan XP GPU with 12GB G-DDR5 graphic memory, a 3.5 GHz Intel Core i7 (4th generation) and 16 GB DDR3 working memory. Note that we provide Python scripts that can be used to replicate all of the simulation results reported below. They are available at https://github.com/pyrates-neuroscience/PyRates/tree/master/documentation.
Validation of model implementations
Jansen-Rit circuit
The Jansen-Rit circuit has been shown to be able to produce a variety of steady-state responses [29, 30, 42]. In other words, the JRC has a number of bifurcation parameters that can lead to qualitative changes in the model’s state dynamics. In their original publication, Jansen and Rit delivered random synaptic input between 120 and 320 Hz to the projection cells while changing the scaling of the internal connectivities C [29] (reflected by the parameters Cxy in Fig 1B). As visualized in Fig 3 of [29], the model produced (noisy) sinusoidal oscillations in the alpha band for connectivity scalings C = 128 and C = 135, thus reflecting a major component of the EEG signal in primary visual cortex. For other scalings, it produced either random noise (C = 68 and C = 1350) or large-amplitude spiking behavior (C = 270 and C = 675). We chose to replicate this figure with our implementation of the JRC in PyRates. We simulated 2 s of JRC behavior for each internal connectivity scaling C ∈ {68, 128, 135, 270, 675, 1350}. All other model parameters were set according to the parameters chosen in [29]. The average membrane potential of the projection cell population (depicted as PC in Fig 1B) is depicted in the left panel of Fig 3A for each condition.
Results are in line with our expectations, showing random noise for both the highest and the lowest value of C, alpha oscillations for C = 128 and C = 135, and large-amplitude spiking behavior for the remaining conditions. Furthermore, the membrane potential amplitudes were in the same range as reported in [29] in each condition. Next to the connectivity scaling, the synaptic time scales τ of the JRC are further bifurcation parameters that have been shown to be useful to tune the model to represent different frequency bands of the brains’ EEG signal [30]. As demonstrated by David and Friston [30], varying these time scales between 1 and 60 ms leads to JRC dynamics that are representative of the delta, theta, alpha, beta and gamma frequency bands in the EEG. Due to its practical importance, we chose to replicate this parameter study as well. We systematically varied the excitatory and inhibitory synaptic timescales (τe and τi) between 1 and 60 ms. For each condition, we adjusted the excitatory and inhibitory synaptic efficacies, such that the product Hτ was held constant. All other parameters were chosen as reported in [30] for the respective simulation. We then simulated the JRC behavior for 1 min and evaluated the maximum frequency of the power spectral density of the pyramidal cells membrane potential fluctuations. The results of this procedure are visualized in the right panel of Fig 3A. They are in accordance with the results reported in [30], showing response frequencies that range from the delta (1-4 Hz) to the gamma (> 30 Hz) range, as well as the hyper signal not representative of any EEG signal for too high ratios of τiτe. Together, we are confident that our implementation of the JRC in PyRates accurately resembles the originally proposed model within the investigated dynamical regimes. Note, however, that faster synaptic time-constants or extrinsic input fluctuations should be handled carefully. For such cases, we recommend either reducing the above reported integration step size or choosing a more elaborate numerical solver (midpoint or Runge-Kutta 2/3) in order to avoid numerical instabilities.
Montbrió model
Even though the Montbrió model is only a single-population model, it has been shown to have a rich dynamic profile with bi-stable and even chaotic regimes [43, 53]. To investigate the response of the model to non-stationary inputs, Montbrió and colleagues initialized the model in a bi-stable dynamic regime and applied (1) constant and (2) sinusoidal extrinsic forcing within a short time-window. In the constant forcing condition they were able to show that the two different stable dynamic regimes of the model (stable focus and stable fixed point) could be switched between via a simple, transient step-function input. In the oscillatory forcing condition, on the other hand, they demonstrated that smooth changes in the extrinsic input was also able to cause the same state transitions in the model. This behavior can be observed in Fig 2 in [43] and we chose to replicate it with our implementation of the Montbrió model in PyRates. With all model parameters set to the values reported in [43] for this experiment, we simulated the model’s behavior for the constant and periodic forcing conditions. For both conditions, the external forcing strength was chosen as I = 30, while the frequency of the oscillatory forcing was chosen as ω=π20. Note that in accordance with the model definition of Montbrió and colleagues, time-dependent variables are reported in units of τ (which was set to τ = 1), while all other variables such as v and I are unit-less [43]. As shown in Fig 3B, we were able to replicate the above described model behavior. Constant forcing led to damped oscillatory responses of different frequency and amplitude at both onset and offset of the stimulus, whereas oscillatory forcing led to damped oscillatory responses around the peaks of the sinusoidal stimulus. Again, we take this as strong evidence for the correct representation of the Montbrió model by PyRates.
Benchmarks
Neural simulation studies can differ substantially in the size and structure of the networks they investigate, leading to different computational loads. In PyRates, a number of backends and parallelization strategies are available for numerical simulations and their optimal choice may depend on the network architecture. In this paragraph, we describe how simulation durations in PyRates scale as a function of network size and connectivity and how this scaling behavior differs between different backends and parallelization types. For this purpose, we considered parallelization on a single machine vs. parallelized computations on multiple machines and simulations using the NumPy backend (CPU-based, version 1.17.2) vs. simulations using the tensorflow backend (supporting GPU parallelization, version 2.0.0-rc0).
In a first benchmark, we simulated the behavior of different JRC networks using either the NumPy or the tensorflow backend. Each network consisted of N ∈ {20, 21, 22, …, 211} randomly coupled JRCs with a coupling density of p ∈ {0.0, 0.25, 0.5, 0.75, 1.00}. Here, the latter refers to the relative number of pairwise connections between all pairs of JRCs that were established. Each JRC was parametrized such that it expressed waxing-and-waning alpha oscillations (C = 135.0; for all other parameters see [29]). The behavior of these networks was evaluated for a total of 1 s, leading to an overall number of 104 simulation steps to be performed in each condition (given a step-size of 0.1 ms). To make the benchmark comparable to realistic simulation scenarios, we applied extrinsic input to each JRC and tracked the average membrane potential of every JRC’s projection cell population with a time resolution of 1 ms as output. Thus, the number of input and output operations also scaled with the network size. We assessed the time in seconds needed by PyRates to execute the run method of its backend in each condition, thus excluding the model initiation time. This was done via the Python internal package time. To account for random fluctuations due to background processes, we chose to report average simulation durations over NR = 10 repetitions of each condition. To provide an estimate of these fluctuations, we calculated the average variation in the simulation duration d over conditions as σ(d)=1Nc∑cmax(dc)-min(dc)〈dc〉, with c being the condition index and 〈d〉 representing the expectation of d. We found average variations of σ(d) = 0.42s and σ(d) = 1.55s for the NumPy and tensorflow backend, respectively, which reflects the slightly stronger noise in the simulation duration we found for the tensorflow backend. The average simulation durations over conditions are visualized in Fig 4A and 4B for the NumPy and tensorflow backend, respectively. The average run times of the NumPy and tensorflow backend ranged between 2.5 and 18.1 seconds, and 13.2 and 20.3 seconds, respectively. Thus, the NumPy backend (running merely on the CPU) outperformed the tensorflow backend (running on CPU and GPU) on all considered network configurations. However, on large and densely connected networks, the tensorflow and NumPy backend expressed nearly the same simulation duration. This reflects the stronger parallelization capacities of the tensorflow backend, which is visible in its weaker scaling of the simulation duration with network size and coupling density. We expect this trend to lead to an advantage of the tensorflow backend for even larger networks. However, simulations of larger network sizes exceeded the working memory capacities of the machine we ran our benchmarks on. Together, these results demonstrate the effectiveness of PyRates’ backends in parallelizing network computations on CPUs and GPUs. While the NumPy backend showed the shortest run times for this benchmark, the tensorflow backend expressed less scaling behavior with the problem size. Thus, the latter might be superior in large-scale neural model simulations performed on a machine with better hardware configurations.
In a second benchmark, we examined the simulation time scaling in parameter sweeps performed via the grid search functionalities of PyRates on a single machine and on a cluster of 3 machines. The hardware specifications of each of those 3 machines were comparable to the ones reported in the beginning of this section. As an exemplary parameter sweep, we explored a parameter set which is prototypically investigated within the fields of connectomics and coupled oscillators, i.e. the connectivity scaling and propagation delay. To this end, we set up a network of 2 JRCs, with bidirectional coupling between their pyramidal cell populations. The bidirectional coupling was parametrized via a homogeneous coupling strength κ and a homogeneous propagation delay τ (in seconds). In each benchmark condition a parameter sweep was performed across all combinations of κ and τ. Thereby, the parameters were always varied within the ranges of κ ∈ [0.0, 200.0] and τ ∈ [0.0, 0.01], and only the number of steps between the limits of those ranges was varied across benchmark conditions. For example, a benchmark condition with 10 steps, would translate into a parameter sweep across all combinations of 10 different values of κ and τ and would hence result in N = 100 differently parametrized versions of the 2 coupled JRCs. All other parameters of the JRCs were the same as in the first benchmark. In each benchmark condition, 10 numerical simulation were performed for every network parametrization with a simulation time of T = 1s. Their average duration in dependence of N is visualized in Fig 4C for simulations performed on a single machine and on a 3-machine cluster, either using the NumPy or the tensorflow backend. Note that we also plotted the standard deviations across the 10 repetitions in each condition as error bars. However, those deviations were too small to be visible in Fig 4C. Also, these durations were in general larger than the ones reported in the first benchmark, because they include both the time to build the network and the time to perform the actual simulation. Since the network building process is not yet parallelized in PyRates, its duration shows stronger scaling behavior with the network size than the mere simulation times. As can be seen, the single machine outperformed the cluster for N < 900. Again, this can be explained by the overhead generated by the distribution of parameter chunks across the different machines and the collection of results from those machines after they finished their simulations. However, with increasing N, the benefit of parallelized simulations on multiple machines started to outweigh those costs, until reaching a maximum speed-up at N = 10000, where the 3-machine cluster was approximately 3 times faster than the single machine. This demonstrates that the maximal speed-up of parameter sweeps performed on compute clusters directly scales with the size of the cluster, which is a beneficial property for investigations of high-dimensional parameter spaces. In addition, Fig 4C shows that the speed-ups that resulted from different choices of backends were relatively small in comparison to the speed-ups achieved by running a parameter sweep on a single machine or on a cluster. This reflects the strong influence of the time it takes PyRates to build the network on the overall simulation duration T. Since these network building times do not differ between backends, we found a relatively small difference between NumPy and tensorflow backends in those parameter sweeps. Nonetheless, the tensorflow backend eventually outperformed the NumPy backend on large parameter sweeps (N ≥ 2500).
Discussion
In this work we have presented PyRates, a novel Python framework for designing neural models and performing numerical simulations of their dynamic behavior. We introduced the frontend, including its user interfaces, structure, and mathematical syntax, and demonstrated how to build neural models, run numerical simulations, and perform parameter sweeps in PyRates. For validation purposes, we implemented the neural population models proposed by Jansen and Rit [29] and Montbrió and colleagues [43] and successfully replicated their key dynamic features. These results strongly suggest that both the model configurations produced by our frontend and their translation into compute graphs by our backend are accurate. Additionally, we tested the computational power of our backend on a number of different benchmarks. Those benchmarks consisted of simulations of JRC networks that differed in the number of their nodes and edges. We demonstrated that the CPU-based NumPy backend is most efficient for simulations of networks with up to a few thousand nodes, whereas the tensorflow backend (which can make use of GPUs) simulation durations showed the best scaling behavior with the problem size. The latter suggests an advantage of the tensorflow backend over the NumPy backend on large-scale neural network simulations with more than 10000 nodes. Indeed, we found the tensorflow backend to be more efficient on parameter sweeps over N ≥ 2500 parametrizations. Furthermore, we have shown how model parameter sweeps can benefit from parallelization on multiple machines.
From these results, we conclude that PyRates is a powerful simulation framework that enables highly efficient neural network simulations. The main questions we will address in the following discussion are (1) why is PyRates a valuable addition to established neural simulation software, and (2) in which cases can researchers benefit from using it.
PyRates in the context of existing neural simulation frameworks
Within the domain of neural simulation frameworks, PyRates belongs to the family of graph-based neural simulators. In both its frontend and backend, it represents a neural model as a network of nodes connected by edges. PyRates makes no inherent assumptions concerning the spatial scale of nodes and edges in its networks, thus rendering it feasible for neural networks of any type. Additionally, PyRates allows for merging and hierarchical organization of neural networks by building graphs from sub-graphs. Hence, our tool can also be used to build multi-scale models, e.g. a macroscopic network of connected neural populations, with some populations of interest being represented by sub-networks of single neurons.
This being said, PyRates has only been systematically tested on rate-based population models. These differ qualitatively from spiking neuron models in terms of output variable, which is continuous for rate-based models but discrete for spiking neuron models. While it is in principle possible to implement such discrete spiking mechanisms, the compute engine is not optimized for it, since it projects output variables at each time-step to their targets in the network. This means that the projection operation will be performed regardless of whether a spike is produced or not, leading to considerable increases in computation time for large, densely connected, single cell networks. Hence, when dealing with neuroscientific questions that implicate the use of spiking neuron models, we currently recommend to use simulation tools such as Nengo [13], NEST [14], ANNarchy [15], Brian [16], NEURON [17], BioNet [20] or NetPyNE [21]. Such questions may involve problems where specific spike-timings have a non-negligible influence, where dendritic tree architectures are important or, more generally, where the variable of interest loses its meaning when averaged over time or over many neurons.
Of course, all of the above listed tools can be applied in other scenarios as well, even for macroscopic neural network simulations. However, if the variable of interest in a given model can be expressed as an average over many cells and single cell dynamics can be neglected, mean-field approaches such as the neural population models used throughout this article will be considerably faster and thus allow for the investigation of larger networks and parameter spaces. In general, most frameworks that feature generic code generation should allow the implementation of such models. From the above mentioned tools, Brian and ANNarchy belong to that category. Brian is strictly aimed at spike-based simulations and thus not optimized for continuous output variables like firing rates, whereas ANNarchy provides features for spike - and rate-based neural simulations. Nonetheless, it is designed for single-cell network simulations, so most of the templates it provides for neurons or populations are not necessarily applicable to mean-field models. Other simulation frameworks that provide explicit mean-field modeling mechanisms include TVB [54], DCM [12], DiPDE [55] and MIIND [56]. Among these, the latter two focus strongly on so-called population density techniques, which can describe the full voltage probability distribution of a population of neurons, instead of merely the mean. Both DiPDE and MIIND focus on the leaky integrate-and-fire neuron as the underlying model to derive the voltage probability distribution from. The advantage of this technique is the more direct and precise relationship between the single cell activity and the population level as compared to mean-field approaches. However, this advantage is payed for by higher computational demands, since a discretized probability distribution is computed at each simulation step instead of a mere point-estimate (i.e. the mean). TVB and DCM, on the other hand, focus on the same mathematical group of neurodynamic models as currently implemented in PyRates, i.e. neural population models. The focus of TVB lies in the simulation of large-scale brain networks via established, preferably homogeneous, local population models. DCM is explicitly designed to infer parameters of a fixed set of pre-implemented models based on a given measure of brain activity. While being the optimal choice for their respective use-cases, both tools lack functionalities that help when implementing custom models.
We consider the core strengths of PyRates to be its highly generic model definition (comparable to a pure code generation approach) and its two graph-based backends. The former distinguishes PyRates from other simulation frameworks, since it allows the customization of every part of a neural network, as long as a network structure with nodes and edges defined by mathematical operators is maintained. Every single computation that is performed in a PyRates simulation, and every variable that it uses, is defined in the frontend and can be accessed and edited by the user. This allows, for example, the addition of custom synapse types, plasticity mechanisms, complex somatic integration mechanisms, or even axonal cable properties. In addition, edges can access and connect all variables existing pre - or post-node, thus enabling the implementation of projections or plasticity mechanisms that depend on population variables other than firing rates. This generic approach makes PyRates particularly valuable for neuroscientists interested in developing novel neural models or extending existing ones.
A notion of caution should be added here. The degrees of freedom we provide for setting up models and simulations in PyRates imply that we do not provide safeguards for questionable model definitions. Except for their syntactical correctness, model equations and their hierarchical relationships will not be questioned further by PyRates. Also, inputs and outputs to the model will be added exactly as defined by the user. In other words, while PyRates does provide a considerable number of convenience functions to quickly set up and simulate large neural networks, it still requires users to be aware of potential numerical issues they could run into, if the model or simulation would not be set up correctly. Typical pitfalls include numerical overflows if variables become to large or small for the chosen data type, simulation step sizes that were chosen too large for the internal timescales of a given model, and random variables that are sampled at each simulation step without taking into account the dependency between sampling frequency and simulation step size. We tested numerical solvers providing adaptive time steps as an alternative to our fixed step size solvers to handle the problem of choosing an appropriate integration step size. However, we found those algorithms to be unsuited for network simulations in PyRates, since handling asynchronicity between network nodes created significant computational overhead.
Regarding PyRates’ second core strength, its backends, we have demonstrated its computational power in various scenarios. It provides optimized representations of large neural networks for simulations on CPUs and GPUs. Parallel execution of network simulations are particularly efficient when its nodes and edges are similar in their mathematical operators, since those similarities are exploited by the automatic vectorization mechanisms of PyRates. In turn, this means that the effectiveness of the parallelization scales negatively with the relative amount of heterogeneity or sequentiality of the network. Networks that consist of highly diverse neural units governed by many, hierarchically dependent operators will show considerably longer simulation durations than networks with very similar elements and a flat operator hierarchy. Thus, PyRates is particularly suited for simulating large, homogeneous networks or conducting parameter studies on small - to medium sized networks. For the latter, PyRates scales particularly well, since the size of the parameter sweep that can be computed in parallel grows with the size of the compute cluster among which our cluster distribution mechanism can distribute the different parametrizations.
Integrating PyRates into neuroscientific work-flows
Neural population models such as the Jansen-Rit model [29] were originally conceived to understand or predict physical measures of brain activity such as LFPs, EEG/MEG or BOLD-fMRI. Modern neuroscientific workflows, however, go beyond forward simulations of brain activity. For example, The Virtual Brain [54] allows the use of structural (including diffusion-weighted) MRI scans to specify 3-dimensional structure and connectivity of a network design. Dynamic Causal Modeling [12] on the other hand can make use of measured brain activity to infer model parameters (e.g. connectivity constants) that best fit the given data. Both approaches have in common, that brain network models are adapted to individual subjects based on measured data.
PyRates integrates well with this concept for two reasons. (1) It is designed to provide an easy-to-use interface to construct and adapt network models with more flexibility than comparable tools. (2) Due to its modular software structure, PyRates can easily be extended to interface with existing tools. While the intermediate representation serves as a standard interface, the front - and backends can be exchanged to integrate with other software. For example, PyRates could be extended with a frontend that makes use of structural MRI data via tools provided by TVB. At the same time, the current backend could be extended to generate region-specific models compatible with TVB’s node model interface.
Currently, PyRates already provides a number of useful interfaces to tools that can be used for setting up models, subsequent analyses of simulated timeseries or model optimization. Two of those interfaces come with the graph representations PyRates uses for networks. As mentioned before, every PyRates network can either be translated into a NumPy - or tensorflow-based compute graph. This enables the usage of every NumPy or tensorflow function that could come in handy for setting up a model in PyRates, be it mathematical functions like sine or max, variable manipulation methods like reshape or squeeze or higher-level functions like error measurements or learning-rate decays. For the future, we also plan to provide interfaces to tensorflow’s model training features, which would allow to optimize parameters of neural models via gradient-descent based algorithms [48]. As an experimental feature, model parameter optimization is already possible via genetic algorithms, for which an interface is provided in the utility module of PyRates. They allow the definition of an arbitrary objective function for a given model and optimization of that function via subsequent model parameter updates employing mechanisms such as parameter re-combinations and mutations [57]. As with parameter sweeps, these algorithms can be executed either on a single or on multiple machines.
Since the intermediate representation fully builds on networkx graphs, the networkx API can be used to create, modify, analyze or visualize models. This includes interoperability with explicit graph visualization tools like Graphviz [49] or Cytoscape [58] that contain more elaborate features for visualizing complex biological networks. For the processing, analysis and visualization of simulation results, we provide a number of tools that mostly wrap MNE-Python [51, 52] and seaborn [59] functions. For extended use of MNE-Python, we also provide a wrapper that allows the translation of every output of a PyRates simulation into an MNE-Python object. This is particularly useful for forward simulations of EEG/MEG data, since MNE-Python comes with an extensive range of methods for the processing, analysis and visualization of such data. Finally, PyRates can also be used in combination with pygpc, a generalized polynomial chaos (GPC) toolbox for uncertainty quantification and sensitivity analysis publicly available under https://github.com/konstantinweise/pygpc. Via this interface it is possible to define a model plus a set of model parameters, including their respective uncertainties, and estimate how sensitive the model behavior is to changes in these parameters. It is important to note however, that the GPC cannot replace a proper bifurcation analysis and should currently only be used for parameter ranges where no bifurcations or multi-stabilities occur.
In summary, PyRates is readily integrated into complex neuroscientific workflows as a tool for bottom-up neural simulations. It provides interfaces to other Python tools that have been specifically designed to manage other parts of such workflows (e.g. data processing or visualization). More interfaces can easily be implemented due to the modular structure of the framework. This is further aided by the widely used data structures PyRates is built upon, like YAML-based configuration files, networkx graphs or pandas DataFrames. PyRates can thus be included as one independent component of larger neuroscientific workflows that can handle the definition, setup, numerical simulation and optimization of neural models.
Supporting information
S1 Table [pdf]
Overview of mathematical syntax.
S2 Table [pdf]
Overview of preimplemented mathematical functions.
Zdroje
1. Goense J, Merkle H, Logothetis N. High-Resolution fMRI Reveals Laminar Differences in Neurovascular Coupling between Positive and Negative BOLD Responses. Neuron. 2012;76(3):629–639. doi: 10.1016/j.neuron.2012.09.019 23141073
2. Huber L, Uludağ K, Möller HE. Non-BOLD contrast for laminar fMRI in humans: CBF, CBV, and CMRO2. NeuroImage. 2017. doi: 10.1016/j.neuroimage.2017.07.041 28736310
3. Niedermeyer E, Silva FHLd. Electroencephalography: Basic Principles, Clinical Applications, and Related Fields. Lippincott Williams & Wilkins; 2005.
4. Baillet S, Mosher J C, Leahy R M. Electromagnetic brain mapping. IEEE Signal Processing Magazine. 2001;18(6):14–30. doi: 10.1109/79.962275
5. Markram H, Toledo-Rodriguez M, Wang Y, Gupta A, Silberberg G, Wu C. Interneurons of the neocortical inhibitory system. Nature Reviews Neuroscience. 2004;5 : 793. doi: 10.1038/nrn1519 15378039
6. Attal Y, Schwartz D. Assessment of Subcortical Source Localization Using Deep Brain Activity Imaging Model with Minimum Norm Operators: A MEG Study. PLOS ONE. 2013;8(3):e59856. doi: 10.1371/journal.pone.0059856 23527277
7. Logothetis NK, Wandell BA. Interpreting the BOLD Signal. Annual Review of Physiology. 2004;66(1):735–769. doi: 10.1146/annurev.physiol.66.082602.092845 14977420
8. Deco G, Jirsa VK, Robinson PA, Breakspear M, Friston K. The Dynamic Brain: From Spiking Neurons to Neural Masses and Cortical Fields. PLOS Computational Biology. 2008;4(8):e1000092. doi: 10.1371/journal.pcbi.1000092 18769680
9. Friston KJ, Dolan RJ. Computational and dynamic models in neuroimaging. NeuroImage. 2010;52(3):752–765. doi: 10.1016/j.neuroimage.2009.12.068 20036335
10. Breakspear M. Dynamic models of large-scale brain activity. Nat Neurosci. 2017;20(3):340–352. doi: 10.1038/nn.4497 28230845
11. Sanz-Leon P, Knock SA, Spiegler A, Jirsa VK. Mathematical framework for large-scale brain network modeling in The Virtual Brain. NeuroImage. 2015;111 : 385–430. doi: 10.1016/j.neuroimage.2015.01.002 25592995
12. Friston KJ, Harrison L, Penny W. Dynamic causal modelling. NeuroImage. 2003;19(4):1273–1302. doi: 10.1016/s1053-8119(03)00202-7 12948688
13. Bekolay T, Bergstra J, Hunsberger E, DeWolf T, Stewart TC, Rasmussen D, et al. Nengo: a Python tool for building large-scale functional brain models. Frontiers in Neuroinformatics. 2014;7. doi: 10.3389/fninf.2013.00048 24431999
14. Gewaltig MO, Diesmann M. NEST (NEural Simulation Tool). Scholarpedia. 2007;2(4):1430. doi: 10.4249/scholarpedia.1430
15. Vitay J, Dinkelbach HU, Hamker FH. ANNarchy: a code generation approach to neural simulations on parallel hardware. Frontiers in Neuroinformatics. 2015;9. doi: 10.3389/fninf.2015.00019 26283957
16. Goodman DFM, Brette R. The Brian simulator. Frontiers in Neuroscience. 2009;3. doi: 10.3389/neuro.01.026.2009 20011141
17. Hines ML, Carnevale NT. The NEURON Simulation Environment. Neural Computation. 1997;9(6):1179–1209. doi: 10.1162/neco.1997.9.6.1179 9248061
18. Migliore M, Cannia C, Lytton WW, Markram H, Hines ML. Parallel network simulations with NEURON. Journal of Computational Neuroscience. 2006;21(2):119. doi: 10.1007/s10827-006-7949-5 16732488
19. Pecevski D, Natschläger T, Schuch K. PCSIM: a parallel simulation environment for neural circuits fully integrated with Python. Frontiers in Neuroinformatics. 2009;3. doi: 10.3389/neuro.11.011.2009 19543450
20. Gratiy SL, Billeh YN, Dai K, Mitelut C, Feng D, Gouwens NW, et al. BioNet: A Python interface to NEURON for modeling large-scale networks. PLOS ONE. 2018;13(8):e0201630. doi: 10.1371/journal.pone.0201630 30071069
21. Dura-Bernal S, Suter BA, Gleeson P, Cantarelli M, Quintana A, Rodriguez F, et al. NetPyNE, a tool for data-driven multiscale modeling of brain circuits. eLife. 2019;8:e44494. doi: 10.7554/eLife.44494 31025934
22. Jensen O, Goel P, Kopell N, Pohja M, Hari R, Ermentrout B. On the human sensorimotor-cortex beta rhythm: Sources and modeling. NeuroImage. 2005;26(2):347–355. doi: 10.1016/j.neuroimage.2005.02.008 15907295
23. Sherman MA, Lee S, Law R, Haegens S, Thorn CA, Hämäläinen MS, et al. Neural mechanisms of transient neocortical beta rhythms: Converging evidence from humans, computational modeling, monkeys, and mice. Proceedings of the National Academy of Sciences of the USA. 2016;113(33):E4885–E4894. doi: 10.1073/pnas.1604135113 27469163
24. Neymotin SA, Daniels DS, Caldwell B, Peled N, McDougal RA, Carnevale NT, et al. Human Neocortical Neurosolver; 2018.
25. Hagen E, Naess S, Ness TV, Einevoll GT. Multimodal Modeling of Neural Network Activity: Computing LFP, ECoG, EEG, and MEG Signals With LFPy 2.0. Frontiers in Neuroinformatics. 2018;12. doi: 10.3389/fninf.2018.00092
26. Coombes S. Large-scale neural dynamics: simple and complex. NeuroImage. 2010;52(3):731–739. doi: 10.1016/j.neuroimage.2010.01.045 20096791
28. Freeman WJ. Models of the dynamics of neural populations. Electroencephalography and clinical neurophysiology. 1978;34 : 9–18.
27. da Silva FHL, Hoeks A, Smits H, Zetterberg LH. Model of brain rhythmic activity. Biological cybernetics. 1974;15(1):27–37.
29. Jansen BH, Rit VG. Electroencephalogram and visual evoked potential generation in a mathematical model of coupled cortical columns. Biol Cybern. 1995;73(4):357–366. doi: 10.1007/bf00199471 7578475
30. David O, Friston KJ. A neural mass model for MEG/EEG:: coupling and neuronal dynamics. NeuroImage. 2003;20(3):1743–1755. doi: 10.1016/j.neuroimage.2003.07.015 14642484
31. Babajani A, Soltanian-Zadeh H. Integrated MEG/EEG and fMRI model based on neural masses. IEEE Transactions on Biomedical Engineering. 2006;53(9):1794–1801. doi: 10.1109/TBME.2006.873748 16941835
32. Cona F, Zavaglia M, Massimini M, Rosanova M, Ursino M. A neural mass model of interconnected regions simulates rhythm propagation observed via TMS-EEG. NeuroImage. 2011;57(3):1045–1058. doi: 10.1016/j.neuroimage.2011.05.007 21600291
33. Moran RJ, Kiebel SJ, Stephan KE, Reilly RB, Daunizeau J, Friston KJ. A neural mass model of spectral responses in electrophysiology. NeuroImage. 2007;37(3):706–720. doi: 10.1016/j.neuroimage.2007.05.032 17632015
34. Wang P, Knösche TR. A Realistic Neural Mass Model of the Cortex with Laminar-Specific Connections and Synaptic Plasticity—Evaluation with Auditory Habituation. PLOS ONE. 2013;8(10):e77876. doi: 10.1371/journal.pone.0077876 24205009
35. David O, Kiebel SJ, Harrison LM, Mattout J, Kilner JM, Friston KJ. Dynamic causal modeling of evoked responses in EEG and MEG. NeuroImage. 2006;30(4):1255–1272. doi: 10.1016/j.neuroimage.2005.10.045 16473023
36. Sotero RC, Trujillo-Barreto NJ, Iturria-Medina Y, Carbonell F, Jimenez JC. Realistically Coupled Neural Mass Models Can Generate EEG Rhythms. Neural Computation. 2007;19(2):478–512. doi: 10.1162/neco.2007.19.2.478 17206872
37. Bojak I, Oostendorp TF, Reid AT, Kötter R. Connecting Mean Field Models of Neural Activity to EEG and fMRI Data. Brain Topography. 2010;23(2):139–149. doi: 10.1007/s10548-010-0140-3 20364434
38. Spiegler A, Knösche TR, Schwab K, Haueisen J, Atay FM. Modeling Brain Resonance Phenomena Using a Neural Mass Model. PLOS Computational Biology. 2011;7(12):e1002298. doi: 10.1371/journal.pcbi.1002298 22215992
39. Onslow ACE, Jones MW, Bogacz R. A Canonical Circuit for Generating Phase-Amplitude Coupling. PLOS ONE. 2014;9(8):e102591. doi: 10.1371/journal.pone.0102591 25136855
40. Kunze T, Hunold A, Haueisen J, Jirsa V, Spiegler A. Transcranial direct current stimulation changes resting state functional connectivity: A large-scale brain network modeling study. NeuroImage. 2016;140 : 174–187. doi: 10.1016/j.neuroimage.2016.02.015 26883068
41. Jansen BH, Zouridakis G, Brandt ME. A neurophysiologically-based mathematical model of flash visual evoked potentials. Biological Cybernetics. 1993;68(3):275–283. doi: 10.1007/bf00224863 8452897
42. Spiegler A, Kiebel SJ, Atay FM, Knösche TR. Bifurcation analysis of neural mass models: Impact of extrinsic inputs and dendritic time constants. NeuroImage. 2010;52(3):1041–1058. doi: 10.1016/j.neuroimage.2009.12.081 20045068
43. Montbrió E, Pazó D, Roxin A. Macroscopic Description for Networks of Spiking Neurons. Physical Review X. 2015;5(2):021028.
44. Coombes S, Byrne A. Next Generation Neural Mass Models. In: Corinto F, Torcini A, editors. Nonlinear Dynamics in Computational Neuroscience. PoliTO Springer Series. Cham: Springer International Publishing; 2019. p. 1–16. Available from: https://doi.org/10.1007/978-3-319-71048-8_1.
45. Oliphant TE. A guide to NumPy. USA: Trelgol Publishing; 2006.
46. Ben-Kiki O, Evans C, döt Net I. YAML Ain’t Markup Language (YAML™) Version 1.2; 2009. Available from: https://yaml.org/spec/1.2/spec.html.
47. Hagberg AA, Schult DA, Swart PJ. Exploring Network Structure, Dynamics, and Function using NetworkX. In: Varoquaux G, Vaught T, Millman J, editors. Proceedings of the 7th Python in Science Conference. Pasadena, CA USA; 2008. p. 11–15.
48. Abadi M, Agarwal A, Barham P, Brevdo E, Chen Z, Citro C, et al. TensorFlow: Large-Scale Machine Learning on Heterogeneous Systems; 2015. Available from: http://tensorflow.org/.
49. McKinney W. Data Structures for Statistical Computing in Python. In: van der Walt S, Millman J, editors. Proceedings of the 9th Python in Science Conference; 2010. p. 51–56.
50. Gansner ER, North SC. An open graph visualization system and its applications to software engineering. Software—Practice and Experience. 2000;30(11):1203–1233. doi: 10.1002/1097-024X(200009)30 : 11%3C1203::AID-SPE338%3E3.0.CO;2-N
51. Gramfort A, Luessi M, Larson E, Engemann DA, Strohmeier D, Brodbeck C, et al. MEG and EEG data analysis with MNE-Python. Front Neurosci. 2013;7. doi: 10.3389/fnins.2013.00267 24431986
52. Gramfort A, Luessi M, Larson E, Engemann DA, Strohmeier D, Brodbeck C, et al. MNE software for processing MEG and EEG data. NeuroImage. 2014;86 : 446–460. doi: 10.1016/j.neuroimage.2013.10.027 24161808
53. Ratas I, Pyragas K. Macroscopic self-oscillations and aging transition in a network of synaptically coupled quadratic integrate-and-fire neurons. Physical Review E. 2016;94(3):032215. doi: 10.1103/PhysRevE.94.032215 27739712
54. Ritter P, Schirner M, McIntosh AR, Jirsa VK. The Virtual Brain Integrates Computational Modeling and Multimodal Neuroimaging. Brain Connectivity. 2013;3(2):121–145. doi: 10.1089/brain.2012.0120 23442172
55. Website: © Allen Institute for Brain Science. DiPDE Simulator [Internet]. Available from: https://github.com/AllenInstitute/dipde.; 2015.
56. Kamps Md, Baier V. Multiple Interacting Instantiations of Neuronal Dynamics (MIIND): a Library for Rapid Prototyping of Models in Cognitive Neuroscience. In: 2007 International Joint Conference on Neural Networks; 2007. p. 2829–2834.
57. Bäck T, Schwefel HP. An Overview of Evolutionary Algorithms for Parameter Optimization. Evolutionary Computation. 1993;1(1):1–23. doi: 10.1162/evco.1993.1.1.1
58. Shannon P, Markiel A, Ozier O, Baliga NS, Wang JT, Ramage D, et al. Cytoscape: a software environment for integrated models of biomolecular interaction networks. Genome Res. 2003;13(11):2498–2504. doi: 10.1101/gr.1239303 14597658
59. Waskom M. seaborn: statistical data visualization, URL: https://seaborn.pydata.org/; 2012.
Článok vyšiel v časopise
PLOS One
2019 Číslo 12
- Naděje budí časná diagnostika Parkinsonovy choroby založená na pachu kůže
- Ortostatická hypotenze zvyšuje riziko demence
- Stresovaní a vyčerpaní zdravotníci i pacienti? Semináře NÚDZ nabídnou zdarma první pomoc i praktické tipy
- Primární dysmenoreu můžou zmírnit jógové pozice
- Vědci našli způsob, jak omezit ztrátu vlasů při chemoterapii
-
Všetky články tohto čísla
- On simulating cold-stunned sea turtle strandings on Cape Cod, Massachusetts
- Palliative care for people living with HIV/AIDS: Factors influencing healthcare workers’ knowledge, attitude and practice in public health facilities, Abuja, Nigeria
- Batrachochytrium dendrobatidis infection in amphibians predates first known epizootic in Costa Rica
- Assemblage of Focal Species Recognizers—AFSR: A technique for decreasing false indications of presence from acoustic automatic identification in a multiple species context
- Epidemiological scenarios for human rabies exposure notified in Colombia during ten years: A challenge to implement surveillance actions with a differential approach on vulnerable populations
- Bio-control agents activate plant immune response and prime susceptible tomato against root-knot nematodes
- Impact of permagarden intervention on improving fruit and vegetable intake among vulnerable groups in an urban setting of Ethiopia: A quasi-experimental study
- Iron nanoparticle-labeled murine mesenchymal stromal cells in an osteoarthritic model persists and suggests anti-inflammatory mechanism of action
- Human recombinant erythropoietin improves motor function in rats with spinal cord compression-induced cervical myelopathy
- Generation of models from existing models composition: An application to agrarian sciences
- Genetic mapping of morpho-physiological traits involved during reproductive stage drought tolerance in rice
- Heroin type, injecting behavior, and HIV transmission. A simulation model of HIV incidence and prevalence
- Utilisation of health services fails to meet the needs of pregnancy-related illnesses in rural southern Ethiopia: A prospective cohort study
- Proposal for a Global Adherence Scale for Acute Conditions (GASAC): A prospective cohort study in two emergency departments
- Seasonal Change in Microbial Diversity and Its Relationship with Soil Chemical Properties in an Orchard
- Epidemiology of drug-resistant tuberculosis in Chongqing, China: A retrospective observational study from 2010 to 2017
- Use of an automated pyrosequencing technique for confirmation of sickle cell disease
- Bottom trawl catch comparison in the Mediterranean Sea: Flexible Turtle Excluder Device (TED) vs traditional gear
- Beta-caryophyllene enhances wound healing through multiple routes
- Modelling tick bite risk by combining random forests and count data regression models
- Differences of endogenous polyamines and putative genes associated with paraquat resistance in goosegrass (Eleusine indica L.)
- HIV chromatin is a preferred target for drugs that bind in the DNA minor groove
- Oregano powder reduces Streptococcus and increases SCFA concentration in a mixed bacterial culture assay
- Removal of an established invader can change gross primary production of native macroalgae and alter carbon flow in intertidal rock pools
- Ocular vestibular evoked myogenic potential (VEMP) reveals mesencephalic HTLV-1-associated neurological disease
- Using virtual reality and thermal imagery to improve statistical modelling of vulnerable and protected species
- Children’s reliance on the non-verbal cues of a robot versus a human
- Diaphragmatic motor cortex hyperexcitability in patients with chronic obstructive pulmonary disease
- Persistence of Burkholderia thailandensis E264 in lung tissue after a single binge alcohol episode
- Candida utilis yeast as a functional protein source for Atlantic salmon (Salmo salar L.): Local intestinal tissue and plasma proteome responses
- Health conditions associated with overweight in climacteric women
- The effects of arm swing amplitude and lower-limb asymmetry on gait stability
- High throughput, efficacious gene editing & genome surveillance in Chinese hamster ovary cells
- Identification and characterization of compounds from Chrysosporium multifidum, a fungus with moderate antimicrobial activity isolated from Hermetia illucens gut microbiota
- A framework for the development of a global standardised marine taxon reference image database (SMarTaR-ID) to support image-based analyses
- Cluster analysis on high dimensional RNA-seq data with applications to cancer research - An evaluation study
- Comparative in silico analysis of ftsZ gene from different bacteria reveals the preference for core set of codons in coding sequence structuring and secondary structural elements determination
- Exploring thematic structure and predicted functionality of 16S rRNA amplicon data
- Plant-mediated community structure of spring-fed, coastal rivers
- The epidemiology of childhood intussusception in South Korea: An observational study
- Gaze and Movement Assessment (GaMA): Inter-site validation of a visuomotor upper limb functional protocol
- Effects of treatment with enrofloxacin or tulathromycin on fecal microbiota composition and genetic function of dairy calves
- Predicting long-term type 2 diabetes with support vector machine using oral glucose tolerance test
- Drone-based effective counting and ageing of hippopotamus (Hippopotamus amphibius) in the Okavango Delta in Botswana
- Multiscale, multimodal analysis of tumor heterogeneity in IDH1 mutant vs wild-type diffuse gliomas
- Assessment of Phenotype Microarray plates for rapid and high-throughput analysis of collateral sensitivity networks
- Overexpressing GH3.1 and GH3.1L reduces susceptibility to Xanthomonas citri subsp. citri by repressing auxin signaling in citrus (Citrus sinensis Osbeck)
- High prevalence and incidence of rectal Chlamydia infection among men who have sex with men in Japan
- A low-cost fluorescence reader for in vitro transcription and nucleic acid detection with Cas13a
- Assessing the performance of genome-wide association studies for predicting disease risk
- Changes in endolysosomal organization define a pre-degenerative state in the crumbs mutant Drosophila retina
- The burden of antimicrobial resistance among urinary tract isolates of Escherichia coli in the United States in 2017
- Drug-related and psychopathological symptoms in HIV-positive men who have sex with men who inject drugs during sex (slamsex): Data from the U-SEX GESIDA 9416 Study
- Multiple cyanotoxin congeners produced by sub-dominant cyanobacterial taxa in riverine cyanobacterial and algal mats
- BIN overlap confirms transcontinental distribution of pest aphids (Hemiptera: Aphididae)
- Sexual behaviour in a murine model of mucopolysaccharidosis type I (MPS I)
- Platelet thrombus formation in eHUS is prevented by anti-MBL2
- CPO Complete, a novel test for fast, accurate phenotypic detection and classification of carbapenemases
- Temporal microstructure of dyadic social behavior during relationship formation in mice
- Root and shoot competition lead to contrasting competitive outcomes under water stress: A systematic review and meta-analysis
- Divulging diazotrophic bacterial community structure in Kuwait desert ecosystems and their N2-fixation potential
- Canine distemper in Nepal's Annapurna Conservation Area – Implications of dog husbandry and human behaviour for wildlife disease
- Development of the mandibular curve of spee and maxillary compensating curve: A finite element model
- Quantitative assessment of fecal contamination in multiple environmental sample types in urban communities in Dhaka, Bangladesh using SaniPath microbial approach
- The effect of overnight consolidation in the perceptual learning of non-native tonal contrasts
- Computational search for UV radiation resistance strategies in Deinococcus swuensis isolated from Paramo ecosystems
- Perceptions and practices related to birthweight in rural Bangladesh: Implications for neonatal health programs in low- and middle-income settings
- Regulation of amino acid and nucleotide metabolism by crustacean hyperglycemic hormone in the muscle and hepatopancreas of the crayfish Procambarus clarkia
- Effects of breed, management and personality on cortisol reactivity in sport horses
- The D-dimer level predicts the postoperative prognosis in patients with non-small cell lung cancer
- Ligand-induced conformational selection predicts the selectivity of cysteine protease inhibitors
- Protein, dietary fiber, minerals, antioxidant pigments and phytochemicals, and antioxidant activity in selected red morph Amaranthus leafy vegetable
- Intensity of physical activity as a percentage of peak oxygen uptake, heart rate and Borg RPE in motor-complete para- and tetraplegia
- A submerged 7000-year-old village and seawall demonstrate earliest known coastal defence against sea-level rise
- Annual replication is essential in evaluating the response of the soil microbiome to the genetic modification of maize in different biogeographical regions
- Brettanomyces bruxellensis wine isolates show high geographical dispersal and long persistence in cellars
- Effects of the replacement of fishmeal by soy protein concentrate on growth performance, apparent digestibility, and retention of protein and amino acid in juvenile pearl gentian grouper
- Alteration of the anatomical covariance network after corpus callosotomy in pediatric intractable epilepsy
- Energy expenditure and body composition changes after an isocaloric ketogenic diet in overweight and obese men: A secondary analysis of energy expenditure and physical activity
- Validation of a cross-NTD toolkit for assessment of NTD-related morbidity and disability. A cross-cultural qualitative validation of study instruments in Colombia
- The effect of bigger human bodies on the future global calorie requirements
- Dyslipidemias and cardiovascular risk scores in urban and rural populations in north-western Tanzania and southern Uganda
- Demographic characteristics, site and phylogenetic distribution of dogs with appendicular osteosarcoma: 744 dogs (2000-2015)
- Distinctive tasks of different cyanobacteria and associated bacteria in carbon as well as nitrogen fixation and cycling in a late stage Baltic Sea bloom
- Genome wide DNA methylation profiling identifies specific epigenetic features in high-risk cutaneous squamous cell carcinoma
- The effect of dietary supplementation with Clostridium butyricum on the growth performance, immunity, intestinal microbiota and disease resistance of tilapia (Oreochromis niloticus)
- De novo identification of satellite DNAs in the sequenced genomes of Drosophila virilis and D. americana using the RepeatExplorer and TAREAN pipelines
- Incidence of statin use in older adults with and without cardiovascular disease and diabetes mellitus, January 2008- March 2018
- Comprehensive analysis of chromosomal mobile genetic elements in the gut microbiome reveals phylum-level niche-adaptive gene pools
- Mood and behavioral problems are important predictors of quality of life of nursing home residents with moderate to severe dementia: A cross-sectional study
- Behavioural risks in female dogs with minimal lifetime exposure to gonadal hormones
- Transcutaneous vagus nerve stimulation (t-VNS): A novel effective treatment for temper outbursts in adults with Prader-Willi Syndrome indicated by results from a non-blind study
- Goniozus omanensis (Hymenoptera: Bethylidae) an important parasitoid of the lesser date moth Batrachedra amydraula Meyrick (Lepidoptera: Batrachedridae) in Oman
- Prevalence and epidemiological characteristics of patients with diabetic retinopathy in Slovakia: 12-month results from the DIARET SK study
- Historical record of Corallium rubrum and its changing carbon sequestration capacity: A meta-analysis from the North Western Mediterranean
- Having pity on our victims to save ourselves: Compassion reduces self-critical emotions and self-blame about past harmful behavior among those who highly identify with their past self
- The novel aminoglycoside, ELX-02, permits CTNSW138X translational read-through and restores lysosomal cystine efflux in cystinosis
- An oral care programme for adults- Evaluation after 15 years
- Genetic variation across trophic levels: A test of the correlation between population size and genetic diversity in sympatric desert lizards
- Fuzzy jump wavelet neural network based on rule induction for dynamic nonlinear system identification with real data applications
- Dendrochronological evidence for long-distance timber trading in the Roman Empire
- Patterns of serial rib fractures after blunt chest trauma: An analysis of 380 cases
- Influence of traffic accessibility on land use based on Landsat imagery and internet map: A case study of the Pearl River Delta urban agglomeration
- Strategic rule breaking: Time wasting to win soccer games
- Visual body form and orientation cues do not modulate visuo-tactile temporal integration
- Early succession on slag compared to urban soil: A slower recovery
- Informing, simulating experience, or both: A field experiment on phishing risks
- Agronomic performance of lettuce cultivars submitted to different irrigation depths
- Growth of young HIV-infected and HIV-exposed children in western Kenya: A retrospective chart review
- Comparison of traditional methods versus SAFEcount for filling prescriptions: A pilot study of an innovative pill counting solution in eSwatini
- Estimating relative CWD susceptibility and disease progression in farmed white-tailed deer with rare PRNP alleles
- Development of a high throughput human stool specimen processing method for a molecular Helicobacter pylori clarithromycin resistance assay
- MSP-N: Multiple selection procedure with ‘N’ possible growth mechanisms
- Twins! Microsatellite analysis of two embryos within one egg case in oviparous elasmobranchs
- Are census data accurate for estimating coverage of a lymphatic filariasis MDA campaign? Results of a survey in Sierra Leone
- Significant alteration of liver metabolites by AAV8.Urocortin 2 gene transfer in mice with insulin resistance
- Biological control of Erwinia mallotivora, the causal agent of papaya dieback disease by indigenous seed-borne endophytic lactic acid bacteria consortium
- Comparison of a novel algorithm quantitatively estimating epifascial fibrosis in three-dimensional computed tomography images to other clinical lymphedema grading methods
- Monitoring hunted species of cultural significance: Estimates of trends, population sizes and harvesting rates of flying-fox (Pteropus sp.) in New Caledonia
- Trust, and distrust, of Ebola Treatment Centers: A case-study from Sierra Leone
- Macmoondongtang modulates Th1-/Th2-related cytokines and alleviates asthma in a murine model
- Expressional artifact caused by a co-injection marker rol-6 in C. elegans
- Flexible employment policies, temporal control and health promoting practices: A qualitative study in two Australian worksites
- Cost-effectiveness analysis of aspirin for primary prevention of cardiovascular events among patients with type 2 diabetes in China
- Olfactory bulb volume changes associated with trans-sphenoidal pituitary surgery
- Integrin αDβ2 influences cerebral edema, leukocyte accumulation and neurologic outcomes in experimental severe malaria
- Robust, automated sleep scoring by a compact neural network with distributional shift correction
- Clinical characterization and prognosis of T cell acute lymphoblastic leukemia with high CRLF2 gene expression in children
- Factors that enable effective One Health collaborations - A scoping review of the literature
- Seasonal changes of the diurnal variation of precipitation in the upper Río Chagres basin, Panamá
- Functional connectivity dynamics slow with descent from wakefulness to sleep
- User abnormal behavior recommendation via multilayer network
- A quantum chemical approach representing a new perspective concerning agonist and antagonist drugs in the context of schizophrenia and Parkinson’s disease
- The effect of extra-osseous talotarsal stabilization (EOTTS) to reduce medial knee compartment forces – An in vivo study
- Whole brain polarity regime dynamics are significantly disrupted in schizophrenia and correlate strongly with network connectivity measures
- Risk of infection in the first year of life in preterm children: An Austrian observational study
- SparkGA2: Production-quality memory-efficient Apache Spark based genome analysis framework
- People versus machines in the UK: Minimum wages, labor reallocation and automatable jobs
- Histo- and immunohistochemistry-based estimation of the TCGA and ACRG molecular subtypes for gastric carcinoma and their prognostic significance: A single-institution study
- Long-term outcomes of macrovascular diseases and metabolic indicators of bariatric surgery for severe obesity type 2 diabetes patients with a meta-analysis
- Influence of post-partum BMI change on childhood obesity and energy intake
- Effect of dietary cellulose supplementation on gut barrier function and apoptosis in a murine model of endotoxemia
- m6A minimally impacts the structure, dynamics, and Rev ARM binding properties of HIV-1 RRE stem IIB
- Cannabis users: Screen systematically, treat individually. A descriptive study of participants in a randomized trial in primary care
- Trait self-control does not predict attentional control: Evidence from a novel attention capture paradigm
- Head to head comparison of two commercial fecal calprotectin kits as predictor of Mayo endoscopic sub-score and mucosal TNF expression in ulcerative colitis
- Exploring the hospital patient journey: What does the patient experience?
- CD200 is up-regulated in R6/1 transgenic mouse model of Huntington's disease
- Three-dimensional analysis of pancreatic fat by fat-water magnetic resonance imaging provides detailed characterization of pancreatic steatosis with improved reproducibility
- Early changes in pulmonary function and intrarenal haemodynamics and the correlation between these sets of parameters in patients with T2DM
- Gender and neglected tropical disease front-line workers: Data from 16 countries
- Integrating long noncoding RNAs and mRNAs expression profiles of response to Plasmodiophora brassicae infection in Pakchoi (Brassica campestris ssp. chinensis Makino)
- Lower IQ and poorer cognitive profiles in treated perinatally HIV-infected children is irrespective of having a background of international adoption
- Strengthening counseling on barriers to exclusive breastfeeding through use of job aids in Nampula, Mozambique
- Survey on antimicrobial usage in local dairy cows in North-central Nigeria: Drivers for misuse and public health threats
- A population-based study of tuberculosis incidence among rheumatic disease patients under anti-TNF treatment
- Health risk assessment on musculoskeletal disorders among potato-chip processing workers
- Processed and ultra-processed foods are associated with high prevalence of inadequate selenium intake and low prevalence of vitamin B1 and zinc inadequacy in adolescents from public schools in an urban area of northeastern Brazil
- Is half the world’s population really below ‘replacement-rate’?
- Report on a large animal study with Göttingen Minipigs where regenerates and controls for articular cartilage were created in a large number. Focus on the conditions of the operated stifle joints and suggestions for standardized procedures
- Seasonal variation of a plant-pollinator network in the Brazilian Cerrado: Implications for community structure and robustness
- Assessing gastro-intestinal related quality of life in cystic fibrosis: Validation of PedsQL GI in children and their parents
- Autosomal recessive congenital cataracts linked to HSF4 in a consanguineous Pakistani family
- Replacing murine insulin 1 with human insulin protects NOD mice from diabetes
- Long-term gait measurements in daily life: Results from the Berlin Aging Study II (BASE-II)
- Neonatal and neurodevelopmental outcomes in preterm infants according to maternal body mass index: A prospective cohort study
- Genetic variability of five ADRB2 polymorphisms among Mexican Amerindian ethnicities and the Mestizo population
- A novel image encryption technique using hybrid method of discrete dynamical chaotic maps and Brownian motion
- Possible link between dental diseases and arteriosclerosis in patients on hemodialysis
- Late Glacial rapid climate change and human response in the Westernmost Mediterranean (Iberia and Morocco)
- The role of endothelial MERTK during the inflammatory response in lungs
- Significant hearing loss in Fabry disease: Study of the Danish nationwide cohort prior to treatment
- Establishment of chemosensitivity tests in triple-negative and BRCA-mutated breast cancer patient-derived xenograft models
- An epidemiological study of visceral leishmaniasis in North East Ethiopia using serological and leishmanin skin tests
- Dissociations of oral foci of infections with infectious complications and survival after haematopoietic stem cell transplantation
- Latin American consumption of major food groups: Results from the ELANS study
- The seroconversion rate of QuantiFERON-TB Gold In-Tube test in psoriatic patients receiving secukinumab and ixekizumab, the anti-interleukin-17A monoclonal antibodies
- Does prior knowledge of food fraud affect consumer behavior? Evidence from an incentivized economic experiment
- Isolation and characterization of the EgWRI1 promoter from oil palm (Elaeis guineensis Jacq.) and its response to environmental stress and ethylene
- Bridge to neuroscience workshop: An effective educational tool to introduce principles of neuroscience to Hispanics students
- Plasma metabolites as possible biomarkers for diagnosis of breast cancer
- Investigating gene expression profiles of whole blood and peripheral blood mononuclear cells using multiple collection and processing methods
- Altitude and human disturbance are associated with helminth diversity in an endangered primate, Procolobus gordonorum
- “My mother in-law forced my husband to divorce me”: Experiences of women with infertility in Zamfara State of Nigeria
- Effects of the killer immunoglobulin–like receptor (KIR) polymorphisms on HIV acquisition: A meta-analysis
- The technological, organizational and environmental determinants of adoption of mobile health applications (m-health) by hospitals in Kenya
- Reaction-diffusion memory unit: Modeling of sensitization, habituation and dishabituation in the brain
- Early rise in central venous pressure during a spontaneous breathing trial: A promising test to identify patients at high risk of weaning failure?
- The computational analyses of handwriting in individuals with psychopathic personality disorder
- Consumption of psychoactive substances in prison: Between initiation and improvement, what trajectories occur after incarceration? COSMOS study data
- Prevalence of damaged and missing teeth among women in the southern plains of Nepal: Findings of a simplified assessment tool
- A global model for predicting the arrival of imported dengue infections
- From social interactions to interpersonal relationships: Influences on ultra-runners’ race experience
- Anxiety reduction through art therapy in women. Exploring stress regulation and executive functioning as underlying neurocognitive mechanisms
- The properties and formation mechanism of oat β-glucan mixed gels with different molecular weight composition induced by high-pressure processing
- Acceptability of early childhood obesity prediction models to New Zealand families
- Abundance of ethnically biased microsatellites in human gene regions
- Analysing trajectories of a longitudinal exposure: A causal perspective on common methods in lifecourse research
- Malaria screening at the workplace in Cameroon
- Ex vivo perfusion-based engraftment of genetically engineered cell sensors into transplantable organs
- Genetic and morphological divergence in the warm-water planktonic foraminifera genus Globigerinoides
- The association between chronic periodontitis and oral Helicobacter pylori: A meta-analysis
- Using species distribution models to predict potential hot-spots for Rift Valley Fever establishment in the United Kingdom
- Disturbance study of seismic vibrator reaction mass and piston
- Gene expression is associated with virulence in murine macrophages infected with Leptospira spp
- Polysubstance use patterns and novel synthetics: A cluster analysis from three U.S. cities
- Vernonia polysphaera Baker: Anti-inflammatory activity in vivo and inhibitory effect in LPS-stimulated RAW 264.7 cells
- Cost-effectiveness of prenatal screening and diagnostic strategies for Down syndrome: A microsimulation modeling analysis
- Social vulnerability assessment of dog intake location data as a planning tool for community health program development: A case study in Athens-Clarke County, GA, 2014-2016
- The subjective value of a smile alters social behaviour
- Prevalence of drug–drug interaction in atrial fibrillation patients based on a large claims data
- The logic of basic education provision and public goods preferences in Chinese fiscal federalism
- The Black identity, hair product use, and breast cancer scale
- Diversity and distribution of microbial communities in floral nectar of two night-blooming plants of the Sonoran Desert
- Examining differences in cigarette smoking prevalence among young adults across national surveillance surveys
- Reversed metabolic reprogramming as a measure of cancer treatment efficacy in rat C6 glioma model
- Impact of perceived distances on international tourism
- Effect of diabetes on incidence of peritoneal dialysis-associated peritonitis
- Exposure to household pet cats and dogs in childhood and risk of subsequent diagnosis of schizophrenia or bipolar disorder
- The prognostic value of myeloid derived suppressor cell level in hepatocellular carcinoma: A systematic review and meta-analysis
- Myeloid cell deletion of Aryl hydrocarbon Receptor Nuclear Translocator (ARNT) induces non-alcoholic steatohepatitis
- Alligators in the abyss: The first experimental reptilian food fall in the deep ocean
- A novel power-driven fractional accumulated grey model and its application in forecasting wind energy consumption of China
- Long-term ambient hydrocarbons exposure and incidence of ischemic stroke
- Chronic unexplained nausea in adults: Prevalence, impact on quality of life, and underlying organic diseases in a cohort of 5096 subjects comprehensively investigated
- Evaluation of a nanophosphor lateral-flow assay for self-testing for herpes simplex virus type 2 seropositivity
- Normal and altered masticatory load impact on the range of craniofacial shape variation: An analysis of pre-Hispanic and modern populations of the American Southern Cone
- Assessing recall of personal sun exposure by integrating UV dosimeter and self-reported data with a network flow framework
- Public attitudes toward genetic modification in dairy cattle
- Quantification of speech and synchrony in the conversation of adults with autism spectrum disorder
- Genome-wide association study of drought tolerance and biomass allocation in wheat
- An examination of the association between early initiation of substance use and interrelated multilevel risk and protective factors among adolescents
- Pelagic tunicates at shallow hydrothermal vents of Kueishantao
- Aegicetus gehennae, a new late Eocene protocetid (Cetacea, Archaeoceti) from Wadi Al Hitan, Egypt, and the transition to tail-powered swimming in whales
- Changing landscape configuration demands ecological planning: Retrospect and prospect for megaherbivores of North Bengal
- Analyzing linguistic variation and change using gamification web apps: The case of German-speaking Europe
- Factors associated with condom use among HIV-positive women living in Atlanta, Georgia
- Watered-down biodiversity? A comparison of metabarcoding results from DNA extracted from matched water and bulk tissue biomonitoring samples
- Robust blind spectral unmixing for fluorescence microscopy using unsupervised learning
- Identification and impact of stable prognostic biochemical markers for cold-induced sweetening resistance on selection efficiency in potato (Solanum tuberosum L.) breeding programs
- What do we really know about the appropriateness of radiation emitting imaging for low back pain in primary and emergency care? A systematic review and meta-analysis of medical record reviews
- Naïve/Effector CD4 T cell ratio as a useful predictive marker of immune reconstitution in late presenter HIV patients: A multicenter study
- C5aR agonist enhances phagocytosis of fibrillar and non-fibrillar Aβ amyloid and preserves memory in a mouse model of familial Alzheimer’s disease
- Fluid balance correlates with clinical course of multiple organ dysfunction syndrome and mortality in patients with septic shock
- Channel-spatial attention network for fewshot classification
- The evolution and genetic diversity of avian influenza A(H9N2) viruses in Cambodia, 2015 – 2016
- Withdrawn medicines included in the essential medicines lists of 136 countries
- Whose data can we trust: How meta-predictions can be used to uncover credible respondents in survey data
- The optimal delivery time and order quantity in an oligopoly market with time-sensitive customers
- Feature identification in time-indexed model output
- Influence of microwave-assisted dehydration on morphological integrity and viability of cat ovarian tissues: First steps toward long-term preservation of complex biomaterials at supra-zero temperatures
- Healing The Past By Nurturing The Future: A qualitative systematic review and meta-synthesis of pregnancy, birth and early postpartum experiences and views of parents with a history of childhood maltreatment
- Relationship between land surface temperature and fraction of anthropized area in the Atlantic forest region, Brazil
- The coevolution of contagion and behavior with increasing and decreasing awareness
- Seeking snow and breathing hard – Behavioral tactics in high elevation mammals to combat warming temperatures
- A simplistic approach of algal biofuels production from wastewater using a Hybrid Anaerobic Baffled Reactor and Photobioreactor (HABR-PBR) System
- HeLa-CCL2 cell heterogeneity studied by single-cell DNA and RNA sequencing
- Elucidation of a non-thermal mechanism for DNA/RNA fragmentation and protein degradation when using Lyse-It
- Viral load testing among women on ‘option B+’ in Mazowe, Zimbabwe: How well are we doing?
- Application of enhanced assimilable organic carbon method across operational drinking water systems
- The majority of skin lesions in pediatric primary care attention could be managed by Teledermatology
- Interactions of pharmaceutical companies with world countries, cancers and rare diseases from Wikipedia network analysis
- Effect of the casein phosphopeptide-amorphous calcium phosphate fluoride (CPP-ACPF) and photobiomodulation (PBM) on dental hypersensitivity: A randomized controlled clinical trial
- New fossils of Elateridae (Insecta, Coleoptera) from Early Cretaceous Jinju Formation (South Korea) with their implications to evolutionary diversity of extinct Protagrypninae
- Cost-effectiveness analysis of parenting interventions for the prevention of behaviour problems in children
- Establishment of normative ranges of the healthy human immune system with comprehensive polychromatic flow cytometry profiling
- Stochasticity and non-additivity expose hidden evolutionary pathways to cooperation
- Emergency traffic adaptive MAC protocol for wireless body area networks based on prioritization
- Face recognition and memory in congenital amusia
- Variations of training load, monotony, and strain and dose-response relationships with maximal aerobic speed, maximal oxygen uptake, and isokinetic strength in professional soccer players
- Hydrogel based protein biochip for parallel detection of biomarkers for diagnosis of a Systemic Inflammatory Response Syndrome (SIRS) in human serum
- NF-κB-mediated regulation of rat CYP2E1 by two independent signaling pathways
- Transcranial magnetic stimulation induced early silent period and rebound activity re-examined
- Heterogenous wealth effects of minimum unit price on purchase of alcohol: Evidence using scanner data
- Effectiveness of integrative medicine group visits in chronic pain and depressive symptoms: A randomized controlled trial
- Associations between adverse childhood family environments and blood pressure differ between men and women
- Comparative analysis of the vaginal microbiome of pregnant women with either Trichomonas vaginalis or Chlamydia trachomatis
- The influence of the fetal leg position on the outcome in vaginally intended deliveries out of breech presentation at term – A FRABAT prospective cohort study
- Colorectal cancer incidence among young adults in England: Trends by anatomical sub-site and deprivation
- Assessing service and treatment needs and barriers of youth who use illicit and non-medical prescription drugs in Northern Ontario, Canada
- Composition and structure of the marine benthic community in Terra Nova Bay, Antarctica: Responses of the benthic assemblage to disturbances
- Diet and feeding strategy of Northeast Atlantic mackerel (Scombrus scomber) in Icelandic waters
- Agricultural intensification was associated with crop diversification in India (1947-2014)
- IL-18/IL-37/IP-10 signalling complex as a potential biomarker for discriminating active and latent TB
- Lie prevalence, lie characteristics and strategies of self-reported good liars
- Prevalent, persistent anal HPV infection and squamous intraepithelial lesions: Findings from a cohort of men living with HIV in South Africa
- Assessment of the real-world safety profile of vedolizumab using the United States Food and Drug Administration adverse event reporting system
- Machine learning approach to single nucleotide polymorphism-based asthma prediction
- Local risk perception enhances epidemic control
- Designing machine learning workflows with an application to topological data analysis
- Immuno-metabolic profile of human macrophages after Leishmania and Trypanosoma cruzi infection
- Phylogenetic position of the ‘extinct’ Fijian coconut moth, Levuana iridescens (Lepidoptera: Zygaenidae)
- Association between cardiovascular diseases and pregnancy-induced hypertensive disorders in a population of Cameroonian women at Yaoundé: A case-control study
- Location of sources in reaction-diffusion equations using support vector machines
- Methylsulfonylmethane increases osteogenesis and regulates the mineralization of the matrix by transglutaminase 2 in SHED cells
- Effect of anti-epileptic drugs on the survival of patients with glioblastoma multiforme: A retrospective, single-center study
- Four months vitamin D supplementation to vitamin D insufficient individuals does not improve muscular strength: A randomized controlled trial
- Hyperglycemia induces key genetic and phenotypic changes in human liver epithelial HepG2 cells which parallel the Leprdb/J mouse model of non-alcoholic fatty liver disease (NAFLD)
- Preoperative and operation-related risk factors for postoperative nosocomial infections in pediatric patients: A retrospective cohort study
- Differences between individuals with schizophrenia or obsessive-compulsive disorder and healthy controls in social cognition and mindfulness skills: A controlled study
- Variations by sex and age in the association between alcohol use and depressed mood among Thai adolescents
- Undernutrition is associated with perturbations in T cell-, B cell-, monocyte- and dendritic cell- subsets in latent Mycobacterium tuberculosis infection
- Clinical outcomes and mortality in old and very old patients undergoing cardiac resynchronization therapy
- Glycemic-aware metrics and oversampling techniques for predicting blood glucose levels using machine learning
- RNA-sequencing reveals that STRN, ZNF484 and WNK1 add to the value of mitochondrial MT-COI and COX10 as markers of unstable coronary artery disease
- Human gut microbiota is associated with HIV-reactive immunoglobulin at baseline and following HIV vaccination
- Is un stylo sharper than une épée? Investigating the interaction of sound symbolism and grammatical gender in English and French speakers
- Shifting perceptions of female genital cutting in a Swedish migration context
- Estimating the degree to which distance and temperature differences drive changes in fish community composition over time in the upper Mississippi River
- Nucleotide composition affects codon usage toward the 3'-end
- Results from one-year use of an electronic Clinical Decision Support System in a post-conflict context: An implementation research
- Effects of continuity of care on the postradiotherapy survival of working-age patients with oral cavity cancer: A nationwide population-based cohort study in Taiwan
- Self-reported attitudes, knowledge and skills of using evidence-based medicine in daily health care practice: A national survey among students of medicine and health sciences in Hungary
- Development of refractive error in children treated for retinopathy of prematurity with anti-vascular endothelial growth factor (anti-VEGF) agents: A meta-analysis and systematic review
- High diversity of coralline algae in New Zealand revealed: Knowledge gaps and implications for future research
- Electromyographic characteristics of pelvic floor muscles in women with stress urinary incontinence following sEMG-assisted biofeedback training and Pilates exercises
- The effect of visceral fat on the hemodilution effect of serum carcinoembryonic antigen in Korean population
- A Bayesian gene network reveals insight into the JAK-STAT pathway in systemic lupus erythematosus
- Up on the roof and down in the dirt: Differences in substrate properties (SOM, potassium, phosphorus and pH) and their relationships to each other between sedum and wildflower green roofs
- Sap flow of Salix psammophila and its principal influencing factors at different slope positions in the Mu Us desert
- Long-term outcomes of prismatic correction in partially accommodative esotropia
- Does in vitro selection of biocontrol agents guarantee success in planta? A study case of wheat protection against Fusarium seedling blight by soil bacteria
- Highly multiplexed quantitative PCR-based platform for evaluation of chicken immune responses
- Combination treatment of berberine and solid lipid curcumin particles increased cell death and inhibited PI3K/Akt/mTOR pathway of human cultured glioblastoma cells more effectively than did individual treatments
- Research trends in farmers’ mental health: A scoping review of mental health outcomes and interventions among farming populations worldwide
- HR-pQCT imaging in children, adolescents and young adults: Systematic review and subgroup meta-analysis of normative data
- Limits in reliability of leg-spring and joint stiffness measures during single-leg hopping within a sled-based system
- Genomic and phylogenetic analysis of choriolysins, and biological activity of hatching liquid in the flatfish Senegalese sole
- Physical activity levels in adults and elderly from triaxial and uniaxial accelerometry. The Tromsø Study
- Pathologic changes and immune responses against Coxiella burnetii in mice following infection via non-invasive intratracheal inoculation
- 4D perfusion CT of prostate cancer for image-guided radiotherapy planning: A proof of concept study
- Rapid wound healing in a reef manta ray masks the extent of vessel strike
- Exploring resources and environmental carrying capacities at the county level: A case study of China’s Fengxian County
- The opportunities and risks of mobile phones for refugees’ experience: A scoping review
- Motor vehicle crash reconstruction: Does it relate to the heterogeneity of whiplash recovery?
- Frequency and determinants of health care utilization for symptomatic reproductive tract infections in rural Indian women: A cross-sectional study
- BPRF: Blockchain-based privacy-preserving reputation framework for participatory sensing systems
- Gang confrontation: The case of Medellin (Colombia)
- Adaptive smartphone-based sensor fusion for estimating competitive rowing kinematic metrics
- Prevalence of Cryptococcal Antigenemia and associated factors among HIV/AIDS patients on second-line antiretroviral therapy at two hospitals in Western Oromia, Ethiopia
- Characterization of the cecal microbiome composition of Wenchang chickens before and after fattening
- A leader-follower model for discrete competitive facility location problem under the partially proportional rule with a threshold
- Process elements contributing to community mobilization for HIV risk reduction and gender equality in rural South Africa
- Hidden dynamics of soccer leagues: The predictive ‘power’ of partial standings
- Quantitative dynamics of Salmonella and E. coli in feces of feedlot cattle treated with ceftiofur and chlortetracycline
- Diet of the brown bear in Himalaya: Combining classical and molecular genetic techniques
- Multiscale analysis for patterns of Zika virus genotype emergence, spread, and consequence
- Incidences of community onset severe sepsis, Sepsis-3 sepsis, and bacteremia in Sweden – A prospective population-based study
- Antiphagocytic protein 1 increases the susceptibility of Cryptococcus neoformans to amphotericin B and fluconazole
- Towards text mining therapeutic change: A systematic review of text-based methods for Therapeutic Change Process Research
- Intrinsic group behaviour II: On the dependence of triad spatial dynamics on social and personal features; and on the effect of social interaction on small group dynamics
- Association between circulating neuregulin4 levels and diabetes mellitus: A meta-analysis of observational studies
- Impact of relational leadership on employees’ unethical pro-organizational behavior: A survey based on tourism companies in four countries
- Using morphological attributes for the fast assessment of nutritional responses of Buddhist pine (Podocarpus macrophyllus [Thunb.] D. Don) seedlings to exponential fertilization
- Student engagement, assessed using heart rate, shows no reset following active learning sessions in lectures
- Examining transmission of gut bacteria to preserved carcass via anal secretions in Nicrophorus defodiens
- Direct costs of illness of patients with chronic cough in rural Malawi—Experiences from Dowa and Ntchisi districts
- Bone spoons for prehistoric babies: Detection of human teeth marks on the Neolithic artefacts from the site Grad-Starčevo (Serbia)
- Identifying and characterizing extrapolation in multivariate response data
- Clinically-defined preoperative serum phosphorus abnormalities and outcomes of coronary artery bypass grafting: Retrospective analysis using inverse probability weighting adjustment
- My experiences with kidney care: A qualitative study of adults in the Northern Territory of Australia living with chronic kidney disease, dialysis and transplantation
- Anemia and associated factors among type-2 diabetes mellitus patients attending public hospitals in Harari Region, Eastern Ethiopia
- The KLDpT activation loop motif is critical for MARK kinase activity
- Pro-renin receptor suppresses mitochondrial biogenesis and function via AMPK/SIRT-1/ PGC-1α pathway in diabetic kidney
- Evaluation of upconverting nanoparticles towards heart theranostics
- Severe childhood anemia and emergency blood transfusion in Gadarif Hospital, eastern Sudan
- Gender differences in the effect of self-rated health (SRH) on all-cause mortality and specific causes of mortality among individuals aged 50 years and older
- PyLandStats: An open-source Pythonic library to compute landscape metrics
- Snow avalanche deaths in Switzerland from 1995 to 2014—Results of a nation-wide linkage study
- Cashew nuts (Anacardium occidentale L.) decrease visceral fat, yet augment glucose in dyslipidemic rats
- Association between attitudes of stigma toward mental illness and attitudes toward adoption of evidence-based practice within health care providers in Bahrain
- The efficacy of conditioned medium released by tonsil-derived mesenchymal stem cells in a chronic murine colitis model
- Generation of targeted homozygosity in the genome of human induced pluripotent stem cells
- Pathways to care and outcomes among hospitalised HIV-seropositive persons with cryptococcal meningitis in South Africa
- Fungicides, herbicides and bees: A systematic review of existing research and methods
- The risk of active tuberculosis among individuals living in tuberculosis-affected households in the Republic of Korea, 2015
- Intraoperative ketorolac in high-risk breast cancer patients. A prospective, randomized, placebo-controlled clinical trial
- An add-on training program involving breathing exercises, cold exposure, and meditation attenuates inflammation and disease activity in axial spondyloarthritis – A proof of concept trial
- Comparative study of the composition of cultivated, naturally grown Cordyceps sinensis, and stiff worms across different sampling years
- Factors affecting the spread of multiple information in social networks
- Non-structural carbohydrates in maize with different nitrogen tolerance are affected by nitrogen addition
- Network dynamics of Broca’s area during word selection
- Is less readable liked better? The case of font readability in poetry appreciation
- An expanded rating curve model to estimate river discharge during tidal influences across the progressive-mixed-standing wave systems
- Neuroimaging modality fusion in Alzheimer’s classification using convolutional neural networks
- Ginkgo biloba extract increases neurite outgrowth and activates the Akt/mTOR pathway
- Systematic review and meta-analysis comparing Adjustable Transobturator Male System (ATOMS) and Adjustable Continence Therapy (ProACT) for male stress incontinence
- Men and women differ in their perception of gender bias in research institutions
- Visual inspection of vaccine storage conditions in general practices: A study of 75 vaccine refrigerators
- Serum procalcitonin as an independent diagnostic markers of bacteremia in febrile patients with hematologic malignancies
- New physiological bench test reproducing nocturnal breathing pattern of patients with sleep disordered breathing
- Respiratory syncytial virus exhibits differential tropism for distinct human placental cell types with Hofbauer cells acting as a permissive reservoir for infection
- Correlation analysis of physical fitness and retinal microvasculature by OCT angiography in healthy adults
- Non-spherical particles in optical tweezers: A numerical solution
- Polyvinylalcohol-carbazate (PVAC) reduces red blood cell hemolysis
- Single nucleotide polymorphisms associated with susceptibility for development of colorectal cancer: Case-control study in a Basque population
- Fragment-based design of small molecule PCSK9 inhibitors using simulated annealing of chemical potential simulations
- Development and validation of the Scale of Motives for Using Social Networking Sites (SMU-SNS) for adolescents and youths
- Formation of a structurally-stable conformation by the intrinsically disordered MYC:TRRAP complex
- Generation of swine movement network and analysis of efficient mitigation strategies for African swine fever virus
- Transient effect of melatonin treatment after neonatal hypoxic-ischemic brain injury in rats
- The Determinants of Household Food Waste Generation and its Associated Caloric and Nutrient Losses: The Case of Lebanon
- Housekeeping gene validation for RT-qPCR studies on synovial fibroblasts derived from healthy and osteoarthritic patients with focus on mechanical loading
- Does historical land use affect the regional distribution of fleshy-fruited woody plants?
- ABO blood group and risk of newly diagnosed nonalcoholic fatty liver disease: A case-control study in Han Chinese population
- Circulation of influenza virus from 2009 to 2018 in Cameroon: 10 years of surveillance data
- Parametric CAD modeling for open source scientific hardware: Comparing OpenSCAD and FreeCAD Python scripts
- The diversity and abundance of fungi and bacteria on the healthy and dandruff affected human scalp
- Interferometric fluorescence cross correlation spectroscopy
- Fatty acid profiling of 75 Indian snack samples highlights overall low trans fatty acid content with high polyunsaturated fatty acid content in some samples
- Evaluating the impact of setting delineators in tunnels based on drivers’ visual characteristics
- Quinolone nonsusceptibility among enteric pathogens isolated from international travelers – Foodborne Diseases Active Surveillance Network (FoodNet) and National Antimicrobial Monitoring System (NARMS), 10 United States sites, 2004 – 2014
- Influence of Debaryomyces hansenii on bacterial lactase gene diversity in intestinal mucosa of mice with antibiotic-associated diarrhea
- Food from faeces: Evaluating the efficacy of scat DNA metabarcoding in dietary analyses
- Toll-like receptor 7-adapter complex modulates interferon-α production in HIV-stimulated plasmacytoid dendritic cells
- Effects of nutrient level and planting density on population relationship in soybean and wheat intercropping populations
- Prediction model for dengue fever based on interactive effects between multiple meteorological factors in Guangdong, China (2008–2016)
- Antihypertensive treatment and risk of cardiovascular mortality in patients with chronic kidney disease diagnosed based on the presence of proteinuria and renal function: A large longitudinal study in Japan
- Circadian misalignment alters insulin sensitivity during the light phase and shifts glucose tolerance rhythms in female mice
- Commonly missed nursing cares in the obstetrics and gynecologic wards of Tigray general hospitals; Northern Ethiopia
- Description and phylogeny of a new species of Liolaemus (Iguania: Liolaemidae) endemic to the south of the Plurinational State of Bolivia
- Preparedness for colorectal cancer surgery and recovery through a person-centred information and communication intervention – A quasi-experimental longitudinal design
- Detrended Fluctuation Analysis in the prediction of type 2 diabetes mellitus in patients at risk: Model optimization and comparison with other metrics
- A co-registration investigation of inter-word spacing and parafoveal preview: Eye movements and fixation-related potentials
- Wireless intravesical device for real-time bladder pressure measurement: Study of consecutive voiding in awake minipigs
- Sequence analyses at mitochondrial and nuclear loci reveal a novel Theileria sp. and aid in the phylogenetic resolution of piroplasms from Australian marsupials and ticks
- Use of three points to determine the accuracy of guided implantation
- Citric-acid dialysate improves the calcification propensity of hemodialysis patients: A multicenter prospective randomized cross-over trial
- Plasmacytoid dendritic cell and myeloid dendritic cell function in ageing: A comparison between elderly and young adult women
- Predicting the replicability of social science lab experiments
- Lomax exponential distribution with an application to real-life data
- Territoriality and the organization of technology during the Last Glacial Maximum in southwestern Europe
- Global longitudinal strain can predict heart failure exacerbation in stable outpatients with ischemic left ventricular systolic dysfunction
- Barriers to chronic Hepatitis B treatment and care in Ghana: A qualitative study with people with Hepatitis B and healthcare providers
- Exploring the workplace climate and culture in relation to food environment-related factors in Norwegian kindergartens: The BRA-study
- The evaluation of the Woman’s Condom marketing approach: What value did peer-led interpersonal communication add to the promotion of a new female condom in urban Lusaka?
- Composition and structure of the culturable gut bacterial communities in Anopheles albimanus from Colombia
- Discovery of genomic variations by whole-genome resequencing of the North American Araucana chicken
- A siRNA mediated hepatic dpp4 knockdown affects lipid, but not glucose metabolism in diabetic mice
- Central sensitization in knee osteoarthritis and fibromyalgia: Beyond depression and anxiety
- A Bayesian Monte Carlo approach for predicting the spread of infectious diseases
- Clinical and epidemiological characteristics of imported dengue fever among inbound passengers: Infrared thermometer–based active surveillance at an international airport
- Orbit image analysis machine learning software can be used for the histological quantification of acute ischemic stroke blood clots
- Impact of oral probiotic Lactobacillus acidophilus vaccine strains on the immune response and gut microbiome of mice
- An investigation of the equine epidermal growth factor system during hyperinsulinemic laminitis
- Ranking hospitals when performance and risk factors are correlated: A simulation-based comparison of risk adjustment approaches for binary outcomes
- The effect of carbohydrate sources: Sucrose, invert sugar and components of mānuka honey, on core bacteria in the digestive tract of adult honey bees (Apis mellifera)
- Runs of Homozygosity and NetView analyses provide new insight into the genome-wide diversity and admixture of three German cattle breeds
- Backward compatibility of whole genome sequencing data with MLVA typing using a new MLVAtype shiny application for Vibrio cholerae
- Total sleep deprivation increases pain sensitivity, impairs conditioned pain modulation and facilitates temporal summation of pain in healthy participants
- The effects of urbanization on bee communities depends on floral resource availability and bee functional traits
- Dynamics of essential interaction between firms on financial reports
- Drug overdose among women in intimate relationships: The role of partner violence, adversity and relationship dependencies
- Robust effect of metabolic syndrome on major metabolic pathways in the myocardium
- California condor microbiomes: Bacterial variety and functional properties in captive-bred individuals
- Using baited remote underwater videos (BRUVs) to characterize chondrichthyan communities in a global biodiversity hotspot
- Evaluation of the potential of a new ribavirin analog impairing the dissemination of ovarian cancer cells
- Grazing offsets the stimulating effects of nitrogen addition on soil CH4 emissions in a meadow steppe in Northeast China
- Molecular characterization of fowl adenovirus isolate of Malaysia attenuated in chicken embryo liver cells and its pathogenicity and immunogenicity in chickens
- Prolonged fasting followed by refeeding modifies proteome profile and parvalbumin expression in the fast-twitch muscle of pacu (Piaractus mesopotamicus)
- Agriculture development and CO2 emissions nexus in Saudi Arabia
- Influence of a neck compression collar on cerebrovascular and autonomic function in men and women
- Visceral leishmaniasis in Northeast Brazil: What is the impact of HIV on this protozoan infection?
- βC1, pathogenicity determinant encoded by Cotton leaf curl Multan betasatellite, interacts with calmodulin-like protein 11 (Gh-CML11) in Gossypium hirsutum
- Expanded eligibility for HIV testing increases HIV diagnoses—A cross-sectional study in seven health facilities in western Kenya
- Clinically useful limited sampling strategy to estimate area under the concentration-time curve of once-daily tacrolimus in adult Japanese kidney transplant recipients
- Re-introduction of dengue virus serotype 2 in the state of Rio de Janeiro after almost a decade of epidemiological silence
- The salivary gland proteome of root-galling grape phylloxera (Daktulosphaira vitifoliae Fitch) feeding on Vitis spp.
- Efficacy of antimalarial drugs for treatment of uncomplicated falciparum malaria in Asian region: A network meta-analysis
- A study of the impact of data sharing on article citations using journal policies as a natural experiment
- The higher they go the harder they could fall: The impact of risk-glorifying commercials on risk behavior
- Optimization of TripleTOF spectral simulation and library searching for confident localization of phosphorylation sites
- Evidence for pre-climacteric activation of AOX transcription during cold-induced conditioning to ripen in European pear (Pyrus communis L.)
- Expression of myeloid Src-family kinases is associated with poor prognosis in AML and influences Flt3-ITD kinase inhibitor acquired resistance
- Examining psychosocial correlates of physical activity and sedentary behavior in youth with and without HIV
- Modeling record scores in the snatch and its variations in the long-term training of young weightlifters
- Women with metabolic syndrome show similar health benefits from high-intensity interval training than men
- Long-term tracking demonstrates effectiveness of a partnership-led training program to advance the careers of biomedical researchers from underrepresented groups
- Serological evidence of arboviruses and coccidia infecting horses in the Amazonian region of Brazil
- Life-cycle mediated effects of urbanization on parasite communities in the estuarine fish, Fundulus heteroclitus
- Rapid serial blinks: An index of temporally increased cognitive load
- Do cancer stem cells exist? A pilot study combining a systematic review with the hierarchy-of-hypotheses approach
- Diversity of a cytokinin dehydrogenase gene in wild and cultivated barley
- PyRates—A Python framework for rate-based neural simulations
- Interdependence of balance mechanisms during bipedal locomotion
- Ecological interdependencies and resource competition: The role of information and communication in promoting effective collaboration in complex management situations
- Quaking-induced conversion of prion protein on a thermal mixer accelerates detection in brains infected with transmissible spongiform encephalopathy agents
- A new finite element based parameter to predict bone fracture
- Clinical, imaging features and outcome in internal carotid artery versus middle cerebral artery disease
- The association of weight status and weight perception with number of confidants in adolescents
- Smoking trajectories and risk of stroke until age of 50 years – The Northern Finland Birth Cohort 1966
- Discoidin domain Receptor 2: A determinant of metabolic syndrome-associated arterial fibrosis in non-human primates
- L-lysine protects C2C12 myotubes and 3T3-L1 adipocytes against high glucose damages and stresses
- IGF-1-enhanced miR-513a-5p signaling desensitizes glioma cells to temozolomide by targeting the NEDD4L-inhibited Wnt/β-catenin pathway
- Performance, complexity and dynamics of force maintenance and modulation in young and older adults
- Selection of appropriate reference genes for quantitative real-time reverse transcription PCR in Betula platyphylla under salt and osmotic stress conditions
- A method for complete plant taxon and site inventories in large forest areas with the help of orienteering maps, as exemplified by target forests in Switzerland
- Bilateral Parkinson’s disease model rats exhibit hyperalgesia to subcutaneous formalin administration into the vibrissa pad
- Microbial diversity and mineral composition of weathered serpentine rock of the Khalilovsky massif
- Interaction strength in plant-pollinator networks: Are we using the right measure?
- Erastin, a ferroptosis-inducing agent, sensitized cancer cells to X-ray irradiation via glutathione starvation in vitro and in vivo
- Psychometric properties of the PERMA Profiler for measuring wellbeing in Australian adults
- Host-mediated microbiome engineering (HMME) of drought tolerance in the wheat rhizosphere
- Trust development as an expectancy-learning process: Testing contingency effects
- Mutation analysis of annual sediment discharge at Wu Long station in Wu Jiang River Basin from 1960 to 2016
- Improving distribution models of riparian vegetation with mobile laser scanning and hydraulic modelling
- Skeletal muscle alterations in tachycardia-induced heart failure are linked to deficient natriuretic peptide signalling and are attenuated by RAS-/NEP-inhibition
- Comprehensive value assessment of drugs using a multi-criteria decision analysis: An example of targeted therapies for metastatic colorectal cancer treatment
- Leisure-time physical activity and sports in the Brazilian population: A social disparity analysis
- Robot-assisted unicompartmental knee arthroplasty can reduce radiologic outliers compared to conventional techniques
- Causes of inferior relative survival after testicular germ cell tumor diagnosed 1953–2015: A population-based prospective cohort study
- Autosomal-dominant hypotrichosis with woolly hair: Novel gene locus on chromosome 4q35.1-q35.2
- Mystery or method? Evaluating claims of increased energy expenditure during a ketogenic diet
- Commentary on: Abundance and distribution of microplastics within surface sediments of a key shellfish growing region of Canada
- The genetic and environmental effects on school grades in late childhood and adolescence
- Metabolic power in hurling with respect to position and halves of match-play
- Local, nonlinear effects of cGMP and Ca2+ reduce single photon response variability in retinal rods
- Personality traits and risky behavior among motorcyclists: An exploratory study
- The long-term arterial assist intermittent pneumatic compression generating venous flow obstruction is responsible for improvement of arterial flow in ischemic legs
- Human-nature relationships in context. Experiential, psychological, and contextual dimensions that shape children’s desire to protect nature
- The spatio-temporal patterns of the topsoil organic carbon density and its influencing factors based on different estimation models in the grassland of Qinghai-Tibet Plateau
- INT reduction is a valid proxy for eukaryotic plankton respiration despite the inherent toxicity of INT and differences in cell wall structure
- Gestational diabetes mellitus diagnosed at 24 to 28 weeks of gestation in older and obese Women: Is it too late?
- Hermetia illucens in diets for zebrafish (Danio rerio): A study of bacterial diversity by using PCR-DGGE and metagenomic sequencing
- Thermotolerant Campylobacter spp. in chicken and bovine meat in Italy: Prevalence, level of contamination and molecular characterization of isolates
- Prognostic value of maximum standard uptake value, metabolic tumor volume, and total lesion glycolysis of positron emission tomography/computed tomography in patients with breast cancer: A systematic review and meta-analysis
- Understanding the variability of handheld spectral-domain optical coherence tomography measurements in supine infants
- Helicobacter pylori antibody and pepsinogen testing for predicting gastric microbiome abundance
- Outcome of bimodality definitive chemoradiation does not differ from that of trimodality upfront neck dissection followed by adjuvant treatment for >6 cm lymph node (N3) head and neck cancer
- Belief in conspiracy theories: The predictive role of schizotypy, Machiavellianism, and primary psychopathy
- Does seed size mediate sex-specific reproduction costs in the Callosobruchus maculatus bean beetle?
- Characters matter: How narratives shape affective responses to risk communication
- First-4-week erythrocyte sedimentation rate variability predicts erythrocyte sedimentation rate trajectories and clinical course among patients with pyogenic vertebral osteomyelitis
- Walking with head-mounted virtual and augmented reality devices: Effects on position control and gait biomechanics
- Cohort Profile: The Dutch Perined-Lifelines birth cohort
- Accelerated development of rice stripe virus-resistant, near-isogenic rice lines through marker-assisted backcrossing
- Physical determinants of vault performance and their age-related differences across male junior and elite top-level gymnasts
- The transcriptome analysis of the Arabidopsis thaliana in response to the Vibrio vulnificus by RNA-sequencing
- Stable depletion of RUNX1-ETO in Kasumi-1 cells induces expression and enhanced proteolytic activity of Cathepsin G and Neutrophil Elastase
- Overweight and obesity are associated with clustering of metabolic risk factors in early pregnancy and the risk of GDM
- Genome-wide association mapping of total antioxidant capacity, phenols, tannins, and flavonoids in a panel of Sorghum bicolor and S. bicolor × S. halepense populations using multi-locus models
- Choosing important health outcomes for comparative effectiveness research: 5th annual update to a systematic review of core outcome sets for research
- Balancing fire risk and human thermal comfort in fire-prone urban landscapes
- Low-rank graph optimization for multi-view dimensionality reduction
- Time optimal entrainment control for circadian rhythm
- Why do football clubs fail financially? A financial distress prediction model for European professional football industry
- Reconstruction error based deep neural networks for coronary heart disease risk prediction
- Exploring the geography of serious mental illness and type 2 diabetes comorbidity in Illawarra—Shoalhaven, Australia (2010 -2017)
- To be or not to be an inclusive teacher: Are empathy and social dominance relevant factors to positive attitudes towards inclusive education?
- Seasonality of deaths with respect to age and cause in Chitral District Pakistan
- Myalgic encephalomyelitis/chronic fatigue Syndrome (ME/CFS): Investigating care practices pointed out to disparities in diagnosis and treatment across European Union
- Poor nutrition for under-five children from poor households in Ethiopia: Evidence from 2016 Demographic and Health Survey
- The effect of a curriculum-based physical activity intervention on accelerometer-assessed physical activity in schoolchildren: A non-randomised mixed methods controlled before-and-after study
- Safety and immune cell kinetics after donor natural killer cell infusion following haploidentical stem cell transplantation in children with recurrent neuroblastoma
- On-site blood culture incubation shortens the time to knowledge of positivity and microbiological results in septic patients
- In vivo ultrasound thermal ablation control using echo decorrelation imaging in rabbit liver and VX2 tumor
- Genome wide identification and characterization of microsatellite markers in black pepper (Piper nigrum): A valuable resource for boosting genomics applications
- Child behaviour and subsequent changes in body weight, composition and shape
- RBM3 and CIRP expressions in targeted temperature management treated cardiac arrest patients—A prospective single center study
- Segmentation of distal airways using structural analysis
- A single intra-articular injection of 2.0% non-chemically modified sodium hyaluronate vs 0.8% hylan G-F 20 in the treatment of symptomatic knee osteoarthritis: A 6-month, multicenter, randomized, controlled non-inferiority trial
- What effort is required in retrieving self-defining memories? Specific autonomic responses for integrative and non-integrative memories
- Influence of pre-pregnancy body mass index (p-BMI) and gestational weight gain (GWG) on DNA methylation and protein expression of obesogenic genes in umbilical vein
- Early recovery after endoscopic totally extraperitoneal (TEP) hernia repair in athletes with inguinal disruption: A prospective cohort study
- Extending the information content of the MALDI analysis of biological fluids via multi-million shot analysis
- Effects of the performance parameters of a wheelchair on the changes in the position of the centre of gravity of the human body in dynamic condition
- An analysis of atmospheric water vapor variations over a complex agricultural region using airborne imaging spectrometry
- Factors influencing harmonized health data collection, sharing and linkage in Denmark and Switzerland: A systematic review
- Intracerebroventricular administration of the thyroid hormone analog TRIAC increases its brain content in the absence of MCT8
- Gaze direction reveals implicit item and source memory in older adults
- Social influences on smoking cessation in mid-life: Prospective cohort of UK women
- Cord compression defined by MRI is the driving factor behind the decision to operate in Degenerative Cervical Myelopathy despite poor correlation with disease severity
- Characterization of testis-specific serine/threonine kinase 1-like (TSSK1-like) gene and expression patterns in diploid and triploid Pacific abalone (Haliotis discus hannai; Gastropoda; Mollusca) males
- Eavesdropping on dolphins: Investigating the habits of bottlenose dolphins (Tursiops truncatus) through fixed acoustic stations
- Modeling narrative structure and dynamics with networks, sentiment analysis, and topic modeling
- Screening colonoscopy and flexible sigmoidoscopy for reduction of colorectal cancer incidence: A case-control study
- Focal inputs are a potential origin of local field potential (LFP) in the brain regions without laminar structure
- Emergency Department visits due to intoxications in a Dutch university hospital: Occurrence, characteristics and health care costs
- The effects of isobaric and hyperbaric bupivacaine on maternal hemodynamic changes post spinal anesthesia for elective cesarean delivery: A prospective cohort study
- Child protection, domestic violence, and ethnic minorities: Narrative results from a mixed methods study in Australia
- Prediction of early C-reactive protein levels after non-cardiac surgery under general anesthesia
- Long-term outcome in patients after treatment for Cushing’s disease in childhood
- The effects of diurnal intermittent fasting on proinflammatory cytokine levels while controlling for sleep/wake pattern, meal composition and energy expenditure
- Snord94 expression level alters methylation at C62 in snRNA U6
- Gender differences in the interaction effect of cumulative risk and problem-focused coping on depression among adult employees
- The relation between local and distal muscle fat infiltration in chronic whiplash using magnetic resonance imaging
- Prevalence of hypothermia on admission to recovery room remains high despite a large use of forced-air warming devices: Findings of a non-randomized observational multicenter and pragmatic study on perioperative hypothermia prevalence in France
- De novo transcriptome analysis and identification of genes associated with immunity, detoxification and energy metabolism from the fat body of the tephritid gall fly, Procecidochares utilis
- Linking surveillance and clinical data for evaluating trends in bloodstream infection rates in neonatal units in England
- Women’s decision-making power and undernutrition in their children under age five in the Democratic Republic of the Congo: A cross-sectional study
- Ocular surface and tear film changes in workers exposed to organic solvents used in the dry-cleaning industry
- The interferon-gamma pathway is selectively up-regulated in the liver of patients with secondary hemophagocytic lymphohistiocytosis
- Serotonin modulates behavior-related neural activity of RID interneuron in Caenorhabditis elegans
- Risk factors of post-discharge under-five mortality among Danish children 1997-2016: A register-based study
- Apologies as signals for change? Implicit theories of personality and reactions to apologies during the #MeToo movement
- Correction: Modeling the natural history of fatty liver using lifestyle–related risk factors: Effects of body mass index (BMI) on the life–course of fatty liver
- Knee joint biomechanics in transtibial amputees in gait, cycling, and elliptical training
- The polarity protein Dlg5 regulates collective cell migration during Drosophila oogenesis
- Resolving fluorescent species by their brightness and diffusion using correlated photon-counting histograms
- Rapid loss of flight in the Aldabra white-throated rail
- Effects of acupuncture at Pericardium-6 and Stomach-36 on nausea, sedation and gastrointestinal motility in healthy dogs administered intravenous lidocaine infusions
- Classification of flavors in cigarillos and little cigars and their variable cellular and acellular oxidative and cytotoxic responses
- Image denoising via a non-local patch graph total variation
- Chemogenomic profiling to understand the antifungal action of a bioactive aurone compound
- Short-term treatment with a peroxisome proliferator-activated receptor α agonist influences plasma one-carbon metabolites and B-vitamin status in rats
- Elevation, an emotion for prosocial contagion, is experienced more strongly by those with greater expectations of the cooperativeness of others
- Efficient delipidation of a recombinant lung surfactant lipopeptide analogue by liquid-gel chromatography
- Isobaric mass tagging and triple quadrupole mass spectrometry to determine lipid biomarker candidates for Alzheimer's disease
- Awareness of polycystic ovary syndrome among obstetrician-gynecologists and endocrinologists in Northern Europe
- Maternal death review and surveillance: The case of Central Hospital, Benin City, Nigeria
- Assessing insomnia management in community pharmacy setting in Jordan: A simulated patient approach
- Mapping the EORTC QLQ-C30 and QLQ-H&N35 to the EQ-5D for head and neck cancer: Can disease-specific utilities be obtained?
- Increasing sika deer population density may change resource use by larval dung beetles
- The fertile grounds of reproductive activism in The Gambia: A qualitative study of local key stakeholders’ understandings and heterogeneous actions related to infertility
- Subtle changes in striatal muscarinic M1 and M4 receptor expression in the DYT1 knock-in mouse model of dystonia
- Using evidence when planning for trial recruitment: An international perspective from time-poor trialists
- Molecular identification of Ehrlichia, Anaplasma, Babesia and Theileria in African elephants and their ticks
- Does educational level predict hearing aid self-efficacy in experienced older adult hearing aid users from Latin America? Validation process of the Spanish version of the MARS-HA questionnaire
- Psychometric properties of the Portuguese version of the National Eye Institute Visual Function Questionnaire-25
- Chlamydiaceae in wild, feral and domestic pigeons in Switzerland and insight into population dynamics by Chlamydia psittaci multilocus sequence typing
- Longitudinal Doppler references for monochorionic twins and comparison with singletons
- Survey on Chlamydiaceae in cloacal swabs from Swiss turkeys demonstrates absence of Chlamydia psittaci and low occurrence of Chlamydia gallinacean
- Computational singular perturbation analysis of brain lactate metabolism
- Reproductive life-history strategies in a species-rich assemblage of Amazonian electric fishes
- Analyzing and interpreting spatial and temporal variability of the United States county population distributions using Taylor's law
- Direct comparison of retinal structure and function in retinitis pigmentosa by co-registering microperimetry and optical coherence tomography
- Cattle intestinal microbiota shifts following Escherichia coli O157:H7 vaccination and colonizationtravel
- The genetic diversity and population structure of Sophora alopecuroides (Faboideae) as determined by microsatellite markers developed from transcriptome
- Significant reduction of vancomycin resistant E. faecium in the Norwegian broiler population coincided with measures taken by the broiler industry to reduce antimicrobial resistant bacteria
- Dual-hemispheric transcranial direct current stimulation (tDCS) over primary motor cortex does not affect movement selection
- Pharmacological or genetic targeting of Transient Receptor Potential (TRP) channels can disrupt the planarian escape response
- Establishment and characterization of transformed goat primary cells by expression of simian virus 40 large T antigen for orf virus propagations
- Flax rust infection transcriptomics reveals a transcriptional profile that may be indicative for rust Avr genes
- Optimizing sgRNA length to improve target specificity and efficiency for the GGTA1 gene using the CRISPR/Cas9 gene editing system
- Diversity of A(H5N1) clade 2.3.2.1c avian influenza viruses with evidence of reassortment in Cambodia, 2014-2016
- The effects of kinesiology taping on experimentally-induced thermal and mechanical pain in otherwise pain-free healthy humans: A randomised controlled repeated-measures laboratory study
- Tobacco and E-cigarette use among cancer survivors in the United States
- Sharing of gut microbial strains between selected individual sets of twins cohabitating for decades
- Loading… loading… The influence of download time on information search
- Crystal structures of p120RasGAP N-terminal SH2 domain in its apo form and in complex with a p190RhoGAP phosphotyrosine peptide
- Echolocation while drinking: Pulse-timing strategies by high- and low-frequency FM bats
- A novel one-class classification approach to accurately predict disease-gene association in acute myeloid leukemia cancer
- Characterization and quantitative trait locus mapping of late-flowering from a Thai soybean cultivar introduced into a photoperiod-insensitive genetic background
- Plasmodium falciparum infection dysregulates placental autophagy
- Intraocular pressure elevation after subtenon triamcinolone acetonide injection; Multicentre retrospective cohort study in Japan
- Generalized nonlinear Schrödinger equations describing the Second Harmonic Generation of femtosecond pulse, containing a few cycles, and their integrals of motion
- Community perception of abortion, women who abort and abortifacients in Kisumu and Nairobi counties, Kenya
- Expression of Concern: Synthesized multiple antigenic polypeptide vaccine based on B-cell epitopes of human heparanase could elicit a potent antimetastatic effect on human hepatocellular carcinoma in vivo
- Correction: Effective methods for the inactivation of Francisella tularensis
- The Salmonella type III effector SpvC triggers the reverse transmigration of infected cells into the bloodstream
- Spatial patterns of tuberculosis and HIV co-infection in Ethiopia
- Serum PCSK6 and corin levels are not associated with cardiovascular outcomes in patients undergoing coronary angiography
- On a remarkable sexual dimorphic trait in the Characiformes related to the olfactory organ and description of a new miniature species of Tyttobrycon Géry (Characiformes: Characidae)
- Effect of integrating a video intervention on parenting practices and related parental self-efficacy regarding health behaviours within the Feel4Diabetes-study in Belgian primary schoolchildren from vulnerable families: A cluster randomized trial
- Type 2 diabetes care: Improvement by standardization at a diabetes rehabilitation clinic. An observational report
- Regulating pharmacists as contraception providers: A qualitative study from Coastal Kenya on injectable contraception provision to youth
- The impact of familial risk and early life adversity on emotion and reward processing networks in youth at-risk for bipolar disorder
- Melanism evolution in the cat family is influenced by intraspecific communication under low visibility
- Gene expression profiles classifying clinical stages of tuberculosis and monitoring treatment responses in Ethiopian HIV-negative and HIV-positive cohorts
- Selection of valid reference genes for quantitative real-time PCR in Cotesia chilonis (Hymenoptera: Braconidae) exposed to different temperatures
- Magnitude of surgical site infection and its associated factors among patients who underwent a surgical procedure at Wolaita Sodo University Teaching and Referral Hospital, South Ethiopia
- Kyasanur Forest Disease vaccination coverage and its perceived barriers in Goa, India—A mixed methods operational research
- Maternal psychosocial risk factors and lower respiratory tract infection (LRTI) during infancy in a South African birth cohort
- Ameliorating effects of Gö6976, a pharmacological agent that inhibits protein kinase D, on collagen-induced arthritis
- Regional hypothermia improves gastric microcirculatory oxygenation during hemorrhage in dogs
- Dynamical comparison between Drosha and Dicer reveals functional motion similarities and dissimilarities
- Retraction: Circulating FoxP3+ regulatory T and interleukin17-producing Th17 cells actively influence HBV clearance in de novo Hepatitis B virus infected patients after orthotopic liver transplantation
- Correction: Data in question: A survey of European biobank professionals on ethical, legal and societal challenges of biobank research
- Expression of HIF-1α is related to a poor prognosis and tamoxifen resistance in contralateral breast cancer
- Metabolic responses of wheat seedlings to osmotic stress induced by various osmolytes under iso-osmotic conditions
- A δ2H Isoscape of blackberry as an example application for determining the geographic origins of plant materials in New Zealand
- Fiber visualization for preoperative glioma assessment: Tractography versus local connectivity mapping
- Amiselimod (MT-1303), a novel sphingosine 1-phosphate receptor-1 functional antagonist, inhibits progress of chronic colitis induced by transfer of CD4+CD45RBhigh T cells
- Insights of organic fertilizer micro flora of bovine manure and their useful potentials in sustainable agriculture
- A scalable culturing system for the marine annelid Platynereis dumerilii
- Is parity a cause of tooth loss? Perceptions of northern Nigerian Hausa women
- Low-diversity bacterial microbiota in Southern Ocean representatives of lanternfish genera Electrona, Protomyctophum and Gymnoscopelus (family Myctophidae)
- Bacteriologically-confirmed pulmonary tuberculosis in an Ethiopian prison: Prevalence from screening of entrant and resident prisoners
- Multi-objective AGV scheduling in an automatic sorting system of an unmanned (intelligent) warehouse by using two adaptive genetic algorithms and a multi-adaptive genetic algorithm
- Identification of novel non-myelin biomarkers in multiple sclerosis using an improved phage-display approach
- PTH1-34 improves bone healing by promoting angiogenesis and facilitating MSCs migration and differentiation in a stabilized fracture mouse model
- Micro-RNA signatures in monozygotic twins discordant for congenital heart defects
- Aspirin enhances sensitization to the egg-white allergen ovalbumin in rats
- HCV incidence is associated with injecting partner age and HCV serostatus mixing in young adults who inject drugs in San Francisco
- Adherence is associated with a favorable outcome after lung transplantation
- Selection and validation of reference genes desirable for gene expression analysis by qRT-PCR in MeJA-treated ginseng hairy roots
- Availability, prices and affordability of essential medicines for treatment of diabetes and hypertension in private pharmacies in Zambia
- Retraction: Is insulin resistance the cause of fibromyalgia? A preliminary report
- Amnestic mild cognitive impairment in Parkinson’s disease: White matter structural changes and mechanisms
- Menagerie: A text-mining tool to support animal-human translation in neurodegeneration research
- Profusion of G-quadruplexes on both subunits of metazoan ribosomes
- Analysis of genome-wide DNA arrays reveals the genomic population structure and diversity in autochthonous Greek goat breeds
- Impact of human-derived hemoglobin based oxygen vesicles as a machine perfusion solution for liver donation after cardiac death in a pig model
- Microbial diversity within the digestive tract contents of Dezhou donkeys
- Nexrutine and exercise similarly prevent high grade prostate tumors in transgenic mouse model
- Shannon entropy approach reveals relevant genes in Alzheimer’s disease
- Experimental hut evaluation of DawaPlus 3.0 LN and DawaPlus 4.0 LN treated with deltamethrin and PBO against free-flying populations of Anopheles gambiae s.l. in Vallée du Kou, Burkina Faso
- Induction of miR 21 impairs the anti-Leishmania response through inhibition of IL-12 in canine splenic leukocytes
- Ultra-deep massively parallel sequencing with unique molecular identifier tagging achieves comparable performance to droplet digital PCR for detection and quantification of circulating tumor DNA from lung cancer patients
- Correction: Synanthropic Mammals as Potential Hosts of Tick-Borne Pathogens in Panama
- Pupillometry evaluation of melanopsin retinal ganglion cell function and sleep-wake activity in pre-symptomatic Alzheimer’s disease
- Sickness absence and disability pension before and after first childbirth and in nulliparous women by numerical gender segregation of occupations: A Swedish population-based longitudinal cohort study
- New insights into intranuclear inclusions in thyroid carcinoma: Association with autophagy and with BRAFV600E mutation
- Effects of medium chain triglycerides supplementation on insulin sensitivity and beta cell function: A feasibility study
- The impact of mental health recovery narratives on recipients experiencing mental health problems: Qualitative analysis and change model
- Not so unique to Primates: The independent adaptive evolution of TRIM5 in Lagomorpha lineage
- Distributed forecasting and ant colony optimization for the bike-sharing rebalancing problem with unserved demands
- Chronic dietary supplementation with kynurenic acid, a neuroactive metabolite of tryptophan, decreased body weight without negative influence on densitometry and mandibular bone biomechanical endurance in young rats
- Higher neuron densities in the cerebral cortex and larger cerebellums may limit dive times of delphinids compared to deep-diving toothed whales
- Individual variation in migratory movements of chinstrap penguins leads to widespread occupancy of ice-free winter habitats over the continental shelf and deep ocean basins of the Southern Ocean
- Correction: Anabolic steroids among resistance training practitioners
- Correction: Incidence of sexually transmitted infections in men who have sex with men and who are at substantial risk of HIV infection – A meta-analysis of data from trials and observational studies of HIV pre-exposure prophylaxis
- Retraction: Multidrug-Resistance Related Long Non-Coding RNA Expression Profile Analysis of Gastric Cancer
- The effect of emotional information from eyes on empathy for pain: A subliminal ERP study
- NKL homeobox gene activities in normal and malignant myeloid cells
- Personal distress as a mediator between self-esteem, self-efficacy, loneliness and problematic video gaming in female and male emerging adult gamers
- Correction: Quantitative CT analysis of honeycombing area predicts mortality in idiopathic pulmonary fibrosis with definite usual interstitial pneumonia pattern: A retrospective cohort study
- Prevalence of vitamin D deficiency in women from southern Brazil and association with vitamin D-binding protein levels and GC-DBP gene polymorphisms
- Balance control mechanisms do not benefit from successive stimulation of different sensory systems
- Measuring individual differences in cognitive abilities in the lab and on the web
- Correction: Improving the impact of HIV pre-exposure prophylaxis implementation in small urban centers among men who have sex with men: An agent-based modelling study
- Objective sleep assessment in >80,000 UK mid-life adults: Associations with sociodemographic characteristics, physical activity and caffeine
- Self-reported traffic-related air pollution and respiratory symptoms among adults in an area with modest levels of traffic
- A hierarchical loss and its problems when classifying non-hierarchically
- Cross-cultural examination of the Big Five Personality Trait Short Questionnaire: Measurement invariance testing and associations with mental health
- A geographically weighted random forest approach for evaluate forest change drivers in the Northern Ecuadorian Amazon
- Spatial genetic structure and diversity of natural populations of Aesculus hippocastanum L. in Greece
- Anemia in patients with diabetic foot ulcer and its impact on disease outcome among Nigerians: Results from the MEDFUN study
- The effectiveness of physiotherapy interventions on pain and quality of life in adults with persistent post-surgical pain compared to usual care: A systematic review
- Association between anxiety and non-coding genetic variants of the galanin neuropeptide
- Evaluating the effectiveness of HOCl application on odor reduction and earthworm population growth during vermicomposting of food waste employing Eisenia fetida
- What is known about the quality of out-of-hospital emergency medical services in the Arabian Gulf States? A systematic review
- Impact of dietary patterns, individual and workplace characteristics on blood pressure status among civil servants in Bida and Wushishi communities of Niger State, Nigeria
- Robust detection of event-related potentials in a user-voluntary short-term imagery task
- Microbiota composition of the dorsal patch of reproductive male Leptonycteris yerbabuenae
- Characteristics of the gut microbiota in professional martial arts athletes: A comparison between different competition levels
- Interpreting social determinants: Emergent properties and adolescent risk behaviour
- Tulathromycin treatment does not affect bacterial dissemination or clearance of Brucella melitensis 16M following experimental infection of goats
- Hydrogenotrophic methanogens of the mammalian gut: Functionally similar, thermodynamically different—A modelling approach
- Gene delivery of a modified antibody to Aβ reduces progression of murine Alzheimer’s disease
- Flock sensitivity and specificity of pooled fecal qPCR and pooled serum ELISA for screening ovine paratuberculosis
- Disrupted resting-state brain functional network in methamphetamine abusers: A brain source space study by EEG
- Steady expression of high oleic acid in peanut bred by marker-assisted backcrossing for fatty acid desaturase mutant alleles and its effect on seed germination along with other seedling traits
- DNA metabarcoding-based diet survey for the Eurasian otter (Lutra lutra): Development of a Eurasian otter-specific blocking oligonucleotide for 12S rRNA gene sequencing for vertebrates
- Dynamics of photosynthetic responses in 10 rubber tree (Hevea brasiliensis) clones in Colombian Amazon: Implications for breeding strategies
- Inferring disease severity in rheumatoid arthritis using predictive modeling in administrative claims databases
- An evaluation of different classification algorithms for protein sequence-based reverse vaccinology prediction
- Detecting false intentions using unanticipated questions
- In vitro activity and In vivo efficacy of Isoliquiritigenin against Staphylococcus xylosus ATCC 700404 by IGPD target
- When risk becomes illness: The personal and social consequences of cervical intraepithelial neoplasia medical surveillance
- Sperm DNA integrity in adult survivors of paediatric leukemia and lymphoma: A pilot study on the impact of age and type of treatment
- Swaying slower reduces the destabilizing effects of a compliant surface on voluntary sway dynamics
- Dye diffusion during laparoscopic tubal patency tests may suggest a lymphatic contribution to dissemination in endometriosis: A prospective, observational study
- Intra-individual correlations between quantitative THK-5351 PET and MRI-derived cortical volume in Alzheimer’s disease differ according to disease severity and amyloid positivity
- Assessment of the role of Trichomonas tenax in the etiopathogenesis of human periodontitis: A systematic review
- Root and alveolar bone changes in first premolars adjacent to the traction of buccal versus palatal maxillary impacted canines
- Investigating multisite pain as a predictor of self-reported falls and falls requiring health care use in an older population: A prospective cohort study
- The socio-economic status gradient in median lifespan by birth cohorts: Evidence from Dutch Olympic athletes born between 1852 and 1947
- Identification of Plasmodium dipeptidyl aminopeptidase allosteric inhibitors by high throughput screening
- Brief group-delivered motivational interviewing is equally effective as brief group-delivered cognitive-behavioral therapy at reducing alcohol use in risky college drinkers
- Predicting the occurrence of surgical site infections using text mining and machine learning
- Organic carbon sequestration in sediments of subtropical Florida lakes
- Reliability of isokinetic knee strength measurements in children: A systematic review and meta-analysis
- Plasma concentration of neurofilament light chain protein decreases after switching from tenofovir disoproxil fumarate to tenofovir alafenamide fumarate
- Revealing the assembly of filamentous proteins with scanning transmission electron microscopy
- Effects of treated wastewater on the ecotoxicity of small streams – Unravelling the contribution of chemicals causing effects
- Air quality and obesity at older ages in China: The role of duration, severity and pollutants
- Breeding French bulldogs so that they breathe well—A long way to go
- A network-centric approach for estimating trust between open source software developers
- A novel scoring system to predict the requirement for surgical intervention in victims of motor vehicle crashes: Development and validation using independent cohorts
- Prediction of overt hepatic encephalopathy by the continuous reaction time method and the portosystemic encephalopathy syndrome test in clinically mentally unimpaired patients with cirrhosis
- Attentional capture by Pavlovian reward-signalling distractors in visual search persists when rewards are removed
- Validation of risk factors for recurrence of renal cell carcinoma: Results from a large single-institution series
- Real world, big data cost of pharmaceutical treatment for rheumatoid arthritis in Greece
- Does training with amplitude modulated tones affect tone-vocoded speech perception?
- Accuracy of the Cosmed K5 portable calorimeter
- Non-invasive diagnostic criteria of hepatocellular carcinoma: Comparison of diagnostic accuracy of updated LI-RADS with clinical practice guidelines of OPTN-UNOS, AASLD, NCCN, EASL-EORTC, and KLSCG-NCC
- Omentin-1 in diabetes mellitus: A systematic review and meta-analysis
- Immunological recovery, failure and factors associated with CD-4 T-cells progression over time, among adolescents and adults living with HIV on Antiretroviral Therapy in Northern Ethiopia: A retrospective cross sectional study
- Correction: Examining the relationship between socio-economic status, WASH practices and wasting
- Prediction of poor outcome after hypoxic-ischemic brain injury by diffusion-weighted imaging: A systematic review and meta-analysis
- Correction: Change in left inferior frontal connectivity with less unexpected harmonic cadence by musical expertise
- Absence of posture-dependent and posture-congruent memory effects on the recall of action sentences
- Identifiability and numerical algebraic geometry
- Co-infection of cattle with Fasciola hepatica or F. gigantica and Mycobacterium bovis: A systematic review
- High maternal self-efficacy is associated with meeting Institute of Medicine gestational weight gain recommendations
- Isolation of endothelial cells, pericytes and astrocytes from mouse brain
- Effects of metformin administration on endocrine-metabolic parameters, visceral adiposity and cardiovascular risk factors in children with obesity and risk markers for metabolic syndrome: A pilot study
- Physiological impact of nanoporous acupuncture needles: Laser Doppler perfusion imaging in healthy volunteers
- A world map of evidence-based medicine: Density equalizing mapping of the Cochrane database of systematic reviews
- Common trust and personal safety issues: A systematic review on the acceptability of health and social interventions for persons with lived experience of homelessness
- Implications of monocular vision for racing drivers
- Effect of arteriovenous access closure and timing on kidney function in kidney transplant recipients
- Expression of Concern: Activation of Notch Signaling Is Required for Cholangiocarcinoma Progression and Is Enhanced by Inactivation of p53 In Vivo
- Correction: Calorie information and dieting status modulate reward and control activation during the evaluation of food images
- Immune responses to a HSV-2 polynucleotide immunotherapy COR-1 in HSV-2 positive subjects: A randomized double blinded phase I/IIa trial
- What Twitter teaches us about patient-provider communication on pain
- Development of a computer-aided design software for the quantitative evaluation of aesthetic damage
- Microtubules are necessary for proper Reticulon localization during mitosis
- Human perception and biosignal-based identification of posed and spontaneous smiles
- State of household need for caregivers and determinants of psychological burden among caregivers of older people in Thailand: An analysis from national surveys on older persons
- Dietary habits of the black-necked swan Cygnus melancoryphus (Birds: Anatidae) and variability of the aquatic macrophyte cover in the Río Cruces wetland, southern Chile
- Improving emotional health and self-esteem of Malaysian adolescents living in orphanages through Life Skills Education program: A multi-centre randomized control trial
- Radiocarbon, Bayesian chronological modeling and early European metal circulation in the sixteenth-century AD Mohawk River Valley, USA
- Economic evaluation of HPV DNA test as primary screening method for cervical cancer: A health policy discussion in Greece
- Clonality testing in the lymph nodes from dogs with lymphadenomegaly due to Leishmania infantum infection
- Transcriptome landscape of Rafflesia cantleyi floral buds reveals insights into the roles of transcription factors and phytohormones in flower development
- Comparison of 6-week PMTCT outcomes for HIV-exposed and HIV-unexposed infants in the era of lifelong ART: Results from an observational prospective cohort study
- Sex differences in physical performance by age, educational level, ethnic groups and birth cohort: The Longitudinal Aging Study Amsterdam
- HIV-1 proteins gp120 and tat induce the epithelial–mesenchymal transition in oral and genital mucosal epithelial cells
- Correction: Intraperitoneal administration of follistatin promotes adipocyte browning in high-fat diet-induced obese mice
- Inflammatory mediators and lung abnormalities in HIV: A systematic review
- An investigation of machine learning methods in delta-radiomics feature analysis
- Differences in receipt of opioid agonist treatment and time to enter treatment for opioid use disorder among specialty addiction programs in the United States, 2014-17
- Intensity-modulated ventricular irradiation for intracranial germ-cell tumors: Survival analysis and impact of salvage re-irradiation
- Personalized breast cancer screening strategies: A systematic review and quality assessment
- The shifting epidemiology and serotype distribution of invasive pneumococcal disease in Ontario, Canada, 2007-2017
- Backwashing performance of self-cleaning screen filters in drip irrigation systems
- Hierarchical cluster analysis to identify the homogeneous desertification management units
- MicroRNA-710 regulates multiple pathways of carcinogenesis in murine metastatic breast cancer
- MicroRNA profiling in canine multicentric lymphoma
- Early impact of agropastoral activities and climate on the littoral landscape of Corsica since mid-Holocene
- Barriers and facilitators for caregiver involvement in the home care of people with pressure injuries: A qualitative study
- Evaluating mob stocking for beef cattle in a temperate grassland
- Suicide among physicians and health-care workers: A systematic review and meta-analysis
- Survival kinetics of Listeria monocytogenes on chickpeas, sesame seeds, pine nuts, and black pepper as affected by relative humidity storage conditions
- Free thiol groups on poly(aspartamide) based hydrogels facilitate tooth-derived progenitor cell proliferation and differentiation
- Acute and chronic traumatic diaphragmatic hernia: 10 years’ experience
- Application of DArT seq derived SNP tags for comparative genome analysis in fishes; An alternative pipeline using sequence data from a non-traditional model species, Macquaria ambigua
- Dipole-wind interactions under gap wind jet conditions in the Gulf of Tehuantepec, Mexico: A surface drifter and satellite database analysis
- PfmPif97-like regulated by Pfm-miR-9b-5p participates in shell formation in Pinctada fucata martensii
- Synapsin 1 promotes Aβ generation via BACE1 modulation
- Predictive utility of the C-reactive protein to albumin ratio in early allograft dysfunction in living donor liver transplantation: A retrospective observational cohort study
- Effects of SCUBA bubbles on counts of roving piscivores in a large remote marine protected area
- Examining practice effects in repeated measurements of vibration perception thresholds on finger pulps of healthy individuals – Is it possible to improve your results over a clinically relevant test interval?
- Analysis of gut microbiota of obese individuals with type 2 diabetes and healthy individuals
- The evaluation of AMSR-E soil moisture data in atmospheric modeling using a suitable time series iteration to derive land surface fluxes over the Tibetan Plateau
- Comparison of plasma fatty acid binding protein 4 concentration in venous and capillary blood
- Nonalcoholic fatty liver disease and hepatic fibrosis among perinatally HIV-monoinfected Asian adolescents receiving antiretroviral therapy
- Environmental enrichment effects after early stress on behavior and functional brain networks in adult rats
- Correction: Heart rate recovery and morbidity after noncardiac surgery: Planned secondary analysis of two prospective, multi-centre, blinded observational studies
- Developmental expression of human tau in Drosophila melanogaster glial cells induces motor deficits and disrupts maintenance of PNS axonal integrity, without affecting synapse formation
- TRPC3 determines osmosensitive [Ca2+]i signaling in the collecting duct and contributes to urinary concentration
- Correction: May the change of platelet to lymphocyte ratio be a prognostic factor for T3-T4 laryngeal squamous cell carcinoma: A retrospective study
- Awareness, willingness to use, and history of HIV PrEP use among gay, bisexual, and other men who have sex with men in Nigeria
- Odor quality profile is partially influenced by verbal cues
- A novel assessment for Readiness Evaluation during Simulated Dismounted Operations: A reliability study
- Cognitive bias modification for energy drink cues
- Contribution of ROS and metabolic status to neonatal and adult CD8+ T cell activation
- Correction: Assessment of lung function in successfully treated tuberculosis reveals high burden of ventilatory defects and COPD
- Verification of mesenchymal stem cell injection therapy for interstitial cystitis in a rat model
- Vertical transmission of HIV among pregnant women who initially had false–negative rapid HIV tests in four South African antenatal clinics
- Tapped out or barely tapped? Recommendations for how to harness the vast and largely unused potential of the Mechanical Turk participant pool
- Are lizards sensitive to anomalous seasonal temperatures? Long-term thermobiological variability in a subtropical species
- Mutation spectrums of TSC1 and TSC2 in Chinese women with lymphangioleiomyomatosis (LAM)
- “That’s all Fake”: Health professionals stigma and physical healthcare of people living with Serious Mental Illness
- On the interpretation of the atmospheric mechanism transporting the environmental trigger of Kawasaki Disease
- Comparison of the Panther Fusion and Allplex assays for the detection of respiratory viruses in clinical samples
- Acute kidney injury in Ugandan children with severe malaria is associated with long-term behavioral problems
- Rho-associated kinase and zipper-interacting protein kinase, but not myosin light chain kinase, are involved in the regulation of myosin phosphorylation in serum-stimulated human arterial smooth muscle cells
- Use of detailed family history data to improve risk prediction,with application to breast cancer screening
- The promise of open survey questions—The validation of text-based job satisfaction measures
- Measuring within-day cognitive performance using the experience sampling method: A pilot study in a healthy population
- Shifts in trait-based and taxonomic macrofauna community structure along a 27-year time-series in the south-eastern North Sea
- Plasma biomarkers of inflammation, coagulation, and brain injury as predictors of delirium duration in older hospitalized patients
- Factors associated with repeat rectal Neisseria gonorrhoeae and Chlamydia trachomatis screening following inconclusive nucleic acid amplification testing: A potential missed opportunity for screening
- Beyond Buddhism and animism: A psychometric test of the structure of Burmese Theravada Buddhism
- Determining the molecular drivers of species-specific interferon-stimulated gene product 15 interactions with nairovirus ovarian tumor domain proteases
- Assessment of the perceived safety culture in the petrochemical industry in Japan: A cross-sectional study
- The Intersection of Human Disturbance and Diel Activity, with Potential Consequences on Trophic Interactions
- Levels of caspase-3 and histidine-rich glycoprotein in the embryo secretome as biomarkers of good-quality day-2 embryos and high-quality blastocysts
- Improving accuracy for finite element modeling of endovascular coiling of intracranial aneurysm
- Drought stress and re-watering affect the abundance of TIP aquaporin transcripts in barley
- Intra- and inter-task reliability of spatial attention measures in healthy older adults
- Genome-wide comparisons of gene expression in adult versus elderly burn patients
- Challenges to generating political prioritization for adolescent sexual and reproductive health in Kenya: A qualitative study
- Chronic atrophic gastritis and intestinal metaplasia surrounding diffuse-type gastric cancer: Are they just bystanders in the process of carcinogenesis?
- GLAMbox: A Python toolbox for investigating the association between gaze allocation and decision behaviour
- Correction: Rapid visual categorization is not guided by early salience-based selection
- Oxygen inhalation improves postoperative survival in ketamine-xylazine anaesthetised rats: An observational study
- An inter-island comparison of Darwin’s finches reveals the impact of habitat, host phylogeny, and island on the gut microbiome
- The use of opioids in low acuity pediatric trauma patients
- The acute myeloid leukemia associated AML1-ETO fusion protein alters the transcriptome and cellular progression in a single-oncogene expressing in vitro induced pluripotent stem cell based granulocyte differentiation model
- Primary Epstein-Barr virus infection with and without infectious mononucleosis
- “Disruptive behavior” in the operating room: A prospective observational study of triggers and effects of tense communication episodes in surgical teams
- Measuring affect-related cognitive bias: Do mice in opposite affective states react differently to negative and positive stimuli?
- Impaired cardiac performance, protein synthesis, and mitochondrial function in tumor-bearing mice
- Determinants of speeding among new generations of car drivers from the Arabian Peninsula. An investigation based among Omani drivers using the theory of planned behaviour
- Modulation of protective reflex cough by acute immune driven inflammation of lower airways in anesthetized rabbits
- KRAS and NRAS mutational gene profile of metastatic colorectal cancer patients in Jordan
- Successional, spatial, and seasonal changes in seed rain in the Atlantic forest of southern Bahia, Brazil
- Ultrasound microbubble potentiated enhancement of hyperthermia-effect in tumours
- Introgression of a cry1Ab transgene into open pollinated maize and its effect on Cry protein concentration and target pest survival
- Benefits of VISION Max automated cross-matching in comparison with manual cross-matching: A multidimensional analysis
- An explorative study identifies miRNA signatures for the diagnosis of non-celiac wheat sensitivity
- Effects of long-term statin-treatment on coronary atherosclerosis in patients with inflammatory joint diseases
- Connectivity differences between Gulf War Illness (GWI) phenotypes during a test of attention
- Native speakers like affixes, L2 speakers like letters? An overt visual priming study investigating the role of orthography in L2 morphological processing
- A partial genome assembly of the miniature parasitoid wasp, Megaphragma amalphitanum
- Can we learn from the ecology of the Bohemian gentian and save another closely related species of Gentianella?
- Are we prepared? The development of performance indicators for public health emergency preparedness using a modified Delphi approach
- Racial discrimination in medical care settings and opioid pain reliever misuse in a U.S. cohort: 1992 to 2015
- Applying circuit theory and landscape linkage maps to reintroduction planning for California Condors
- An improved understanding of ungulate population dynamics using count data: Insights from western Montana
- Pediatric trainees systematically under-report duty hour violations compared to electronic health record defined shifts
- An exclusive human milk diet for very low birth weight newborns—A cost-effectiveness and EVPI study for Germany
- Investigating unexplained genetic variation and its expression in the arbuscular mycorrhizal fungus Rhizophagus irregularis: A comparison of whole genome and RAD sequencing data
- Disease activity and damage in patients with primary Sjogren’s syndrome: Prognostic value of salivary gland ultrasonography
- A low-loss and compact single-layer butler matrix for a 5G base station antenna
- Response of rhizosphere bacterial community of Taxus chinensis var. mairei to temperature changes
- Choosing and enjoying violence in narratives
- Phylogeography, genetic diversity, and population structure of Nile crocodile populations at the fringes of the southern African distribution
- Association between workplace bullying and burnout, professional quality of life, and turnover intention among clinical nurses
- Factors predictive of the success of tuberculosis treatment: A systematic review with meta-analysis
- Area extraction and spatiotemporal characteristics of winter wheat–summer maize in Shandong Province using NDVI time series
- Caring for the elderly: A person-centered segmentation approach for exploring the association between health care needs, mental health care use, and costs in Germany
- Potentially inappropriate medication in older participants of the Berlin Aging Study II (BASE-II) – Sex differences and associations with morbidity and medication use
- Previously implanted mitral surgical prosthesis in patients undergoing transcatheter aortic valve implantation: Procedural outcome and morphologic assessment using multidetector computed tomography
- Towards elimination of measles and rubella in Italy: Progress and challenges
- Molecular characterization of pulmonary defenses against bacterial invasion in allergic asthma: The role of Foxa2 in regulation of β-defensin 1
- A validation of machine learning-based risk scores in the prehospital setting
- Early life starvation has stronger intra-generational than transgenerational effects on key life-history traits and consumption measures in a sawfly
- Longitudinal changes in plasma hemopexin and alpha-1-microglobulin concentrations in women with and without clinical risk factors for pre-eclampsia
- Feasibility of thin-slice abdominal CT in overweight patients using a vendor neutral image-based denoising algorithm: Assessment of image noise, contrast, and quality
- Women's abortion seeking behavior under restrictive abortion laws in Mexico
- Understanding the combining ability for physiological traits in soybean
- Second language learning induces grey matter volume increase in people with multiple sclerosis
- Increased performance of DNA metabarcoding of macroinvertebrates by taxonomic sorting
- Hybrid denture acrylic composites with nanozirconia and electrospun polystyrene fibers
- Predictive sampling effort and species-area relationship models for estimating richness in fragmented landscapes
- The mixture toxicity of heavy metals on Photobacterium phosphoreum and its modeling by ion characteristics-based QSAR
- Exogenous melatonin reduces the inhibitory effect of osmotic stress on photosynthesis in soybean
- Comparative analysis of ascorbate peroxidases (APXs) from selected plants with a special focus on Oryza sativa employing public databases
- The microbiota composition of the offspring of patients with gestational diabetes mellitus (GDM)
- Analysis of 13,312 benthic invertebrate samples from German streams reveals minor deviations in ecological status class between abundance and presence/absence data
- Extending the use of the World Health Organisations’ water sanitation and hygiene assessment tool for surveys in hospitals – from WASH-FIT to WASH-FAST
- Measuring subjective social status in children of diverse societies
- The effect of gut passage by waterbirds on the seed coat and pericarp of diaspores lacking “external flesh”: Evidence for widespread adaptation to endozoochory in angiosperms
- Cost effectiveness of therapeutic drug monitoring for imatinib administration in chronic myeloid leukemia
- Tissue ACE phenotyping in lung cancer
- Risk factors in the illness-death model: Simulation study and the partial differential equation about incidence and prevalence
- Association of cord blood methylation with neonatal leptin: An epigenome wide association study
- Clonality, spatial structure, and pathogenic variation in Fusarium fujikuroi from rain-fed rice in southern Laos
- Effect of Iodine treatments on Ocimum basilicum L.: Biofortification, phenolics production and essential oil composition
- In Vitro detection of Chronic Wasting Disease (CWD) prions in semen and reproductive tissues of white tailed deer bucks (Odocoileus virginianus)
- Thermodilution vs estimated Fick cardiac output measurement in an elderly cohort of patients: A single-centre experience
- Association between depressive symptoms and poor sleep quality among Han and Manchu ethnicities in a large, rural, Chinese population
- Application of pharmacogenomics and bioinformatics to exemplify the utility of human ex vivo organoculture models in the field of precision medicine
- Adherence to dietary guidelines for the Spanish population and risk of overweight/obesity in the SUN cohort
- Impact on mortality of being seropositive for hepatitis C virus antibodies among blood donors in Brazil: A twenty-year study
- Dietary intake as a predictor for all-cause mortality in hemodialysis subjects (NUGE-HD study)
- Rats’ (Rattus norvegicus) tool manipulation ability exceeds simple patterned behavior
- Luminescent and fluorescent triple reporter plasmid constructs for Wnt, Hedgehog and Notch pathway
- A lab-on-a-chip for rapid miRNA extraction
- Ghost hunting in the nonlinear dynamic machine
- Dysregulation of sterol regulatory element-binding protein 2 gene in HIV treatment-experienced individuals
- Evaluation of bacteriophage as an adjunct therapy for treatment of peri-prosthetic joint infection caused by Staphylococcus aureus
- Neuronal and glial DNA methylation and gene expression changes in early epileptogenesis
- Kinetics of the thermal inactivation and the refolding of bacterial luciferases in Bacillus subtilis and in Escherichia coli differ
- The use of back propagation neural networks and 18F-Florbetapir PET for early detection of Alzheimer’s disease using Alzheimer’s Disease Neuroimaging Initiative database
- Refinement of metabolite detection in cystic fibrosis sputum reveals heme correlates with lung function decline
- Labeling surface proteins with high specificity: Intrinsic limitations of phosphopantetheinyl transferase systems
- Irradiation dose response under hypoxia for the application of the sterile insect technique in Drosophila suzukii
- Neutrophils remain detrimentally active in hydroxyurea-treated patients with sickle cell disease
- Correction: Enhancing genomic selection by fitting large-effect SNPs as fixed effects and a genotype-by-environment effect using a maize BC1F3:4population
- Binding and functional profiling of antibody mutants guides selection of optimal candidates as antibody drug conjugates
- DUSTBot: A duplex and stealthy P2P-based botnet in the Bitcoin network
- Force-stabilizing synergies can be retained by coordinating sensory-blocked and sensory-intact digits
- Temperature time series analysis at Yucatan using natural and horizontal visibility algorithms
- Genome-wide identification and expression profile of the MADS-box gene family in Erigeron breviscapus
- Evaluating the international standards gap for the use of acupuncture needles by physiotherapists and chiropractors: A policy analysis
- Analyses with double knockouts of the Bmpr1a and Bmpr1b genes demonstrate that BMP signaling is involved in the formation of precerebellar mossy fiber nuclei derived from the rhombic lip
- The protein architecture in Bacteria and Archaea identifies a set of promiscuous and ancient domains
- Utility of preoperative electrophysiological testing of the facial nerve in patients with vestibular schwannoma
- Dynamics of plasma micronutrient concentrations and their correlation with serum proteins and thyroid hormones in patients with paracoccidioidomycosis
- Equity in aid allocation and distribution: A qualitative study of key stakeholders in Northern Uganda
- Health-related quality of life and intensity-specific physical activity in high-risk adults attending a behavior change service within primary care
- Syphilis among adult males with a history of male-to-male sexual contact living with diagnosed HIV in New York State (excluding New York City): The challenge of intersecting epidemics
- Entropy of human leukocyte antigen and killer-cell immunoglobulin-like receptor systems in immune-mediated disorders: A pilot study on multiple sclerosis
- Insights into fungal diversity of a shallow-water hydrothermal vent field at Kueishan Island, Taiwan by culture-based and metabarcoding analyses
- Predicting Abundances of Aedes mcintoshi, a primary Rift Valley fever virus mosquito vector
- Self-association of human beta-galactocerebrosidase: Dependence on pH, salt, and surfactant
- Lowbush blueberry fruit yield and growth response to inorganic and organic N-fertilization when competing with two common weed species
- Copy number-based quantification assay for non-invasive detection of PVT1-derived transcripts
- Association between religiosity and depression varies with age and sex among adults in South America: Evidence from the CESCAS I study
- Recall accuracy of weekly automated surveys of health care utilization and infectious disease symptoms among infants over the first year of life
- Physiological response of North China red elder container seedlings to inoculation with plant growth-promoting rhizobacteria under drought stress
- Acute kidney injury – A frequent and serious complication after primary percutaneous coronary intervention in patients with ST-segment elevation myocardial infarction
- Neurotherapeutic effects of Ginkgo biloba extract and its terpene trilactone, ginkgolide B, on sciatic crush injury model: A new evidence
- Clinical utility of mono-exponential model diffusion weighted imaging using two b-values compared to the bi- or stretched exponential model for the diagnosis of biliary atresia in infant liver MRI
- Optical coherence tomography angiography reveals progressive worsening of retinal vascular geometry in diabetic retinopathy and improved geometry after panretinal photocoagulation
- Comparison of standard and alternative methods for chest compressions in a single rescuer infant CPR: A prospective simulation study
- Characterization of the physical properties of electron-beam-irradiated white rice and starch during short-term storage
- Colonic bacterial composition is sex-specific in aged CD-1 mice fed diets varying in fat quality
- The nature of the ligand’s side chain interacting with the S1'-subsite of metallocarboxypeptidase T (from Thermoactinomyces vulgaris) determines the geometry of the tetrahedral transition complex
- Clarithromycin use and the risk of mortality and cardiovascular events: A systematic review and meta-analysis
- Droplet digital PCR assays for the quantification of brown trout (Salmo trutta) and Arctic char (Salvelinus alpinus) from environmental DNA collected in the water of mountain lakes
- Vitamin E TPGS based transferosomes augmented TAT as a promising delivery system for improved transdermal delivery of raloxifene
- Estimation of membrane bending modulus of stiffness tuned human red blood cells from micropore filtration studies
- Retrospective analysis of central venous catheters in elective intracranial surgery - Is there any benefit?
- Clinical impact of visceral-to-subcutaneous fat ratio in patients with acute aortic dissection
- Correction: 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
- Epidemiology of cardiovascular diseases related admissions in a referral hospital in the South West region of Cameroon: A cross-sectional study in sub-Saharan Africa
- Tankyrase inhibition sensitizes cells to CDK4 blockade
- Spelling performance on the web and in the lab
- Heteroxanthin as a pigment biomarker for Gonyostomum semen (Raphidophyceae)
- Sexually transmitted founder HIV-1 viruses are relatively resistant to Langerhans cell-mediated restriction
- High-glucose diets induce mitochondrial dysfunction in Caenorhabditis elegans
- Correction: Safety and efficacy of tacrolimus-coated silicone plates as an alternative to mitomycin C in a rabbit model of conjunctival fibrosis
- Correction: Uncertainty analysis of species distribution models
- Correction: Testosterone deficiency reduces the effects of late cardiac remodeling after acute myocardial infarction in rats
- Correction: 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
- Habitat quality, configuration and context effects on roe deer fecundity across a forested landscape mosaic
- Recording behaviour of indoor-housed farm animals automatically using machine vision technology: A systematic review
- Correction: Influence of three artificial light sources on oviposition and half-life of the Black Soldier Fly, Hermetia illucens (Diptera: Stratiomyidae): Improving small-scale indoor rearing
- Lead-I ECG for detecting atrial fibrillation in patients attending primary care with an irregular pulse using single-time point testing: A systematic review and economic evaluation
- External validation of clinical prediction rules for complications and mortality following Clostridioides difficile infection
- Vitamin D deficiency at the time of delivery – Prevalence and risk of postpartum infections
- Changing perioperative prophylaxis during antibiotic therapy and iterative debridement for orthopedic infections?
- Tyrphostin AG490 reduces inflammation and fibrosis in neonatal obstructive nephropathy
- Evaluation of antibiotic susceptibility patterns of pathogens isolated from routine laboratory specimens at Ndola Teaching Hospital: A retrospective study
- Age-period-cohort analysis with a constant-relative-variation constraint for an apportionment of period and cohort slopes
- Early neonatal outcomes of very-low-birth-weight infants in Turkey: A prospective multicenter study of the Turkish Neonatal Society
- Improving graphs of cycles approach to structural similarity of molecules
- Heterotrimeric G-alpha subunits Gpa11 and Gpa12 define a transduction pathway that control spore size and virulence in Mucor circinelloides
- Clinical outcome of admitted HIV/AIDS patients in Ethiopian tertiary care settings: A prospective cohort study
- How the size of the to-be-learned material influences the encoding and later retrieval of associative memories: A pupillometric assessment
- "Tremendous financial burden": Crowdfunding for organ transplantation costs in Canada
- Stochastically modeling multiscale stationary biological processes
- Distribution of aerophilous diatom communities associated with terrestrial green macroalgae in the South Shetland Islands, Maritime Antarctica
- An eye-tracking approach to Autonomous sensory meridian response (ASMR): The physiology and nature of tingles in relation to the pupil
- Structural diversity in the atomic resolution 3D fingerprint of the titin M-band segment
- AlleleProfileR: A versatile tool to identify and profile sequence variants in edited genomes
- Spike culture derived wheat (Triticum aestivum L.) variants exhibit improved resistance to multiple chemotypes of Fusarium graminearum
- N-acetyl cysteine attenuates oxidative stress and glutathione-dependent redox imbalance caused by high glucose/high palmitic acid treatment in pancreatic Rin-5F cells
- Neurofilaments in blood is a new promising preclinical biomarker for the screening of natural scrapie in sheep
- Comparative transcriptome reveals the potential modulation mechanisms of estradiol affecting ovarian development of female Portunus trituberculatus
- Determinants of Group B streptococcal virulence potential amongst vaginal clinical isolates from pregnant women
- Identification of QTLs for resistance to maize rough dwarf disease using two connected RIL populations in maize
- Retraction: Ramentaceone, a Naphthoquinone Derived from Drosera sp., Induces Apoptosis by Suppressing PI3K/Akt Signaling in Breast Cancer Cells
- Correction: Differences in energy and nutritional content of menu items served by popular UK chain restaurants with versus without voluntary menu labelling: A cross-sectional study
- Correction: Cross-presentation of a spread-defective MCMV is sufficient to prime the majority of virus-specific CD8+ T cells
- Correction: An observational study comparing HPV prevalence and type distribution between HPV-vaccinated and -unvaccinated girls after introduction of school-based HPV vaccination in Norway
- Aortic pressure and forward and backward wave components in children, adolescents and young-adults: Agreement between brachial oscillometry, radial and carotid tonometry data and analysis of factors associated with their differences
- Clinical ethics consultation among Italian ethics committee: A mixed method study
- Epidemiology of tick-borne encephalitis in China, 2007- 2018
- Narrative warmth and quantitative competence: Message type affects impressions of a speaker
- Murine models for familial pancreatic cancer: Histopathology, latency and drug sensitivity among cancers of Palb2, Brca1 and Brca2 mutant mouse strains
- Comparison of quality control methods for automated diffusion tensor imaging analysis pipelines
- Self-efficacy, procrastination, and burnout in post-secondary faculty: An international longitudinal analysis
- Should social disconnectedness be included in primary-care screening for cardiometabolic disease? A systematic review of the relationship between everyday stress, social connectedness, and allostatic load
- Fast and accurate quantification of insertion-site specific transgene levels from raw seed samples using solid-state nanopore technology
- Maternal employment and child nutritional status in Uganda
- Correction: Saiga horn user characteristics, motivations, and purchasing behaviour in Singapore
- Disparities in survival by stage after surgery between pancreatic head and body/tail in patients with nonmetastatic pancreatic cancer
- Acknowledgements are not just thank you notes: A qualitative analysis of acknowledgements content in scientific articles and reviews published in 2015
- Interocular asymmetry of the superonasal retinal nerve fibre layer thickness and blood vessel diameter in healthy subjects
- Does it still fit? – Adapting affordance judgments to altered body properties in young and older adults
- Health-related quality of life in patients with atrial fibrillation: The role of symptoms, comorbidities, and the type of atrial fibrillation
- A systems approach identifies Enhancer of Zeste Homolog 2 (EZH2) as a protective factor in epilepsy
- Statistical learning and the uncertainty of melody and bass line in music
- The association between childhood maltreatment and empathic perspective taking is moderated by the 5-HTT linked polymorphic region: Another example of “differential susceptibility”
- Household air pollution and arthritis in low-and middle-income countries: Cross-sectional evidence from the World Health Organization’s study on Global Ageing and Adult Health
- Firefighters’ occupational stress and its correlations with cardiorespiratory fitness, arterial stiffness, heart rate variability, and sleep quality
- Diagnostic utility of CT for small bowel obstruction: Systematic review and meta-analysis
- Clinical nurses’ beliefs, knowledge, organizational readiness and level of implementation of evidence-based practice: The first step to creating an evidence-based practice culture
- Attitude and behaviour of Dutch Otorhinolaryngologists to Evidence Based Medicine
- Electronic cigarettes and insulin resistance in animals and humans: Results of a controlled animal study and the National Health and Nutrition Examination Survey (NHANES 2013-2016)
- Cytogenetics of the small-sized fish, Copeina guttata (Characiformes, Lebiasinidae): Novel insights into the karyotype differentiation of the family
- Infant rhesus macaque (Macaca mulatta) personality and subjective well-being
- Potential effects of ursodeoxycholic acid on accelerating cutaneous wound healing
- Healthcare utilization and costs of cardiopulmonary complications following cardiac surgery in the United States
- Prediction of train wheel diameter based on Gaussian process regression optimized using a fast simulated annealing algorithm
- Comparative de novo transcriptomics and untargeted metabolomic analyses elucidate complicated mechanisms regulating celery (Apium graveolens L.) responses to selenium stimuli
- Cognitive dysfunction in mice lacking proper glucocorticoid receptor dimerization
- Prevalence, awareness, treatment and control of hypertension and sodium intake in Zhejiang Province, China: A cross-sectional survey in 2017
- Autofluorescence spectroscopy in redox monitoring across cell confluencies
- Impact of mycoplasma pneumonia infection on urticaria: A nationwide, population-based retrospective cohort study in Taiwan
- Correction: Dual pathway for metabolic engineering of Escherichia coli to produce the highly valuable hydroxytyrosol
- Rapid label-free analysis of Opisthorchis viverrini eggs in fecal specimens using confocal Raman spectroscopy
- Associations of systemic, serum lipid and lipoprotein metabolic pathway gene variations with polypoidal choroidal vasculopathy in China
- MRI-guided, transrectal, intraprostatic steam application as potential focal therapeutic modality for prostatic diseases in a large animal translational model: A feasibility follow-up study
- Predicting breast cancer risk using personal health data and machine learning models
- External validation of the relative fat mass (RFM) index in adults from north-west Mexico using different reference methods
- A study on separation of the protein structural types in amino acid sequence feature spaces
- α-Lipoic acid prevents against cisplatin cytotoxicity via activation of the NRF2/HO-1 antioxidant pathway
- A phenome-wide association study (PheWAS) in the Population Architecture using Genomics and Epidemiology (PAGE) study reveals potential pleiotropy in African Americans
- The effect of prioritization over cognitive-motor interference in people with relapsing-remitting multiple sclerosis and healthy controls
- Ionomic and transcriptomic analyses of two cotton cultivars (Gossypium hirsutum L.) provide insights into the ion balance mechanism of cotton under salt stress
- Soluble lytic transglycosylase SLT of Francisella novicida is involved in intracellular growth and immune suppression
- Glucocorticoid and dietary effects on mucosal microbiota in canine inflammatory bowel disease
- Zoonotic Babesia: A scoping review of the global evidence
- Utility of citizen science data: A case study in land-based shark fishing
- Response of cassava cultivars to African cassava mosaic virus infection across a range of inoculum doses and plant ages
- Correction: Risk factors for tooth loss in adults: A population-based prospective cohort study
- Dynamic deformation of femur during medial compartment knee osteoarthritis
- A novel ε-sensitive correlation indistinguishable scheme for publishing location data
- Interaction between BDNF val66met polymorphism and personality on long-term cardiac outcomes in patients with acute coronary syndrome
- What factors do make quality improvement work in primary health care? Experiences of maternal health quality improvement teams in three Puskesmas in Indonesia
- Social anxiety changes the way we move—A social approach-avoidance task in a virtual reality CAVE system
- Evaluation of a savings-led family-based economic empowerment intervention for AIDS-affected adolescents in Uganda: A four-year follow-up on efficacy and cost-effectiveness
- From sea monsters to charismatic megafauna: Changes in perception and use of large marine animals
- Association between IQ and FMR1 protein (FMRP) across the spectrum of CGG repeat expansions
- Impact of sports activity on Polish adults: Self-reported health, social capital & attitudes
- Hold your breath – Differential behavioral and sensory acuity of mosquitoes to acetone and carbon dioxide
- Comparative analysis of eight DNA extraction methods for molecular research in mealybugs
- Age-dependent survival rate of the colonial Little Tern (Sternula albifrons)
- The metabotropic glutamate receptor subtype 1 regulates development and maintenance of lemniscal synaptic connectivity in the somatosensory thalamus
- Impact of HFE variants and sex in lung cancer
- Study of congenital Morgagnian cataracts in Holstein calves
- Decreasing prevalence of contamination with extended-spectrum beta-lactamase-producing Enterobacteriaceae (ESBL-E) in retail chicken meat in the Netherlands
- Screening of differentially expressed immune-related genes from spleen of broilers fed with probiotic Bacillus cereus PAS38 based on suppression subtractive hybridization
- Factors governing the performance of Auxiliary Nurse Midwives in India: A study in Pune district
- Writing in the air: Facilitative effects of finger writing in older adults
- Enzymatic production of bioactive peptides from scotta, an exhausted by-product of ricotta cheese processing
- Effect of endometriosis on the fecal bacteriota composition of mice during the acute phase of lesion formation
- Experimental infection of lambs with tick-borne encephalitis virus and co-infection with Anaplasma phagocytophilum
- Leishmania amazonensis resistance in murine macrophages: Analysis of possible mechanisms
- Comparison between the induced membrane technique and distraction osteogenesis in treating segmental bone defects: An experimental study in a rat model
- A dengue fever predicting model based on Baidu search index data and climate data in South China
- Revierparks as an integrated green network in Germany: An option for Amman?
- Detection and analysis of pulse waves during sleep via wrist-worn actigraphy
- From dangerous branches to urban banyan: Facilitating aerial root growth of Ficus rubiginosa
- Unilateral versus bilateral pedicle screw fixation in lumbar fusion: A systematic review of overlapping meta-analyses
- Edible ectomycorrhizal fungi and Cistaceae. A study on compatibility and fungal ecological strategies
- Physical space interacts with clonal fragmentation and nutrient availability to affect the growth of Salvinia natans
- Odd haemoglobins in odd-toed ungulates: Impact of selected haemoglobin characteristics of the white rhinoceros (Ceratotherium simum) on the monitoring of the arterial oxygen saturation of haemoglobin
- Somatic mutations in intracranial arteriovenous malformations
- Clinical feasibility of NGS liquid biopsy analysis in NSCLC patients
- Thrombospondin-I is a critical modulator in non-alcoholic steatohepatitis (NASH)
- Chemical analysis of Hg0-containing Hindu religious objects
- Hipk is required for JAK/STAT activity during development and tumorigenesis
- Transfer of skin microbiota between two dissimilar autologous microenvironments: A pilot study
- Correction: MiR-4524b-5p/WTX/β-catenin axis functions as a regulator of metastasis in cervical cancer
- Complete chloroplast genomes of two Siraitia Merrill species: Comparative analysis, positive selection and novel molecular marker development
- Lower levels of proteinuria are associated with elevated mortality in incident dialysis patients
- Optimising medication data collection in a large-scale clinical trial
- Personal response to immune checkpoint inhibitors of patients with advanced melanoma explained by a computational model of cellular immunity, tumor growth, and drug
- Hypofibrinolysis induced by tranexamic acid does not influence inflammation and mortality in a polymicrobial sepsis model
- Correction: Dose-dependent adverse effects of salinomycin on male reproductive organs and fertility in mice
- Endocrine profile of the VCD-induced perimenopausal model rat
- Inhibition of complement activation, myeloperoxidase, NET formation and oxidant activity by PIC1 peptide variants
- Domestication may affect the maternal mRNA profile in unfertilized eggs, potentially impacting the embryonic development of Eurasian perch (Perca fluviatilis)
- Intrauterine growth patterns in rural Ethiopia compared with WHO and INTERGROWTH-21st growth standards: A community-based longitudinal study
- Remote ischaemic conditioning and early changes in plasma creatinine as markers of one year kidney graft function—A follow-up of the CONTEXT study
- Validation of Plasmodium vivax centromere and promoter activities using Plasmodium yoelii
- Variation in neophobia among cliff swallows at different colonies
- Soil C, N, and P distribution as affected by plant communities in the Yellow River Delta, China
- Community-based sero-prevalence of hepatitis B and C infections in South Omo Zone, Southern Ethiopia
- Birth asphyxia and its associated factors among newborns in public hospital, northeast Amhara, Ethiopia
- Enhancement in dopamine reduces generous behaviour in women
- Correction: Risk factors for postoperative meningitis after microsurgery for vestibular schwannoma
- Correction: Evolution of high tooth replacement rates in theropod dinosaurs
- Hepatic sinusoidal hemophagocytosis with and without hemophagocytic lymphohistiocytosis
- Efficient intra mode decision for low complexity HEVC screen content compression
- Feature selection for helpfulness prediction of online product reviews: An empirical study
- Structure and age-dependent growth of the chicken liver together with liver fat quantification: A comparison between a dual-purpose and a broiler chicken line
- Important features of retail shoes for women with rheumatoid arthritis: A Delphi consensus survey
- The impact of gut microbiota manipulation with antibiotics on colon tumorigenesis in a murine model
- The characteristic of patulous eustachian tube patients diagnosed by the JOS diagnostic criteria
- Nine years of in situ soil warming and topography impact the temperature sensitivity and basal respiration rate of the forest floor in a Canadian boreal forest
- A novel model for malaria prediction based on ensemble algorithms
- “Because at school, you can become somebody” – The perceived health and economic returns on secondary schooling in rural Burkina Faso
- Experiences of health services and unmet care needs of people with late-stage Parkinson’s in England: A qualitative study
- Electrochemical analysis of uric acid excretion to the intestinal lumen: Effect of serum uric acid-lowering drugs and 5/6 nephrectomy on intestinal uric acid levels
- Does completion of sputum smear monitoring have an effect on treatment success and cure rate among adult tuberculosis patients in rural Eastern Uganda? A propensity score-matched analysis
- Identifying fetal yawns based on temporal dynamics of mouth openings: A preterm neonate model using support vector machines (SVMs)
- Hepatitis B virus seromarkers among HIV infected adults on ART: An unmet need for HBV screening in eastern Ethiopia
- Assessment of knowledge and practice of breast self-examination among reproductive age women in Akatsi South district of Volta region of Ghana
- Evaluation of quantitative biosensor for glucose-6-phosphate dehydrogenase activity detection
- Antibiotic treatment adequacy and death among patients with Pseudomonas aeruginosa airway infection
- Effects of experimentally induced fatigue on healthy older adults’ gait: A systematic review
- Monounsaturated fatty acids protect against palmitate-induced lipoapoptosis in human umbilical vein endothelial cells
- An assessment of the utility and repeatability of the renal resistive index in horses
- Analysis of center of mass acceleration and muscle activation in hemiplegic paralysis during quiet standing
- The association between dengue incidences and provincial-level weather variables in Thailand from 2001 to 2014
- Asylum seekers’ perspectives on vaccination and screening policies after their arrival in Greece and The Netherlands
- A new, fast method to search for morphological convergence with shape data
- Zinc thiazole enhances defense enzyme activities and increases pathogen resistance to Ralstonia solanacearum in peanut (Arachis hypogaea) under salt stress
- Effect of thermal control of dry fomites on regulating the survival of human pathogenic bacteria responsible for nosocomial infections
- Spatial dynamics in the classroom: Does seating choice matter?
- Hematologic profile of Amazon river dolphins Inia geoffrensis and its variation during acute capture stress
- Association between body mass index and asthma severity in Arab pediatric population: A retrospective study
- Toxic trajectories under future climate conditions
- Bioassay- and metabolomics-guided screening of bioactive soil actinomycetes from the ancient city of Ihnasia, Egypt
- Awareness of treatment: A source of bias in subjective grading of ocular complications
- Genome-wide identification and expression analysis of the PHD-finger gene family in Solanum tuberosum
- Exploring functional core bacteria in fermentation of a traditional Chinese food, Aspergillus-type douchi
- Folk theories of gender and anti-transgender attitudes: Gender differences and policy preferences
- Lower S-adenosylmethionine levels and DNA hypomethylation of placental growth factor (PlGF) in placental tissue of early-onset preeclampsia-complicated pregnancies
- Simulating the route of the Tang-Tibet Ancient Road for one branch of the Silk Road across the Qinghai-Tibet Plateau
- Evaluation of the ecological niche model approach in spatial conservation prioritization
- Important gene–gene interaction of TNF-α and VDR on osteoporosis in community-dwelling elders
- Traffic light labelling could prevent mortality from noncommunicable diseases in Canada: A scenario modelling study
- Choice-induced inter-trial inhibition is modulated by idiosyncratic choice-consistency
- HomeSTEAD’s physical activity and screen media practices and beliefs survey: Instrument development and integrated conceptual model
- What nature separated, and human joined together: About a spontaneous hybridization between two allopatric dogwood species (Cornus controversa and C. alternifolia)
- Cell sources of inflammatory mediators present in bone marrow areas inside the meniscus
- The effects of exercise variation in muscle thickness, maximal strength and motivation in resistance trained men
- High prevalence of abnormal menstruation among women living with HIV in Canada
- A quantitative engineering study of ecosystem robustness using thermodynamic power cycles as case studies
- External morphology and developmental changes of tarsal tips and mouthparts of the invasive spotted lanternfly, Lycorma delicatula (Hemiptera: Fulgoridae)
- Small joint arthrodesis technique using a dowel bone graft in a rabbit model
- An investigation of far and near transfer in a gamified visual learning paradigm
- Isolation and characterization of fowl aviadenovirus serotype 11 from chickens with inclusion body hepatitis in Morocco
- Translocation of Mycobacterium tuberculosis after experimental ingestion
- Health literacy as a mediator of the relationship between socioeconomic status and health: A cross-sectional study in a population-based sample in Florence
- Genomic insights on heterogeneous resistance to vancomycin and teicoplanin in Methicillin-resistant Staphylococcus aureus: A first report from South India
- “I am alive; my baby is alive”: Understanding reasons for satisfaction and dissatisfaction with maternal health care services in the context of user fee removal policy in Nigeria
- A systems biology approach uncovers a gene co-expression network associated with cell wall degradability in maize
- Correction: DNA barcodes corroborating identification of mosquito species and multiplex real-time PCR differentiating Culex pipiens complex and Culex torrentium in Iran
- Heterogeneous root zone salinity mitigates salt injury to Sorghum bicolor (L.) Moench in a split-root system
- Effects and cost-effectiveness of postoperative oral analgesics for additional postoperative pain relief in children and adolescents undergoing dental treatment: Health technology assessment including a systematic review
- Spatial ecology of coyotes in the urbanizing landscape of the Cuyahoga Valley, Ohio
- The role of gadolinium in magnetic resonance imaging for early prostate cancer diagnosis: A diagnostic accuracy study
- Modeling succinate dehydrogenase loss disorders in C. elegans through effects on hypoxia-inducible factor
- The association of parents’ behaviors related to salt with 24 h urinary sodium excretion of their children: A Spanish cross-sectional study
- Transcriptional changes during hepatic ischemia-reperfusion in the rat
- NAT2 gene polymorphisms and endometriosis risk: A PRISMA-compliant meta-analysis
- Effects of lutein supplementation in age-related macular degeneration
- Correction: Genetic susceptibility to angiotensin-converting enzyme-inhibitor induced angioedema: A systematic review and evaluation of methodological approaches
- Recovery cycles of posterior root-muscle reflexes evoked by transcutaneous spinal cord stimulation and of the H reflex in individuals with intact and injured spinal cord
- Virulence beneath the fleece; a tale of foot-and-mouth disease virus pathogenesis in sheep
- The delay of motherhood: Reasons, determinants, time used to achieve pregnancy, and maternal anxiety level
- Glycated albumin as a diagnostic tool in diabetes: An alternative or an additional test?
- Quantification of circulating cell-free DNA (cfDNA) in urine using a newborn piglet model of asphyxia
- Correction: Elevated levels of eEF1A2 protein expression in triple negative breast cancer relate with poor prognosis
- Inhibiting the copper efflux system in microbes as a novel approach for developing antibiotics
- Rapid pathogen identification and antimicrobial susceptibility testing in in vitro endophthalmitis with matrix assisted laser desorption-ionization Time-of-Flight Mass Spectrometry and VITEK 2 without prior culture
- Identification of loci of functional relevance to Barrett’s esophagus and esophageal adenocarcinoma: Cross-referencing of expression quantitative trait loci data from disease-relevant tissues with genetic association data
- Inter- and intraspecific diversity of food legumes among households and communities in Ethiopia
- Walking-speed estimation using a single inertial measurement unit for the older adults
- The relationship between glutathione levels in leukocytes and ocular clinical parameters in glaucoma
- The home field advantage of modern plant breeding
- High concentrations of middle ear antimicrobial peptides and proteins and proinflammatory cytokines are associated with detection of middle ear pathogens in children with recurrent acute otitis media
- A modern approach to identifying and characterizing child asthma and wheeze phenotypes based on clinical data
- Validation of a novel time-to-event nest density estimator on passerines: An example using Brewer’s sparrows (Spizella breweri)
- Use of GeneXpert and the role of an expert panel in improving clinical diagnosis of smear-negative tuberculosis cases
- Heat-induced hyperthermia impacts the follicular fluid proteome of the periovulatory follicle in lactating dairy cows
- One-shot phase-recovery using a cellphone RGB camera on a Jamin-Lebedeff microscope
- Change of surfactant protein D and A after renal ischemia reperfusion injury
- Antibiotic saving effect of combination therapy through synergistic interactions between well-characterized chito-oligosaccharides and commercial antifungals against medically relevant yeasts
- Impact of the change in the antitubercular regimen from three to four drugs on cure and frequency of adverse reactions in tuberculosis patients from Brazil: A retrospective cohort study
- Ontogenic mRNA expression of RNA modification writers, erasers, and readers in mouse liver
- Intrinsic and extrinsic factors associated with sputum characteristics of presumed tuberculosis patients
- Vaccination with a live-attenuated small-colony variant improves the humoral and cell-mediated responses against Staphylococcus aureus
- A versatile modular vector set for optimizing protein expression among bacterial, yeast, insect and mammalian hosts
- Rapid evolution of prey maintains predator diversity
- Correction: Consumption of rice, acceptability and sensory qualities of fortified rice amongst consumers of social safety net rice in Nepal
- Indicators to distinguish symptom accentuators from symptom producers in individuals with a diagnosed adjustment disorder: A pilot study on inconsistency subtypes using SIMS and MMPI-2-RF
- Postural stability of 5-year-old girls and boys with different body heights
- The association between exposure to interferon-beta during pregnancy and birth measurements in offspring of women with multiple sclerosis
- Variations in neurotoxicity and proteome profile of Malayan krait (Bungarus candidus) venoms
- Altered functional connectivity density in the brains of hemodialysis end-stage renal disease patients: An in vivo resting-state functional MRI study
- Transboundary movements of foot-and-mouth disease from India to Sri Lanka: A common pattern is shared by serotypes O and C
- Medical and productivity costs after trauma
- Defining pharmacists' roles in disasters: A Delphi study
- Comprehensive assessment of tissue and serum parameters of bone metabolism in a series of orthopaedic patients
- Predictors of alcohol use transitions among drug-using youth presenting to an urban emergency department
- Longitudinal changes in structural lung abnormalities using MDCT in chronic obstructive pulmonary disease with asthma-like features
- Endocannabinoid 2-arachidonoylglycerol is elevated in the coronary circulation during acute coronary syndrome
- Contextual factors and sporting success: The relationship between birth date and place of early development on the progression of Jamaican track and field athletes from junior to senior level
- Potential application of Aloe Vera-derived plant-based cell in powering wireless device for remote sensor activation
- Retraction: Inhibition of reactive gliosis prevents neovascular growth in the mouse model of oxygen-induced retinopathy
- Measuring and addressing the childhood tuberculosis reporting gaps in Pakistan: The first ever national inventory study among children
- Arterial blood gas analysis in dogs with bronchomalacia
- Trends in the incidence of thymoma, thymic carcinoma, and thymic neuroendocrine tumor in the United States
- Optogenetic inhibition of ventral hippocampal neurons alleviates associative motor learning dysfunction in a rodent model of schizophrenia
- Safe and effective subcutaneous adipolysis in minipigs by a collagenase derivative
- The correlation between optical coherence tomography retinal shape irregularity and axial length
- Length of gestation and birth weight are associated with indices of combined kidney biomarkers in early childhood
- Essential oil-incorporated carbon nanotubes filters for bacterial removal and inactivation
- Domiciliary high-flow treatment in patients with COPD and chronic hypoxic failure: In whom can we reduce exacerbations and hospitalizations?
- Comprehensive analysis of putative dihydroflavonol 4-reductase gene family in tea plant
- Comparative proteomic analysis of mitochondria isolated from Euglena gracilis under aerobic and hypoxic conditions
- Secreted metabolite-mediated interactions between rhizosphere bacteria and Trichoderma biocontrol agents
- Experimental evidence of subtle victim blame in the absence of explicit blame
- Effects of different fatigue locations on upper body kinematics and inter-joint coordination in a repetitive pointing task
- Cannula and circuit management in peripheral extracorporeal membrane oxygenation: An international survey of 45 countries
- Economic evaluations of screening strategies for the early detection of colorectal cancer in the average-risk population: A systematic literature review
- Vitreous levels of Lipocalin-2 on patients with primary rhegmatogenous retinal detachment
- Light intensity and spectrum affect metabolism of glutathione and amino acids at transcriptional level
- The potential role of acrolein in plant ferroptosis-like cell death
- General practitioners’ consultation counts and associated factors in Swiss primary care – A retrospective observational study
- Potential of mesenchymal- and cardiac progenitor cells for therapeutic targeting of B-cells and antibody responses in end-stage heart failure
- Correction: Constitutive expression of an A-5 subgroup member in the DREB transcription factor subfamily from Ammopiptanthus mongolicus enhanced abiotic stress tolerance and anthocyanin accumulation in transgenic Arabidopsis
- A single institution experience of the treatment of pancreatic ductal carcinoma: The demand and the role of radiation therapy
- Correction: Intestinal mucosal injury induced by obstructive jaundice is associated with activation of TLR4/TRAF6/NF-κB pathways
- Relationship between scapular initial position and scapular movement during dynamic motions
- Correction: The circadian rhythm of bladder clock genes in the spontaneously hypersensitive rat
- Applications of machine learning in decision analysis for dose management for dofetilide
- Retraction: Nuclear factor kappa-B signaling is integral to ocular neovascularization in ischemia-independent microenvironment
- Using archaeological and geomorphological evidence for the establishment of a relative chronology and evolution pattern for Holocene landslides
- Who reported having a high-strain job, low-strain job, active job and passive job? The WIRUS Screening study
- Longitudinal monitoring of KRAS-mutated circulating tumor DNA enables the prediction of prognosis and therapeutic responses in patients with pancreatic cancer
- Retraction: Epigenetic Silencing of Peroxisome Proliferator-Activated Receptor γ Is a Biomarker for Colorectal Cancer Progression and Adverse Patients’ Outcome
- Correction: Severe cases of seasonal influenza in Russia in 2017-2018
- Differences between occupational and non-occupational-related motor vehicle collisions in West Virginia: A cross-sectional and spatial analysis
- Expression of concern: Zinc transporter 8 (ZnT8) expression is reduced by ischemic insults: A potential therapeutic target to prevent ischemic retinopathy
- Correction: Cattle intestinal microbiota shifts following Escherichia coli O157:H7 vaccination and colonization
- Correction: Development of UV spectrophotometry methods for concurrent quantification of amlodipine and celecoxib by manipulation of ratio spectra in pure and pharmaceutical formulation
- Correction: Modelling of the breadth of expression from promoter architectures identifies pro-housekeeping transcription factors
- Correction: Development of rice conidiation media for Ustilaginoidea virens
- Retraction: The Nexus between VEGF and NFκB Orchestrates a Hypoxia-Independent Neovasculogenesis
- Correction: Foraging strategies are maintained despite workforce reduction: A multidisciplinary survey on the pollen collected by a social pollinator
- Retraction: MicroRNA-493 Suppresses Tumor Growth, Invasion and Metastasis of Lung cancer by Regulating E2F1
- Correction: On the trail of Scandinavia’s early metallurgy: Provenance, transfer and mixing
- Correction: Novel insights into the morphology of Plesiochelys bigleri from the early Kimmeridgian of Northwestern Switzerland
- Correction: Supplementation of diet with non-digestible oligosaccharides alters the intestinal microbiota, but not arthritis development, in IL-1 receptor antagonist deficient mice
- PLOS One
- Archív čísel
- Aktuálne číslo
- Informácie o časopise
Najčítanejšie v tomto čísle
- Methylsulfonylmethane increases osteogenesis and regulates the mineralization of the matrix by transglutaminase 2 in SHED cells
- Oregano powder reduces Streptococcus and increases SCFA concentration in a mixed bacterial culture assay
- Parametric CAD modeling for open source scientific hardware: Comparing OpenSCAD and FreeCAD Python scripts
- The characteristic of patulous eustachian tube patients diagnosed by the JOS diagnostic criteria