Focal adhesionIn cell biology, focal adhesions (also cell–matrix adhesions or FAs) are large macromolecular assemblies through which mechanical force and regulatory signals are transmitted between the extracellular matrix (ECM) and an interacting cell. More precisely, focal adhesions are the sub-cellular structures that mediate the regulatory effects (i.e., signaling events) of a cell in response to ECM adhesion. Focal adhesions serve as the mechanical linkages to the ECM, and as a biochemical signaling hub to concentrate and direct numerous signaling proteins at sites of integrin binding and clustering.
GranulomaA granuloma is an aggregation of macrophages that forms in response to chronic inflammation. This occurs when the immune system attempts to isolate foreign substances that it is otherwise unable to eliminate. Such substances include infectious organisms including bacteria and fungi, as well as other materials such as foreign objects, keratin, and suture fragments. In pathology, a granuloma is an organized collection of macrophages. In medical practice, doctors occasionally use the term granuloma in its more literal meaning: "a small nodule".
CytokineCytokines are a broad and loose category of small proteins (~5–25 kDa) important in cell signaling. Due to their size, cytokines cannot cross the lipid bilayer of cells to enter the cytoplasm and therefore typically exert their functions by interacting with specific cytokine receptors on the target cell surface. Cytokines have been shown to be involved in autocrine, paracrine and endocrine signaling as immunomodulating agents.
Cell-mediated immunityCell-mediated immunity or cellular immunity is an immune response that does not involve antibodies. Rather, cell-mediated immunity is the activation of phagocytes, antigen-specific cytotoxic T-lymphocytes, and the release of various cytokines in response to an antigen. In the late 19th century Hippocratic tradition medicine system, the immune system was imagined into two branches: humoral immunity, for which the protective function of immunization could be found in the humor (cell-free bodily fluid or serum) and cellular immunity, for which the protective function of immunization was associated with cells.
Stromal cellStromal cells, or mesenchymal stromal cells, are differentiating cells found in abundance within bone marrow but can also be seen all around the body. Stromal cells can become connective tissue cells of any organ, for example in the uterine mucosa (endometrium), prostate, bone marrow, lymph node and the ovary. They are cells that support the function of the parenchymal cells of that organ. The most common stromal cells include fibroblasts and pericytes. The term stromal comes from Latin stromat-, "bed covering", and Ancient Greek στρῶμα, , "bed".
Cell adhesionCell adhesion is the process by which cells interact and attach to neighbouring cells through specialised molecules of the cell surface. This process can occur either through direct contact between cell surfaces such as cell junctions or indirect interaction, where cells attach to surrounding extracellular matrix, a gel-like structure containing molecules released by cells into spaces between them. Cells adhesion occurs from the interactions between cell-adhesion molecules (CAMs), transmembrane proteins located on the cell surface.
Purely functional data structureIn computer science, a purely functional data structure is a data structure that can be directly implemented in a purely functional language. The main difference between an arbitrary data structure and a purely functional one is that the latter is (strongly) immutable. This restriction ensures the data structure possesses the advantages of immutable objects: (full) persistency, quick copy of objects, and thread safety. Efficient purely functional data structures may require the use of lazy evaluation and memoization.
Functional programmingIn computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions. It is a declarative programming paradigm in which function definitions are trees of expressions that map values to other values, rather than a sequence of imperative statements which update the running state of the program. In functional programming, functions are treated as first-class citizens, meaning that they can be bound to names (including local identifiers), passed as arguments, and returned from other functions, just as any other data type can.
Cell adhesion moleculeCell adhesion molecules (CAMs) are a subset of cell surface proteins that are involved in the binding of cells with other cells or with the extracellular matrix (ECM), in a process called cell adhesion. In essence, CAMs help cells stick to each other and to their surroundings. CAMs are crucial components in maintaining tissue structure and function. In fully developed animals, these molecules play an integral role in generating force and movement and consequently ensuring that organs are able to execute their functions normally.
Persistent data structureIn computing, a persistent data structure or not ephemeral data structure is a data structure that always preserves the previous version of itself when it is modified. Such data structures are effectively immutable, as their operations do not (visibly) update the structure in-place, but instead always yield a new updated structure. The term was introduced in Driscoll, Sarnak, Sleator, and Tarjans' 1986 article. A data structure is partially persistent if all versions can be accessed but only the newest version can be modified.