1,247 results on '"Zwicker, P"'
Search Results
2. Condensate Size Control by Charge Asymmetry
- Author
-
Luo, Chengjie, Hess, Nathaniel, Aierken, Dilimulati, Qiang, Yicheng, Joseph, Jerelle A., and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Condensed Matter - Statistical Mechanics ,Physics - Biological Physics - Abstract
Biomolecular condensates are complex droplets comprising many different types of molecules that interact using various mechanisms. Condensation is often driven by short-ranged attraction, but net charges can also mediate long-ranged repulsion. Using molecular dynamics simulations and an equilibrium field theory, we show that such opposing interactions can suppress coarsening so that many droplets of equal size coexist at equilibrium. This size control depends strongly on the charge asymmetry between constituents, while the strength of the short-ranged attractions has a weak influence. Our work reveals how electrostatic effects control droplet size, which is relevant for understanding biomolecular condensates and creating synthetic patterns in chemical engineering., Comment: 4 figures and Appendix
- Published
- 2024
3. Recommendation of the German Society of Hospital Hygiene (DGKH): Prevention of COVID-19 by virucidal gargling and virucidal nasal spray – updated version April 2022
- Author
-
Kramer, Axel, Eggers, Maren, Exner, Martin, Hübner, Nils-Olaf, Simon, Arne, Steinmann, Eike, Walger, Peter, and Zwicker, Paula
- Subjects
guideline ,virucidal gargling ,virucidal nasal spray ,sars-cov-2 ,covid-19 ,Medicine ,Public aspects of medicine ,RA1-1270 ,Microbiology ,QR1-502 - Abstract
The German Society of Hospital Hygiene develops guidelines, recommendations and standard operation procedures on a voluntary basis, published on the DGKH-website ().The original German version of this recommendation was published in April 2022 and has now been made available to the international professional public in English. Evaluating the current data on the efficacy of virucidal gargle/mouthwash solutions and nasal sprays against SARS-CoV-2 and in clinical trials, conducted with preventive or therapeutic objectives, recommendations are given for the prevention of COVID-19. The following areas are considered:
- Published
- 2022
- Full Text
- View/download PDF
4. NARVis: Neural Accelerated Rendering for Real-Time Scientific Point Cloud Visualization
- Author
-
Hegde, Srinidhi, Kullman, Kaur, Grubb, Thomas, Lait, Leslie, Guimond, Stephen, and Zwicker, Matthias
- Subjects
Computer Science - Graphics ,Computer Science - Computer Vision and Pattern Recognition ,Computer Science - Human-Computer Interaction ,Computer Science - Machine Learning - Abstract
Exploring scientific datasets with billions of samples in real-time visualization presents a challenge - balancing high-fidelity rendering with speed. This work introduces a novel renderer - Neural Accelerated Renderer (NAR), that uses the neural deferred rendering framework to visualize large-scale scientific point cloud data. NAR augments a real-time point cloud rendering pipeline with high-quality neural post-processing, making the approach ideal for interactive visualization at scale. Specifically, we train a neural network to learn the point cloud geometry from a high-performance multi-stream rasterizer and capture the desired postprocessing effects from a conventional high-quality renderer. We demonstrate the effectiveness of NAR by visualizing complex multidimensional Lagrangian flow fields and photometric scans of a large terrain and compare the renderings against the state-of-the-art high-quality renderers. Through extensive evaluation, we demonstrate that NAR prioritizes speed and scalability while retaining high visual fidelity. We achieve competitive frame rates of $>$ 126 fps for interactive rendering of $>$ 350M points (i.e., an effective throughput of $>$ 44 billion points per second) using $\sim$12 GB of memory on RTX 2080 Ti GPU. Furthermore, we show that NAR is generalizable across different point clouds with similar visualization needs and the desired post-processing effects could be obtained with substantial high quality even at lower resolutions of the original point cloud, further reducing the memory requirements.
- Published
- 2024
5. Binding and dimerization control phase separation in a compartment
- Author
-
Rossetto, Riccardo, Wellecke, Gerrit, and Zwicker, David
- Subjects
Physics - Biological Physics ,Condensed Matter - Soft Condensed Matter ,Condensed Matter - Statistical Mechanics - Abstract
Biological cells exhibit a hierarchical spatial organization, where various compartments harbor condensates that form by phase separation. Cells can control the emergence of these condensates by affecting compartment size, the amount of the involved molecules, and their physical interactions. While physical interactions directly affect compartment binding and phase separation, they can also cause oligomerization, which has been suggested as a control mechanism. Analyzing an equilibrium model, we illustrate that oligomerization amplifies compartment binding and phase separation, which reinforce each other. This nonlinear interplay can also induce multistability, which provides additional potential for control. Our work forms the basis for deriving thermodynamically consistent kinetic models to understand how biological cells can regulate phase separation in their compartments., Comment: 6 pages, 5 figures
- Published
- 2024
6. Chemically active droplets
- Author
-
Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Physics - Biological Physics ,Physics - Physics Education - Abstract
These lecture notes describe a basic theory of chemically active droplets, which are droplets kept away from equilibrium by driven chemical reactions. The notes assume a basic familiarity with equilibrium thermodynamics of phase separation, and thus focus on three separate themes, which were discussed in three separate lectures: (i) The kinetics of phase separation, including the early-stage dynamics of spinodal decomposition and the late-stage dynamics of Ostwald ripening. (ii) Transition state theory as a simple, thermodynamically-consistent kinetic theory of chemical reactions, which permits explicit driving in open systems. (iii) The combination of phase separation and reactions, leading to active droplets. We discuss the two fundamental classes of internally-maintained and externally-maintained droplets. A simple version of externally-maintained droplets permits an effective electrostatic analogy, which indicates how the reaction-diffusion system mediates long-ranged interactions. All these aspects are discussed in the context of biomolecular condensates., Comment: Lecture Notes for the Boulder Summer School 2024; 29 pages, 9 figures
- Published
- 2024
7. Enabling MPI communication within Numba/LLVM JIT-compiled Python code using numba-mpi v1.0
- Author
-
Derlatka, Kacper, Manna, Maciej, Bulenok, Oleksii, Zwicker, David, and Arabas, Sylwester
- Subjects
Computer Science - Distributed, Parallel, and Cluster Computing ,Computer Science - Mathematical Software - Abstract
The numba-mpi package offers access to the Message Passing Interface (MPI) routines from Python code that uses the Numba just-in-time (JIT) compiler. As a result, high-performance and multi-threaded Python code may utilize MPI communication facilities without leaving the JIT-compiled code blocks, which is not possible with the mpi4py package, a higher-level Python interface to MPI. For debugging purposes, numba-mpi retains full functionality of the code even if the JIT compilation is disabled. The numba-mpi API constitutes a thin wrapper around the C API of MPI and is built around Numpy arrays including handling of non-contiguous views over array slices. Project development is hosted at GitHub leveraging the mpi4py/setup-mpi workflow enabling continuous integration tests on Linux (MPICH, OpenMPI & Intel MPI), macOS (MPICH & OpenMPI) and Windows (MS MPI). The paper covers an overview of the package features, architecture and performance. As of v1.0, the following MPI routines are exposed and covered by unit tests: size/rank, [i]send/[i]recv, wait[all|any], test[all|any], allreduce, bcast, barrier, scatter/[all]gather & wtime. The package is implemented in pure Python and depends on numpy, numba and mpi4py (the latter used at initialization and as a source of utility routines only). The performance advantage of using numba-mpi compared to mpi4py is depicted with a simple example, with entirety of the code included in listings discussed in the text. Application of numba-mpi for handling domain decomposition in numerical solvers for partial differential equations is presented using two external packages that depend on numba-mpi: py-pde and PyMPDATA-MPI.
- Published
- 2024
- Full Text
- View/download PDF
8. PUP 3D-GS: Principled Uncertainty Pruning for 3D Gaussian Splatting
- Author
-
Hanson, Alex, Tu, Allen, Singla, Vasu, Jayawardhana, Mayuka, Zwicker, Matthias, and Goldstein, Tom
- Subjects
Computer Science - Computer Vision and Pattern Recognition ,Computer Science - Graphics - Abstract
Recent advancements in novel view synthesis have enabled real-time rendering speeds and high reconstruction accuracy. 3D Gaussian Splatting (3D-GS), a foundational point-based parametric 3D scene representation, models scenes as large sets of 3D Gaussians. Complex scenes can comprise of millions of Gaussians, amounting to large storage and memory requirements that limit the viability of 3D-GS on devices with limited resources. Current techniques for compressing these pretrained models by pruning Gaussians rely on combining heuristics to determine which ones to remove. In this paper, we propose a principled spatial sensitivity pruning score that outperforms these approaches. It is computed as a second-order approximation of the reconstruction error on the training views with respect to the spatial parameters of each Gaussian. Additionally, we propose a multi-round prune-refine pipeline that can be applied to any pretrained 3D-GS model without changing the training pipeline. After pruning 88.44% of the Gaussians, we observe that our PUP 3D-GS pipeline increases the average rendering speed of 3D-GS by 2.65$\times$ while retaining more salient foreground information and achieving higher image quality metrics than previous pruning techniques on scenes from the Mip-NeRF 360, Tanks & Temples, and Deep Blending datasets.
- Published
- 2024
9. Scaling of phase count in multicomponent liquids
- Author
-
Qiang, Yicheng, Luo, Chengjie, and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Physics - Biological Physics - Abstract
Mixtures with many components can segregate into coexisting phases, e.g., in biological cells and synthetic materials such as metallic glass. The interactions between components dictate what phases form in equilibrium, but quantifying this relationship has proven difficult. We derive scaling relations for the number of coexisting phases in multicomponent liquids with random interactions and compositions, which we verify numerically. Our results indicate that interactions only need to increase logarithmically with the number of components for the liquid to segregate into many phases. In contrast, a stability analysis of the homogeneous state predicts a power-law scaling. This discrepancy implies an enormous parameter regime where the number of coexisting phases exceeds the number of unstable modes, generalizing the nucleation and growth regime of binary mixtures to many components., Comment: 15 pages, 10 figures, including appendix
- Published
- 2024
10. Compositional Neural Textures
- Author
-
Tu, Peihan, Wei, Li-Yi, and Zwicker, Matthias
- Subjects
Computer Science - Graphics ,Computer Science - Artificial Intelligence ,Computer Science - Computer Vision and Pattern Recognition ,Computer Science - Machine Learning - Abstract
Texture plays a vital role in enhancing visual richness in both real photographs and computer-generated imagery. However, the process of editing textures often involves laborious and repetitive manual adjustments of textons, which are the recurring local patterns that characterize textures. This work introduces a fully unsupervised approach for representing textures using a compositional neural model that captures individual textons. We represent each texton as a 2D Gaussian function whose spatial support approximates its shape, and an associated feature that encodes its detailed appearance. By modeling a texture as a discrete composition of Gaussian textons, the representation offers both expressiveness and ease of editing. Textures can be edited by modifying the compositional Gaussians within the latent space, and new textures can be efficiently synthesized by feeding the modified Gaussians through a generator network in a feed-forward manner. This approach enables a wide range of applications, including transferring appearance from an image texture to another image, diversifying textures,texture interpolation, revealing/modifying texture variations, edit propagation, texture animation, and direct texton manipulation. The proposed approach contributes to advancing texture analysis, modeling, and editing techniques, and opens up new possibilities for creating visually appealing images with controllable textures., Comment: Project page: https://phtu-cs.github.io/cnt-siga24/
- Published
- 2024
- Full Text
- View/download PDF
11. Social Choice Should Guide AI Alignment in Dealing with Diverse Human Feedback
- Author
-
Conitzer, Vincent, Freedman, Rachel, Heitzig, Jobst, Holliday, Wesley H., Jacobs, Bob M., Lambert, Nathan, Mossé, Milan, Pacuit, Eric, Russell, Stuart, Schoelkopf, Hailey, Tewolde, Emanuel, and Zwicker, William S.
- Subjects
Computer Science - Machine Learning ,Computer Science - Artificial Intelligence ,Computer Science - Computation and Language ,Computer Science - Computers and Society ,Computer Science - Computer Science and Game Theory ,68T01, 68T50, 91B14, 91B12 ,I.2.0 ,I.2.7 ,K.4.2 ,I.2.m ,J.4 - Abstract
Foundation models such as GPT-4 are fine-tuned to avoid unsafe or otherwise problematic behavior, such as helping to commit crimes or producing racist text. One approach to fine-tuning, called reinforcement learning from human feedback, learns from humans' expressed preferences over multiple outputs. Another approach is constitutional AI, in which the input from humans is a list of high-level principles. But how do we deal with potentially diverging input from humans? How can we aggregate the input into consistent data about "collective" preferences or otherwise use it to make collective choices about model behavior? In this paper, we argue that the field of social choice is well positioned to address these questions, and we discuss ways forward for this agenda, drawing on discussions in a recent workshop on Social Choice for AI Ethics and Safety held in Berkeley, CA, USA in December 2023., Comment: 15 pages, 4 figures
- Published
- 2024
12. GaNI: Global and Near Field Illumination Aware Neural Inverse Rendering
- Author
-
Wu, Jiaye, Hadadan, Saeed, Lin, Geng, Zwicker, Matthias, Jacobs, David, and Sengupta, Roni
- Subjects
Computer Science - Computer Vision and Pattern Recognition - Abstract
In this paper, we present GaNI, a Global and Near-field Illumination-aware neural inverse rendering technique that can reconstruct geometry, albedo, and roughness parameters from images of a scene captured with co-located light and camera. Existing inverse rendering techniques with co-located light-camera focus on single objects only, without modeling global illumination and near-field lighting more prominent in scenes with multiple objects. We introduce a system that solves this problem in two stages; we first reconstruct the geometry powered by neural volumetric rendering NeuS, followed by inverse neural radiosity that uses the previously predicted geometry to estimate albedo and roughness. However, such a naive combination fails and we propose multiple technical contributions that enable this two-stage approach. We observe that NeuS fails to handle near-field illumination and strong specular reflections from the flashlight in a scene. We propose to implicitly model the effects of near-field illumination and introduce a surface angle loss function to handle specular reflections. Similarly, we observe that invNeRad assumes constant illumination throughout the capture and cannot handle moving flashlights during capture. We propose a light position-aware radiance cache network and additional smoothness priors on roughness to reconstruct reflectance. Experimental evaluation on synthetic and real data shows that our method outperforms the existing co-located light-camera-based inverse rendering techniques. Our approach produces significantly better reflectance and slightly better geometry than capture strategies that do not require a dark room.
- Published
- 2024
13. Heterogeneous Nucleation and Growth of Sessile Chemically Active Droplets
- Author
-
Ziethen, Noah and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Physics - Biological Physics ,Physics - Chemical Physics - Abstract
Droplets are essential for spatially controlling biomolecules in cells. To work properly, cells need to control the emergence and morphology of droplets. On the one hand, driven chemical reactions can affect droplets profoundly. For instance, reactions can control how droplets nucleate and how large they grow. On the other hand, droplets coexist with various organelles and other structures inside cells, which could affect their nucleation and morphology. To understand the interplay of these two aspects, we study a continuous field theory of active phase separation. Our numerical simulations reveal that reactions suppress nucleation while attractive walls enhance it. Intriguingly, these two effects are coupled, leading to shapes that deviate substantially from the spherical caps predicted for passive systems. These distortions result from anisotropic fluxes responding to the boundary conditions dictated by the Young-Dupr\'e equation. Interestingly, an electrostatic analogy of chemical reactions confirms these effects. We thus demonstrate how driven chemical reactions affect the emergence and morphology of droplets, which could be crucial for understanding biological cells and improving technical applications, e.g., in chemical engineering., Comment: 9 pages, 8 figures
- Published
- 2024
14. Beyond Pairwise: Higher-order physical interactions affect phase separation in multi-component liquids
- Author
-
Luo, Chengjie, Qiang, Yicheng, and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Condensed Matter - Statistical Mechanics ,Physics - Biological Physics - Abstract
Phase separation, crucial for spatially segregating biomolecules in cells, is well-understood in the simple case of a few components with pairwise interactions. Yet, biological cells challenge the simple picture in at least two ways: First, biomolecules, like proteins and nucleic acids, exhibit complex, higher-order interactions, where a single molecule may interact with multiple others simultaneously. Second, cells comprise a myriad of different components that form various droplets. Such multicomponent phase separation has been studied in the simple case of pairwise interactions, but an analysis of higher-order interactions is lacking. We propose such a theory and study the corresponding phase diagrams numerically. We find that interactions between three components are similar to pairwise interactions, whereas composition-dependent higher-order interactions between two components can oppose phase separation. This surprising result can only be revealed from the equilibrium phase diagrams, implying that the often-used stability analysis of homogeneous states is inadequate to study these systems. We thus show that higher-order interactions could play a crucial role in forming droplets in cells, and their manipulation could offer novel approaches to controlling multicomponent phase separation., Comment: 12 pages, 8 figures, and Appendix
- Published
- 2024
15. DNA liquid biopsy-based prediction of cancer-associated venous thromboembolism
- Author
-
Jee, Justin, Brannon, A. Rose, Singh, Rohan, Derkach, Andriy, Fong, Christopher, Lee, Adrian, Gray, Lauren, Pichotta, Karl, Luthra, Anisha, Diosdado, Monica, Haque, Mohammad, Guo, Jiannan, Hernandez, Jennifer, Garg, Kavita, Wilhelm, Clare, Arcila, Maria E., Pavlakis, Nick, Clarke, Stephen, Shah, Sohrab P., Razavi, Pedram, Reis-Filho, Jorge S., Ladanyi, Marc, Schultz, Nikolaus, Zwicker, Jeffrey, Berger, Michael F., Li, Bob T., and Mantha, Simon
- Published
- 2024
- Full Text
- View/download PDF
16. Cutsets and EF1 Fair Division of Graphs
- Author
-
Chen, Jiehua and Zwicker, William S.
- Subjects
Computer Science - Computer Science and Game Theory ,Computer Science - Multiagent Systems - Abstract
In fair division of a connected graph $G = (V, E)$, each of $n$ agents receives a share of $G$'s vertex set $V$. These shares partition $V$, with each share required to induce a connected subgraph. Agents use their own valuation functions to determine the non-negative numerical values of the shares, which determine whether the allocation is fair in some specified sense. We introduce forbidden substructures called graph cutsets, which block divisions that are fair in the EF1 (envy-free up to one item) sense by cutting the graph into "too many pieces". Two parameters - gap and valence - determine blocked values of $n$. If $G$ guarantees connected EF1 allocations for $n$ agents with valuations that are CA (common and additive), then $G$ contains no elementary cutset of gap $k \ge 2$ and valence in the interval $\[n - k + 1, n - 1\]$. If $G$ guarantees connected EF1 allocations for $n$ agents with valuations in the broader CM (common and monotone) class, then $G$ contains no cutset of gap $k \ge 2$ and valence in the interval $\[n - k + 1, n - 1\]$. These results rule out the existence of connected EF1 allocations in a variety of situations. For some graphs $G$ we can, with help from some new positive results, pin down $G$'s spectrum - the list of exactly which values of $n$ do/do not guarantee connected EF1 allocations. Examples suggest a conjectured common spectral pattern for all graphs. Further, we show that it is NP-hard to determine whether a graph admits a cutset. We also provide an example of a (non-traceable) graph on eight vertices that has no cutsets of gap $\ge 2$ at all, yet fails to guarantee connected EF1 allocations for three agents with CA preferences., Comment: Extended abstract accepted at AAMAS'24
- Published
- 2024
17. Motor Impairments in Children with Autism Spectrum Disorder: A Systematic Review and Meta-Analysis
- Author
-
Melika Kangarani-Farahani, Myrah Anum Malik, and Jill G. Zwicker
- Abstract
This article comprehensively reviews motor impairments in children with autism spectrum disorder (ASD) to: (1) determine the prevalence of motor problems in children with ASD; (2) understand the nature of motor difficulties in ASD and whether they are consistent with developmental coordination disorder (DCD); and (3) determine if the term DCD was used as a co-occurring diagnosis in children with ASD after publication of the DSM-5 in 2013. The following databases were systematically searched: MEDLINE, EMBASE, CINAHL, and PsycINFO from 2010 to December 2021. Articles were included if they: (1) were peer-reviewed and published in a scientific journal; (2) included children with ASD who were between 5 and 12 years; (3) used motor or function measures to assess motor abilities in children with ASD. Studies that included children with intellectual disabilities were excluded. Two independent reviewers reviewed titles, abstracts, and full-text articles for inclusion. Twenty-seven studies met the inclusion criteria and were assessed for quality by two independent reviewers using the Appraisal tool for Cross-Sectional Studies. The majority of articles (92.5%) indicated that 50-88% of children with ASD had significant motor impairments on standardized motor assessments and/or functional questionnaires. The nature of motor and function problems in ASD were consistent with DCD; however, only three out of 20 papers (15%) that were published from 2014 described the motor problems as DCD. One study reported that 15.1% of children with ASD with motor impairments had a co-occurring diagnosis of DCD, suggesting that DCD is under-recognized in this clinical population.
- Published
- 2024
- Full Text
- View/download PDF
18. Optimized PAR-2 RING dimerization mediates cooperative and selective membrane binding for robust cell polarity
- Author
-
Bland, Tom, Hirani, Nisha, Briggs, David C, Rossetto, Riccardo, Ng, KangBo, Taylor, Ian A, McDonald, Neil Q, Zwicker, David, and Goehring, Nathan W
- Published
- 2024
- Full Text
- View/download PDF
19. OmnimatteRF: Robust Omnimatte with 3D Background Modeling
- Author
-
Lin, Geng, Gao, Chen, Huang, Jia-Bin, Kim, Changil, Wang, Yipeng, Zwicker, Matthias, and Saraf, Ayush
- Subjects
Computer Science - Computer Vision and Pattern Recognition - Abstract
Video matting has broad applications, from adding interesting effects to casually captured movies to assisting video production professionals. Matting with associated effects such as shadows and reflections has also attracted increasing research activity, and methods like Omnimatte have been proposed to separate dynamic foreground objects of interest into their own layers. However, prior works represent video backgrounds as 2D image layers, limiting their capacity to express more complicated scenes, thus hindering application to real-world videos. In this paper, we propose a novel video matting method, OmnimatteRF, that combines dynamic 2D foreground layers and a 3D background model. The 2D layers preserve the details of the subjects, while the 3D background robustly reconstructs scenes in real-world videos. Extensive experiments demonstrate that our method reconstructs scenes with better quality on various videos., Comment: ICCV 2023. Project page: https://omnimatte-rf.github.io/
- Published
- 2023
20. Nash's bargaining problem and the scale-invariant Hirsch citation index
- Author
-
Freixas, Josep, Hoerl, Roger, and Zwicker, William S.
- Subjects
Mathematics - Combinatorics ,Economics - Theoretical Economics ,91A12, 91B26, 91G60, 62P20, 91B82 - Abstract
A number of citation indices have been proposed for measuring and ranking the research publication records of scholars. Some of the best known indices, such as those proposed by Hirsch and Woeginger, are designed to reward most highly those records that strike some balance between productivity (number of papers published), and impact (frequency with which those papers are cited). A large number of rarely cited publications will not score well, nor will a very small number of heavily cited papers. We discuss three new citation indices, one of which was independently proposed in \cite{FHLB}. Each rests on the notion of scale invariance, fundamental to John Nash's solution of the two-person bargaining problem. Our main focus is on one of these -- a scale invariant version of the Hirsch index. We argue that it has advantages over the original; it produces fairer rankings within subdisciplines, is more decisive (discriminates more finely, yielding fewer ties) and more dynamic (growing over time via more frequent, smaller increments), and exhibits enhanced centrality and tail balancedness. Simulations suggest that scale invariance improves robustness under Poisson noise, with increased decisiveness having no cost in terms of the number of ``accidental" reversals, wherein random irregularities cause researcher A to receive a lower index value than B, although A's productivity and impact are both slightly higher than B's. Moreover, we provide an axiomatic characterization of the scale invariant Hirsch index, via axioms that bear a close relationship, in discrete analogue, to those used by Nash in \cite{Nas50}. This argues for the mathematical naturality of the new index. An earlier version was presented at the 5th World Congress of the Game Theory Society, Maastricht, Netherlands in 2016., Comment: 44 pages, 8 figures
- Published
- 2023
21. Interference length reveals regularity of crossover placement across species
- Author
-
Marcel Ernst, Raphael Mercier, and David Zwicker
- Subjects
Science - Abstract
Abstract Crossover interference is a phenomenon that affects the number and positioning of crossovers in meiosis and thus affects genetic diversity and chromosome segregation. Yet, the underlying mechanism is not fully understood, partly because quantification is difficult. To overcome this challenge, we introduce the interference length L int that quantifies changes in crossover patterning due to interference. We show that it faithfully captures known aspects of crossover interference and provides superior statistical power over previous measures such as the interference distance and the gamma shape parameter. We apply our analysis to empirical data and unveil a similar behavior of L int across species, which hints at a common mechanism. A recently proposed coarsening model generally captures these aspects, providing a unified view of crossover interference. Consequently, L int facilitates model refinements and general comparisons between alternative models of crossover interference.
- Published
- 2024
- Full Text
- View/download PDF
22. Goodbye to Chi-by-Eye: A Bayesian Analysis of Photometric Binaries in Six Open Clusters
- Author
-
Childs, Anna C., Geller, Aaron M., von Hippel, Ted, Motherway, Erin, and Zwicker, Claire
- Subjects
Astrophysics - Solar and Stellar Astrophysics ,Astrophysics - Astrophysics of Galaxies - Abstract
We present a robust methodology for identifying photometric binaries in star clusters. Using Gaia DR3, Pan-STARRS and 2MASS data, we self-consistently define the cluster parameters and binary demographics for the open clusters (OCs) NGC 2168 (M35), NGC 7789, NGC 6819, NGC 2682 (M67), NGC 188, and NGC 6791. These clusters span in age from ~200 Myr (NGC 2168) to more than ~8 Gyr (NGC 6791) and have all been extensively studied in the literature. We use the Bayesian Analysis of Stellar Evolution software suite (BASE-9) to derive the age, distance, reddening, metallicity, binary fraction, and binary mass-ratio posterior distributions for each cluster. We perform a careful analysis of our completeness and also compare our results to previous spectroscopic surveys. For our sample of main-sequence stars with masses between 0.6 - 1 M_Sun, we find that these OCs have similar binary fractions that are also broadly consistent with the field multiplicity fraction. Within the clusters, the binary fraction increases dramatically toward the cluster centers, likely a result of mass segregation. Furthermore nearly all clusters show evidence of mass segregation within the single and binary populations, respectively. The OC binary fraction increases significantly with cluster age in our sample, possibly due to a combination of mass-segregation and cluster dissolution processes. We also find a hint of an anti-correlation between binary fraction and cluster central density as well as total cluster mass, possibly due to an increasing frequency of higher energy close stellar encounters that inhibit long-period binary survival and/or formation., Comment: 20 pages, 11 figures, and 5 tables. Accepted for publication in ApJ
- Published
- 2023
23. Investigating Mass Segregation of the Binary Stars in the Open Cluster NGC 6819
- Author
-
Zwicker, Claire, Geller, Aaron M., Childs, Anna C., Motherway, Erin, and von Hippel, Ted
- Subjects
Astrophysics - Solar and Stellar Astrophysics ,Astrophysics - Astrophysics of Galaxies - Abstract
We search for mass segregation in the intermediate-aged open cluster NGC 6819 within a carefully identified sample of probable cluster members. Using photometry from the Gaia, 2MASS, and Pan-STARRS surveys as inputs for a Bayesian statistics software suite, BASE-9, we identify a rich population of (photometric) binaries and derive posterior distributions for the cluster age, distance, metallicity and reddening as well as star-by-star photometric membership probabilities, masses and mass ratios (for binaries). Within our entire sample, we find 2632 cluster members and 777 binaries. We then select a main-sequence 'primary sample' with 14.85 < G < 19.5 containing 1342 cluster members and 250 binaries with mass ratios q > 0.5, to investigate for mass segregation. Within this primary sample, we find the binary radial distribution is significantly shifted toward the cluster center as compared to the single stars, resulting in a binary fraction that increases significantly toward the cluster core. Furthermore, we find that within the binary sample, more massive binaries have more centrally concentrated radial distributions than less massive binaries. The same is true for the single stars. We verify the expectation of mass segregation for this stellar sample in NGC 6819 through both relaxation time arguments and by investigating a sophisticated N-body model of the cluster. Importantly, this is the first study to investigate mass segregation of the binaries in the open cluster NGC 6819., Comment: 10 pages, 8 figures, Published in ApJ
- Published
- 2023
- Full Text
- View/download PDF
24. Tracing the Origins of Mass Segregation in M35: Evidence for Primordially Segregated Binaries
- Author
-
Motherway, Erin, Geller, Aaron M., Childs, Anna C., Zwicker, Claire, and von Hippel, Ted
- Subjects
Astrophysics - Solar and Stellar Astrophysics - Abstract
M35 is a young open cluster and home to an extensive binary population. Using Gaia DR3, Pan-STARRS, and 2MASS photometry with the Bayesian statistical software, BASE-9, we derive precise cluster parameters, identify single and binary cluster members, and extract their masses. We identify 571 binaries down to Gaia G = 20.3 and a lower-limit on the binary frequency of f_b = 0.41 +/- 0.02. We extend the binary demographics by many magnitudes faint-ward of previous (radial-velocity) studies of this cluster and further away from the cluster center (1.78-degrees, roughly 10 core radii). We find the binary stars to be more centrally concentrated than the single stars in the cluster. Furthermore, we find strong evidence for mass segregation within the binary population itself, with progressively more massive binary samples becoming more and more centrally concentrated. For the single stars, we find weaker evidence for mass segregation; only the most massive single stars (> 2.5MSun) appear more centrally concentrated. Given the cluster age of ~200 Myr, and our derived half-mass relaxation time for the cluster of 230 +/- 84 Myr, we estimate ~47% of the binary stars and ~12% of single stars in the cluster have had time to become dynamically mass segregated. Importantly, when we investigate only stars with mass segregation timescales greater than the cluster age, we still find the binaries to be more centrally concentrated than the singles, suggesting the binaries may have formed with a primordially different spatial distribution than the single stars., Comment: 8 pages, 5 figures, published in ApJL
- Published
- 2023
- Full Text
- View/download PDF
25. Theory of Elastic Microphase Separation
- Author
-
Qiang, Yicheng, Luo, Chengjie, and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Condensed Matter - Mesoscale and Nanoscale Physics ,Nonlinear Sciences - Pattern Formation and Solitons - Abstract
Elastic microphase separation refers to equilibrium patterns that form by phase separation in elastic gels. Recent experiments revealed a continuous phase transition from the homogeneous phase to a regularly patterned phase, whose period decreased for stiffer systems. We here propose a model that captures these observations. The model combines a continuous field of the elastic component to describe phase separation with nonlocal elasticity theory to capture the gel's microstructure. Analytical approximations unveil that the pattern period is determined by the geometric mean between the elasto-capillary length and a microscopic length scale of the gel. Our theory highlights the importance of nonlocal elasticity in soft matter systems, reveals the mechanism of elastic microphase separation, and will improve the engineering of such systems., Comment: 9 pages, 6 figures
- Published
- 2023
- Full Text
- View/download PDF
26. Influence of physical interactions on spatiotemporal patterns
- Author
-
Luo, Chengjie and Zwicker, David
- Subjects
Physics - Biological Physics ,Nonlinear Sciences - Pattern Formation and Solitons - Abstract
Spatiotemporal patterns are often modeled using reaction-diffusion equations, which combine complex reactions between constituents with ideal diffusive motion. Such descriptions neglect physical interactions between constituents, which might affect resulting patterns. To overcome this, we study how physical interactions affect cyclic dominant reactions, like the seminal rock-paper-scissors game, which exhibits spiral waves for ideal diffusion. Generalizing diffusion to incorporate physical interactions, we find that weak interactions change the length- and time-scales of spiral waves, consistent with a mapping to the complex Ginzburg-Landau equation. In contrast, strong repulsive interactions typically generate oscillating lattices, and strong attraction leads to an interplay of phase separation and chemical oscillations, like droplets co-locating with cores of spiral waves. Our work suggests that physical interactions are relevant for forming spatiotemporal patterns in nature, and it might shed light on how biodiversity is maintained in ecological settings., Comment: 9 pages, 4 figures, and appendix
- Published
- 2023
27. Interference length reveals regularity of crossover placement across species
- Author
-
Ernst, Marcel, Mercier, Raphael, and Zwicker, David
- Published
- 2024
- Full Text
- View/download PDF
28. Host-pathogen interactions in the Plasmodium-infected mouse liver at spatial and single-cell resolution
- Author
-
Hildebrandt, Franziska, Iturritza, Miren Urrutia, Zwicker, Christian, Vanneste, Bavo, Van Hul, Noémi, Semle, Elisa, Quin, Jaclyn, Pascini, Tales, Saarenpää, Sami, He, Mengxiao, Andersson, Emma R., Scott, Charlotte L., Vega-Rodriguez, Joel, Lundeberg, Joakim, and Ankarklev, Johan
- Published
- 2024
- Full Text
- View/download PDF
29. A protocol for the formative evaluation of the implementation of patient-reported outcome measures in child and adolescent mental health services as part of a learning health system
- Author
-
McCabe, Erin, Dyson, Michele, McNeil, Deborah, Hindmarch, Whitney, Ortega, Iliana, Arnold, Paul D., Dimitropoulos, Gina, Clements, Ryan, Santana, Maria J., and Zwicker, Jennifer D.
- Published
- 2024
- Full Text
- View/download PDF
30. Exploring paramedic perspectives on emergency medical service (EMS) delivery in Alberta: a qualitative study
- Author
-
Newton, Janna, Carpenter, Travis, and Zwicker, Jennifer
- Published
- 2024
- Full Text
- View/download PDF
31. Prioritizing Patient Reported Outcome Measures (PROMs) to use in the clinical care of youth living with mental health concerns: a nominal group technique study
- Author
-
Bajgain, Kalpana Thapa, Mendoza, Justino, Naqvi, Farwa, Aghajafari, Fariba, Tang, Karen, Zwicker, Jennifer, and Santana, Maria-Jose
- Published
- 2024
- Full Text
- View/download PDF
32. Motor Impairments in Children with Autism Spectrum Disorder: A Systematic Review and Meta-analysis
- Author
-
Kangarani-Farahani, Melika, Malik, Myrah Anum, and Zwicker, Jill G.
- Published
- 2024
- Full Text
- View/download PDF
33. Analyzing the Quality of Life in Individuals with Fragile X Syndrome in Relation to Sleep and Mental Health
- Author
-
Minhas, Amrita, Whitlock, Kerri, Rosenfelt, Cory, Shatto, Julie, Finlay, Brittany, Zwicker, Jennifer, Lippe, Sarah, Jacquemont, Sebastien, Hagerman, Randi, Murias, Kara, and Bolduc, Francois V.
- Published
- 2024
- Full Text
- View/download PDF
34. Inverse Global Illumination using a Neural Radiometric Prior
- Author
-
Hadadan, Saeed, Lin, Geng, Novák, Jan, Rousselle, Fabrice, and Zwicker, Matthias
- Subjects
Computer Science - Computer Vision and Pattern Recognition ,Computer Science - Graphics - Abstract
Inverse rendering methods that account for global illumination are becoming more popular, but current methods require evaluating and automatically differentiating millions of path integrals by tracing multiple light bounces, which remains expensive and prone to noise. Instead, this paper proposes a radiometric prior as a simple alternative to building complete path integrals in a traditional differentiable path tracer, while still correctly accounting for global illumination. Inspired by the Neural Radiosity technique, we use a neural network as a radiance function, and we introduce a prior consisting of the norm of the residual of the rendering equation in the inverse rendering loss. We train our radiance network and optimize scene parameters simultaneously using a loss consisting of both a photometric term between renderings and the multi-view input images, and our radiometric prior (the residual term). This residual term enforces a physical constraint on the optimization that ensures that the radiance field accounts for global illumination. We compare our method to a vanilla differentiable path tracer, and more advanced techniques such as Path Replay Backpropagation. Despite the simplicity of our approach, we can recover scene parameters with comparable and in some cases better quality, at considerably lower computation times., Comment: Homepage: https://inverse-neural-radiosity.github.io
- Published
- 2023
- Full Text
- View/download PDF
35. PAniC-3D: Stylized Single-view 3D Reconstruction from Portraits of Anime Characters
- Author
-
Chen, Shuhong, Zhang, Kevin, Shi, Yichun, Wang, Heng, Zhu, Yiheng, Song, Guoxian, An, Sizhe, Kristjansson, Janus, Yang, Xiao, and Zwicker, Matthias
- Subjects
Computer Science - Computer Vision and Pattern Recognition - Abstract
We propose PAniC-3D, a system to reconstruct stylized 3D character heads directly from illustrated (p)ortraits of (ani)me (c)haracters. Our anime-style domain poses unique challenges to single-view reconstruction; compared to natural images of human heads, character portrait illustrations have hair and accessories with more complex and diverse geometry, and are shaded with non-photorealistic contour lines. In addition, there is a lack of both 3D model and portrait illustration data suitable to train and evaluate this ambiguous stylized reconstruction task. Facing these challenges, our proposed PAniC-3D architecture crosses the illustration-to-3D domain gap with a line-filling model, and represents sophisticated geometries with a volumetric radiance field. We train our system with two large new datasets (11.2k Vroid 3D models, 1k Vtuber portrait illustrations), and evaluate on a novel AnimeRecon benchmark of illustration-to-3D pairs. PAniC-3D significantly outperforms baseline methods, and provides data to establish the task of stylized reconstruction from portrait illustrations., Comment: CVPR 2023, code release: https://github.com/ShuhongChen/panic3d-anime-reconstruction
- Published
- 2023
36. Host-pathogen interactions in the Plasmodium-infected mouse liver at spatial and single-cell resolution
- Author
-
Franziska Hildebrandt, Miren Urrutia Iturritza, Christian Zwicker, Bavo Vanneste, Noémi Van Hul, Elisa Semle, Jaclyn Quin, Tales Pascini, Sami Saarenpää, Mengxiao He, Emma R. Andersson, Charlotte L. Scott, Joel Vega-Rodriguez, Joakim Lundeberg, and Johan Ankarklev
- Subjects
Science - Abstract
Abstract Upon infecting its vertebrate host, the malaria parasite initially invades the liver where it undergoes massive replication, whilst remaining clinically silent. The coordination of host responses across the complex liver tissue during malaria infection remains unexplored. Here, we perform spatial transcriptomics in combination with single-nuclei RNA sequencing over multiple time points to delineate host-pathogen interactions across Plasmodium berghei-infected liver tissues. Our data reveals significant changes in spatial gene expression in the malaria-infected tissues. These include changes related to lipid metabolism in the proximity to sites of Plasmodium infection, distinct inflammation programs between lobular zones, and regions with enrichment of different inflammatory cells, which we term ‘inflammatory hotspots’. We also observe significant upregulation of genes involved in inflammation in the control liver tissues of mice injected with mosquito salivary gland components. However, this response is considerably delayed compared to that observed in P. berghei-infected mice. Our study establishes a benchmark for investigating transcriptome changes during host-parasite interactions in tissues, it provides informative insights regarding in vivo study design linked to infection and offers a useful tool for the discovery and validation of de novo intervention strategies aimed at malaria liver stage infection.
- Published
- 2024
- Full Text
- View/download PDF
37. A protocol for the formative evaluation of the implementation of patient-reported outcome measures in child and adolescent mental health services as part of a learning health system
- Author
-
Erin McCabe, Michele Dyson, Deborah McNeil, Whitney Hindmarch, Iliana Ortega, Paul D. Arnold, Gina Dimitropoulos, Ryan Clements, Maria J. Santana, and Jennifer D. Zwicker
- Subjects
Learning health system ,Mental health services ,Measurement-based care ,Patient-reported outcome measures ,Mental illness ,Pediatric mental health ,Public aspects of medicine ,RA1-1270 - Abstract
Abstract Background Mental health conditions affect one in seven young people and research suggests that current mental health services are not meeting the needs of most children and youth. Learning health systems are an approach to enhancing services through rapid, routinized cycles of continuous learning and improvement. Patient-reported outcome measures provide a key data source for learning health systems. They have also been shown to improve outcomes for patients when integrated into routine clinical care. However, implementing these measures into health systems is a challenging process. This paper describes a protocol for a formative evaluation of the implementation of patient-reported measures in a newly operational child and adolescent mental health centre in Calgary, Canada. The purpose is to optimize the collection and use of patient-reported outcome measures. Our specific objectives are to assess the implementation progress, identify barriers and facilitators to implementation, and explore patient, caregivers and clinician experiences of using these measures in routine clinical care. Methods This study is a mixed-methods, formative evaluation using the Consolidated Framework for Implementation Research. Participants include patients and caregivers who have used the centre’s services, as well as leadership, clinical and support staff at the centre. Focus groups and semi-structured interviews will be conducted to assess barriers and facilitators to the implementation and sustainability of the use of patient-reported outcome measures, as well as individuals’ experiences with using these measures within clinical care. The data generated by the patient-reported measures over the first five months of the centre’s operation will be analyzed to understand implementation progress, as well as validity of the chosen measures for the centres’ population. Discussion The findings of this evaluation will help to identify and address the factors that are affecting the successful implementation of patient-reported measures at the centre. They will inform the co-design of strategies to improve implementation with key stakeholders, which include patients, clinical staff, and leadership at the centre. To our knowledge, this is the first study of the implementation of patient-reported outcome measures in child and adolescent mental health services and our findings can be used to enhance future implementation efforts in similar settings.
- Published
- 2024
- Full Text
- View/download PDF
38. Physical interactions promote Turing patterns
- Author
-
Menou, Lucas, Luo, Chengjie, and Zwicker, David
- Subjects
Physics - Biological Physics ,Nonlinear Sciences - Pattern Formation and Solitons - Abstract
Turing's mechanism is often invoked to explain periodic patterns in nature, although direct experimental support is scarce. Turing patterns form in reaction-diffusion systems when the activating species diffuse much slower than the inhibiting species, and the involved reactions are highly non-linear. Such reactions can originate from co-operativity, whose physical interactions should also affect diffusion. We here take direct interactions into account and show that they strongly affect Turing patterns. We find that weak repulsion between the activator and inhibitor can substantially lower the required differential diffusivity and reaction non-linearity. In contrast, strong interactions can induce phase separation, but the resulting length scale is still typically governed by the fundamental reaction-diffusion length scale. Taken together, our theory connects traditional Turing patterns with chemically active phase separation, thus describing a wider range of systems. Moreover, we demonstrate that even weak interactions affect patterns substantially, so they should be incorporated when modeling realistic systems., Comment: 5 pages, 5 figures, and appendix
- Published
- 2023
- Full Text
- View/download PDF
39. Zonal receptor distributions maximize olfactory information
- Author
-
Sen, Swati and Zwicker, David
- Subjects
Physics - Biological Physics ,Quantitative Biology - Neurons and Cognition - Abstract
The olfactory sense measures the chemical composition of the environment using a diverse array of olfactory receptors. In vertebrates, the olfactory receptors reside in a mucus layer in the nasal cavity and can thus only detect odorants that are inhaled with the airflow and dissolved in mucus. These physical processes fundamentally affect how many odorant molecules contact the receptors. We hypothesize that the olfactory system works efficiently by optimizing the placement of receptors for maximal information transmission. Using a simplified model, we capture all relevant physical processes and show that odorant concentrations generally exhibit an exponential distribution. Combining this result with information theory, we further show that receptors separated into distinct spatial zones maximize the transmitted information. Our results are consistent with experimentally observed receptors zones and might help to improve artificial smell sensors., Comment: 6 pages, 4 figures
- Published
- 2023
40. Nucleation of chemically active droplets
- Author
-
Ziethen, Noah, Kirschbaum, Jan, and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter ,Condensed Matter - Statistical Mechanics ,Physics - Biological Physics - Abstract
Driven chemical reactions can control the macroscopic properties of droplets, like their size. Such active droplets are critical in structuring the interior of biological cells. Cells also need to control where and when droplets appear, so they need to control droplet nucleation. Our numerical simulations demonstrate that reactions generally suppress nucleation if they stabilize the homogeneous state. An equilibrium surrogate model reveals that reactions increase the effective energy barrier of nucleation, enabling quantitative predictions of the increased nucleation times. Moreover, the surrogate model allows us to construct a phase diagram, which summarizes how reactions affect the stability of the homogeneous phase and the droplet state. This simple picture provides accurate predictions of how driven reactions delay nucleation, which is relevant for understanding droplets in biological cells and chemical engineering., Comment: 7 pages, 3 figures
- Published
- 2022
- Full Text
- View/download PDF
41. Increasing detections of the margay: occupancy, density, and activity patterns in Madre de Dios, Peru
- Author
-
Samantha Zwicker, Clara Sánchez-Latorre, and Clemens Lukasser
- Subjects
behavioral ecology ,home ranges ,Leopardus wiedii ,occupancy modeling ,semiarboreal camera ,spatial capture-recapture ,Evolution ,QH359-425 ,Ecology ,QH540-549.5 - Abstract
This study provides novel insights into the ecology of the margay (Leopardus wiedii), focusing on its occupancy, density, and activity patterns in the Madre de Dios region, Peru, by utilizing both arboreal and terrestrial camera traps. Conducted across 10 km2, the research achieved 47 detections, utilizing semi-arboreal, lower canopy cameras for the first time to capture margay activities. Occupancy models revealed a mean occupancy probability of 53.82% and a detection probability of 6.57%. Among the environmental covariates, diameter at breast height (DBH) was identified as a significant predictor, negatively impacting occupancy, suggesting margays favor areas with smaller tree diameters. Contrary to expectations, the Normalized Difference Vegetation Index (NDVI) did not significantly influence occupancy. Tree density exhibited a positive, though non-significant, association with margay presence. Spatial capture-recapture (SECR) models estimated a margay density of 71.46 individuals per 100 km², with significant sex-based differences in spatial behavior. Males demonstrated larger home ranges (approximately 13.50 km²) compared to females (approximately 3.79 km²). Activity pattern analyses indicated primary nocturnal behavior with peaks at midnight to 3 am, 5 am, and 6 pm. Temporal overlap analysis revealed a low overlap coefficient with jaguarundis (Dhat1 = 0.21) and a higher overlap with ocelots (Dhat4 = 0.79), reflecting intricate interspecies dynamics. Our findings highlight important ecological aspects of margay behavior, including habitat preferences, nocturnal activity patterns, and interspecies interactions, which were effectively captured through the combined use of terrestrial and arboreal camera traps. The study emphasizes the importance of habitat preservation and the development of conservation strategies tailored to the ecological needs of margays, potentially influencing global practices for the management and protection of lesser-studied semi-arboreal wild cats.
- Published
- 2024
- Full Text
- View/download PDF
42. NBAtlas: A harmonized single-cell transcriptomic reference atlas of human neuroblastoma tumors
- Author
-
Noah Bonine, Vittorio Zanzani, Annelies Van Hemelryk, Bavo Vanneste, Christian Zwicker, Tinne Thoné, Sofie Roelandt, Sarah-Lee Bekaert, Jan Koster, Isabelle Janoueix-Lerosey, Cécile Thirant, Stéphane Van Haver, Stephen S. Roberts, Liselot M. Mus, Bram De Wilde, Nadine Van Roy, Celine Everaert, Frank Speleman, Vanessa Vermeirssen, Charlotte L. Scott, and Katleen De Preter
- Subjects
CP: Cancer ,Biology (General) ,QH301-705.5 - Abstract
Summary: Neuroblastoma, a rare embryonic tumor arising from neural crest development, is responsible for 15% of pediatric cancer-related deaths. Recently, several single-cell transcriptome studies were performed on neuroblastoma patient samples to investigate the cell of origin and tumor heterogeneity. However, these individual studies involved a small number of tumors and cells, limiting the conclusions that could be drawn. To overcome this limitation, we integrated seven single-cell or single-nucleus datasets into a harmonized cell atlas covering 362,991 cells across 61 patients. We use this atlas to decipher the transcriptional landscape of neuroblastoma at single-cell resolution, revealing associations between transcriptomic profiles and clinical outcomes within the tumor compartment. In addition, we characterize the complex immune-cell landscape and uncover considerable heterogeneity among tumor-associated macrophages. Finally, we showcase the utility of our atlas as a resource by expanding it with additional data and using it as a reference for data-driven cell-type annotation.
- Published
- 2024
- Full Text
- View/download PDF
43. Psychological Interventions and Those With Elements of Positive Psychology for Child and Youth Mental Health During the COVID-19 Pandemic: Literature Review, Lessons Learned, and Areas for Future Knowledge Dissemination
- Author
-
Lynnette Lyzwinski, Jennifer D Zwicker, Sheila Mcdonald, and Suzanne Tough
- Subjects
Pediatrics ,RJ1-570 - Abstract
BackgroundThere was a marked decline in child and teenage mental health worldwide during the pandemic, with increasing prevalence of depression, anxiety, and suicide. Research indicates that positive psychological interventions may be beneficial for mental health. ObjectiveThe aims of this review were to evaluate positive psychological interventions for child and youth mental health implemented during the COVID-19 pandemic and assess overall effectiveness for mental health and knowledge. MethodsWe undertook a literature search of PubMed, MEDLINE, and Google Scholar for all eligible studies on digital and hybrid in-person psychological interventions for youth mental health during the COVID-19 pandemic. A particular emphasis was placed on positive psychological interventions or interventions that had components of positive psychology, including gratitude, acceptance, positive emotions, or resilience building. ResultsA total of 41 interventions were included in this review. Most of the interventions were digital. Overall, most of the interventions assisted with one or more mental health or psychological indicators, such as depression, anxiety, posttraumatic stress disorder, stress, and resilience. However, findings were mixed when it came to targeting both depression and anxiety together. The interventions that promoted youth mental health most often had a range of diverse positive psychology components and were evidence based. Not all studies measured changes in mindfulness. Few studies examined knowledge acquired on mental health self-care, managing mental health problems, knowledge of positive psychological techniques, mindfulness knowledge, or mental health self-efficacy. ConclusionsDiverse multicomponent interventions appear to assist with youth mental health overall, although their effects on both depression and anxiety are less clear. There is also a need for more research on knowledge gains to determine whether the interventions improved knowledge on mental health–supportive behaviors, which may be sustained beyond the intervention. Finally, more studies need to evaluate whether the interventions assisted with increasing self-efficacy for practicing positive psychological techniques as well as changes in mindfulness levels. Future studies should not only assess effectiveness for mental health outcomes but also assess knowledge translation, with valid measures of knowledge and self-efficacy for mental health–supportive behaviors and positive psychological skills acquired (eg, the ability to practice mindfulness).
- Published
- 2024
- Full Text
- View/download PDF
44. Fair division of graphs and of tangled cakes
- Author
-
Igarashi, Ayumi and Zwicker, William S.
- Published
- 2024
- Full Text
- View/download PDF
45. Pediatric Hematopoietic Cell Transplantation: A Longitudinal Assessment of Health-Related Quality of Life of Pediatric Donors
- Author
-
Hou, Sharon H. J., Stokoe, Mehak, Zwicker, Hailey, Young-Speirs, Morgan, Pelletier, Wendy, Guilcher, Gregory M. T., Khu, Melanie, and Schulte, Fiona S. M.
- Published
- 2023
- Full Text
- View/download PDF
46. The potential use of artificial intelligence for venous thromboembolism prophylaxis and management: clinician and healthcare informatician perspectives
- Author
-
Barbara D. Lam, Laura E. Dodge, Sabrina Zerbey, William Robertson, Rachel P. Rosovsky, Leslie Lake, Siddhant Datta, Pavania Elavakanar, Alys Adamski, Nimia Reyes, Karon Abe, Ioannis S. Vlachos, Jeffrey I. Zwicker, and Rushad Patell
- Subjects
Venous thromboembolism ,Artificial intelligence ,Machine learning ,Survey ,Medicine ,Science - Abstract
Abstract Venous thromboembolism (VTE) is the leading cause of preventable death in hospitalized patients. Artificial intelligence (AI) and machine learning (ML) can support guidelines recommending an individualized approach to risk assessment and prophylaxis. We conducted electronic surveys asking clinician and healthcare informaticians about their perspectives on AI/ML for VTE prevention and management. Of 101 respondents to the informatician survey, most were 40 years or older, male, clinicians and data scientists, and had performed research on AI/ML. Of the 607 US-based respondents to the clinician survey, most were 40 years or younger, female, physicians, and had never used AI to inform clinical practice. Most informaticians agreed that AI/ML can be used to manage VTE (56.0%). Over one-third were concerned that clinicians would not use the technology (38.9%), but the majority of clinicians believed that AI/ML probably or definitely can help with VTE prevention (70.1%). The most common concern in both groups was a perceived lack of transparency (informaticians 54.4%; clinicians 25.4%). These two surveys revealed that key stakeholders are interested in AI/ML for VTE prevention and management, and identified potential barriers to address prior to implementation.
- Published
- 2024
- Full Text
- View/download PDF
47. Exploring paramedic perspectives on emergency medical service (EMS) delivery in Alberta: a qualitative study
- Author
-
Janna Newton, Travis Carpenter, and Jennifer Zwicker
- Subjects
Pre-hospital ,Emergency medical services ,Paramedics ,Emergency medical dispatch ,Health policy ,Scope of practice ,Special situations and conditions ,RC952-1245 ,Medical emergencies. Critical care. Intensive care. First aid ,RC86-88.9 - Abstract
Abstract Purpose Emergency Medical Services (EMS) in Alberta are facing critical challenges. This qualitative study aims to describe and understand the frontline perspective regarding system level issues and propose provider-informed policy recommendations. Methods 19 semi-structured one-on- one interviews were conducted with Primary or Advanced Care Paramedics (PCP/ACP) across Alberta. Participants were asked to share their perspectives, experiences and recommendations in relation to EMS response times and the working environment. Interviews were analyzed using thematic analysis to identify themes and subthemes. Results Two core themes were identified as areas of concern: poor response times and the EMS working environment, which each influence and impact the other. Within response times, paramedics highlighted specific difficulties with ED offloading, a lack of resources, low-acuity calls, and rural challenges. In terms of the EMS working environment, four subthemes were apparent including attrition, unhealthy culture, organizational barriers and the need for paramedic empowerment. Providers made many recommendations including creating and expanding emergency mobile integrated health (MIH) branches, sharing 811 and 911 responses, and enforcing ED target offload times amongst other suggestions. Conclusions While response times are a key and highly visible problem, there are many critical factors like the EMS working environment that degrade patient care and cause concern amongst frontline practitioners. Multifaceted policy changes are to be explored to reduce disfunction within EMS services, enhance the well-being of the workforce and deliver improved patient care. Specific EMS-oriented policies are important for moving forward to reduce transfers to EDs, but the broader health system which is over capacity is causing downstream effects into EMS must be addressed by government and health administrators.
- Published
- 2024
- Full Text
- View/download PDF
48. Memory capacity of adaptive flow networks
- Author
-
Bhattacharyya, Komal, Zwicker, David, and Alim, Karen
- Subjects
Condensed Matter - Soft Condensed Matter ,Condensed Matter - Disordered Systems and Neural Networks ,Quantitative Biology - Tissues and Organs - Abstract
Biological flow networks adapt their network morphology to optimise flow while being exposed to external stimuli from different spatial locations in their environment. These adaptive flow networks retain a memory of the stimulus location in the network morphology. Yet, what limits this memory and how many stimuli can be stored is unknown. Here, we study a numerical model of adaptive flow networks by applying multiple stimuli subsequently. We find strong memory signals for stimuli imprinted for a long time into young networks. Consequently, networks can store many stimuli for intermediate stimulus duration, which balance imprinting and ageing., Comment: 7 pages, 4 figures, 9 pages of appendix
- Published
- 2022
- Full Text
- View/download PDF
49. Effective simulations of interacting active droplets
- Author
-
Kulkarni, Ajinkya, Vidal-Henriquez, Estefania, and Zwicker, David
- Subjects
Condensed Matter - Soft Condensed Matter - Abstract
Droplets form a cornerstone of the spatiotemporal organization of biomolecules in cells. These droplets are controlled using physical processes like chemical reactions and imposed gradients, which are costly to simulate using traditional approaches, like solving the Cahn-Hilliard equation. To overcome this challenge, we here present an alternative, efficient method. The main idea is to focus on the relevant degrees of freedom, like droplet positions and sizes. We derive dynamical equations for these quantities using analytical solutions to simplified situations. We verify our method against fully-resolved simulations and show that it can describe interacting droplets under the influence of chemical reactions and external gradients using only a fraction of the computational costs of traditional methods. Our method can be extended to include other processes in the future and will thus serve as a relevant platform for understanding the dynamics of droplets in cells., Comment: 7 pages, 6 figures
- Published
- 2022
50. Numba-MPI v1.0: Enabling MPI communication within Numba/LLVM JIT-compiled Python code
- Author
-
Kacper Derlatka, Maciej Manna, Oleksii Bulenok, David Zwicker, and Sylwester Arabas
- Subjects
Python ,MPI ,Numba ,JIT ,Multi-threading ,LLVM ,Computer software ,QA76.75-76.765 - Abstract
The numba-mpi package offers access to the Message Passing Interface (MPI) routines from Python code that uses the Numba just-in-time (JIT) compiler. As a result, high-performance and multi-threaded Python code may utilize MPI communication facilities without leaving the JIT-compiled code blocks, which is not possible with the mpi4py package, a higher-level Python interface to MPI. For debugging or code-coverage analysis purposes, numba-mpi retains full functionality of the code even if the JIT compilation is disabled. The numba-mpi API constitutes a thin wrapper around the C API of MPI and is built around Numpy arrays including handling of non-contiguous views over array slices. Project development is hosted at GitHub leveraging the mpi4py/setup-mpi workflow enabling continuous integration tests on Linux (MPICH, OpenMPI & Intel MPI), macOS (MPICH & OpenMPI) and Windows (MS MPI). The paper covers an overview of the package features, architecture and performance. As of v1.0, the following MPI routines are exposed and covered by unit tests: size/rank, [i]send/[i]recv, wait[all|any], test[all|any], allreduce, bcast, barrier, scatter/[all]gather & wtime. The package is implemented in pure Python and depends on numpy, numba and mpi4py (the latter used at initialization and as a source of utility routines only). The performance advantage of using numba-mpi compared to mpi4py is depicted with a simple example, with entirety of the code included in listings discussed in the text. Application of numba-mpi for handling domain decomposition in numerical solvers for partial differential equations is presented using two external packages that depend on numba-mpi: py-pde and PyMPDATA-MPI.
- Published
- 2024
- Full Text
- View/download PDF
Catalog
Discovery Service for Jio Institute Digital Library
For full access to our library's resources, please sign in.