Semliki Forest Virus (SFV), a member of the Alphavirus genus in the Togaviridae family, is a small-enveloped, positive-sense single-stranded RNA (+ssRNA) virus. The virus is spread by mosquitos and can infect humans, resulting in mild febrile disease with symptoms that include fever, myalgia, arthralgia, persistent headaches and asthenia. Virulent strains of SFV in mice cause lethal encephalitis by infecting neurons in the central nervous system. In on-going experiments in the research group using a focused siRNA screen we have investigated the role of deubiquitylases (DUBs) during SFV infection (as a model alphavirus) and monitored the effect of DUB depletion on cell viability after infection. We identified a group of DUBs that have a pro-viral effect. The DUB, USP5, from this screen was validated to determine its effect upon viral replication. Here, we show that depleted USP5 in HeLa cells resulted in SFV RNA and viral yield at 8 h post-infection being significantly reduced. In the multi-step viral growth curve assay, in the absence of USP5, similar yields of SFV were determined at 2 and 4 h post-infection. However, a significant reduction in the infectious viral particles release at 6, 8, 10 and 12 h post-infection was observed and this could be reversed by direct constraining viral replication. These results raise the potential for USP5 to play a distinct role in the replication of SFV, suggesting that USP5 may be a possible anti-viral therapy for alphavirus infection.
This paper identifies and describes the textual densities of ideational metaphors through the application of GM theory (Halliday, 1994) to the textual analysis of two twentieth century English short stories: one American (The Mansion (1910-11), by Henry Jackson van Dyke Jr.), and one British (Home (1951), by William Somerset Maugham). One aim is to get at textually verifiable statistical evidence that attests to the observed dominance of GM nominalization in academic and scientific texts, rather than to fiction (e.g. Halliday and Martin (1993). Another aim is to explore any significant differentiation in GM’s us by the two short- story writers. The research has been carried out by identifying, describing, and statistically analysi
... Show More
For over a century, the global consumption of asphalt binder in asphalt mixture production has been substantial. In the Heet region (west of Iraq), two distinct forms of natural asphalt (NA) deposits exist: rock asphalt and sulfur spring asphalt. This study focused on using NA sourced from sulfur springs. The aim was to investigate the potential of incorporating NA into local asphalt mixtures. To achieve this, NA was heated to 163°C for varying durations. After heat treatment, laboratory tests were conducted on NA. The findings suggest that by heating NA for 20 hours, it conforms to Iraqi specifications in terms of physical properties. Furthermore, compared to conventional petroleum asphalt, treated NA showed greater
... Show MoreWater Quality Index (WQI) as a tool to assess the water quality status provides advice related to the use of water quality monitoring data and it is a way for combining the complex water quality data into a single value or single statement.The present study was conducted on Al- Hilla river in the middle of Iraq from August 2012 to July 2013 at five selected stations in the river, from Al- Musaib city to Al- Hashimya at the south of Hilla to determine its suitability for aquatic environment (GWQI), drinking water (PWSI) and irrigation (IWQI).This index offers a useful representation of the overall quality of water for public or any intended use as well as indicating pollution, water quality management, and decision making. According to th
... Show MoreAbstract
This research aims to identify the role of Psychological Capital (PsyCap) in the Spirituality at the Workplace (SAW) for a sample of the teaching staff of the four Colleges of the University of Kufa reached (200) out of (470) teaching, and to achieve the objective of this research and through access to research and studies of foreign adopted researchers standards scales of research variables, since it relied on the model (Luthans, Youssef, et al., 2007) to represent the components of Psychological Capital (self-efficacy, and hope, and optimism, and resilience), and given the attention organizations in the human element because of it
... Show MoreThermal properties of soils are important in buried structures contact problems. Although laboratory is distinctly advantageous in measuring the thermal conductivity of soil under ideal condition, given the ability to simulate relatively large-scale in place of soil bed, the field thermal conductivity of soil is not yet commonly used in many types of research. The use of only a laboratory experiment to estimate thermal conductivity may be the key reason for overestimation or underestimation it. In this paper, an intensive site investigation including field thermal conductivity tests for six different subsoil strata were performed using a thermal probe method (TLS-100) to systematically understanding the effects of field dry density, water c
... Show MoreZernike Moments has been popularly used in many shape-based image retrieval studies due to its powerful shape representation. However its strength and weaknesses have not been clearly highlighted in the previous studies. Thus, its powerful shape representation could not be fully utilized. In this paper, a method to fully capture the shape representation properties of Zernike Moments is implemented and tested on a single object for binary and grey level images. The proposed method works by determining the boundary of the shape object and then resizing the object shape to the boundary of the image. Three case studies were made. Case 1 is the Zernike Moments implementation on the original shape object image. In Case 2, the centroid of the s
... 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.