This study has evaluated the humoral immune response in Golden Hamsters experimentally infected with Leishmania donovani along (4) times of follow up (15, 30, 60, 90) days after infection. Indirect haemagglutination test was used to determine the antibody titer through the various stages of the study. Also the progress of the infection was studied depending on some of the visceral changes caused by the parasite, like weight of liver, length & weight of spleen & the count of Leishmania parasites in spleen were measured. Results has shown that there was an increase in antibody titer & the maximum value was recorded at the 4th day of follow up (90 days after infection) as well as that there was an increase in the length of the spleen, weight of liver & spleen comparing with the control animals, also the count of the parasites in the spleen was increasing gradually through the 4 times of follow up.
Despite extensive investigations, an effective treatment for sepsis remains elusive and a better understanding of the inflammatory response to infection is required to identify potential new targets for therapy. In this study we have used RNAi technology to show, for the first time, that the inducible lysophosphatidylcholine acyltransferase 2 (LPCAT2) plays a key role in macrophage inflammatory gene expression in response to stimulation with bacterial ligands. Using siRNA- or shRNA-mediated knockdown, we demonstrate that, in contrast to the constitutive LPCAT1, LPCAT2 is required for macrophage cytokine gene expression and release in response to TLR4 and TLR2 ligand stimulation but not for TLR-independent stimuli. In addition, cells transfe
... Show MoreAmputation of the upper limb significantly hinders the ability of patients to perform activities of daily living. To address this challenge, this paper introduces a novel approach that combines non-invasive methods, specifically Electroencephalography (EEG) and Electromyography (EMG) signals, with advanced machine learning techniques to recognize upper limb movements. The objective is to improve the control and functionality of prosthetic upper limbs through effective pattern recognition. The proposed methodology involves the fusion of EMG and EEG signals, which are processed using time-frequency domain feature extraction techniques. This enables the classification of seven distinct hand and wrist movements. The experiments conducte
... Show MoreOnline service is used to be as Pay-Per-Use in Cloud computing. Service user need not be in a long time contract with cloud service providers. Service level agreements (SLAs) are understandings marked between a cloud service providers and others, for example, a service user, intermediary operator, or observing operators. Since cloud computing is an ongoing technology giving numerous services to basic business applications and adaptable systems to manage online agreements are significant. SLA maintains the quality-of-service to the cloud user. If service provider fails to maintain the required service SLA is considered to be SLA violated. The main aim is to minimize the SLA violations for maintain the QoS of their cloud users. In this res
... Show MoreThis study was carried out to describe the gene expression of the micro RNA 122a gene with the development of diabetes in Iraq. The difference in gene expression between patients and healthy controls was properly considered. In this study, blood was isolated from 121 individuals divided into two groups as follows: 80 samples of diabetic patients and 41 samples from a healthy control. miRNA was isolated and transformed into cDNA, and the expression of mi122a was measured by qRT-PCR. The researchers looked at the relationship between age and gender and the occurrence of diabetes, as well as how they compared to controls. When comparing the mean gene expression level (Ct) of patient groups to the corresponding Ct means in the control group, th
... Show MoreBackground. Material tribology has widely expanded in scope and depth and is extended from the mechanical field to the biomedical field. The present study aimed to characterize the nanocoating of highly pure (99.9%) niobium (Nb), tantalum (Ta), and vanadium (V) deposited on 316L stainless steel (SS) substrates which considered the most widely used alloys in the manufacturing of SS orthodontic components. To date, the coating of SS orthodontic archwires with Nb, Ta, and V using a plasma sputtering method has never been reported. Nanodeposition was performed using a DC plasma sputtering system with three different sputtering times (1, 2, and 3 hours). Results. Structural and elemental analyses were conducted on the deposited coating
... Show MoreA skip list data structure is really just a simulation of a binary search tree. Skip lists algorithm are simpler, faster and use less space. this data structure conceptually uses parallel sorted linked lists. Searching in a skip list is more difficult than searching in a regular sorted linked list. Because a skip list is a two dimensional data structure, it is implemented using a two dimensional network of nodes with four pointers. the implementation of the search, insert and delete operation taking a time of upto . The skip list could be modified to implement the order statistic operations of RANKand SEARCH BY RANK while maintaining the same expected time. Keywords:skip list , parallel linked list , randomized algorithm , rank.