9 resultados para Biomedical databases
Resumo:
Thesis submitted in the fulfillment of the requirements for the Degree of Master in Biomedical Engineering
Resumo:
Dissertação para obtenção do Grau de Mestre em Engenharia Electrotécnica e de Computadores
Resumo:
Dissertação para obtenção do Grau de Mestre em Engenharia Biomédica
Resumo:
Dissertation submitted in the fufillment of the requirements for the Degree of Master in Biomedical Engineering
Resumo:
Dissertation presented to Faculdade de Ciências e Tecnologia, Universidade Nova de Lisboa for obtaining the master degree in Membrane Engineering
Resumo:
Dissertação para obtenção do Grau de Mestre em Engenharia Informática
Resumo:
Deep-eutectic solvents (DES) are considered novel renewable and biodegradable solvents, with a cheap and easy synthesis, without waste production. Later it was discovered a new subclass of DES that even can be biocompatible, since their synthesis uses primary metabolites such as amino acids, organic acids and sugars, from organisms. This subclass was named natural deep-eutectic solvents (NADES). Due to their properties it was tried to study the interaction between these solvents and biopolymers, in order to produce functionalized fibers for biomedical applications. In this way, fibers were produced by using the electrospinning technique. However, it was first necessary to study some physical properties of NADES, as well as the influence of water in their properties. It has been concluded that the water has a high influence on NADES properties, which can be seen on the results obtained from the rheology and viscosity studies. The fluid dynamics had changed, as well as the viscosity. Afterwards, it was tested the viability of using a starch blend. First it was tested the dissolution of these biopolymers into NADES, in order to study the viability of their application in electrospinning. However the results obtained were not satisfactory, since the starch polymers studied did not presented any dissolution in any NADES, or even in organic solvents. In this way it was changed the approach, and it was used other biocompatible polymers. Poly(ethylene oxide), poly(vinyl alcohol) and gelatin were the others biopolymers tested for the electrospinning, with NADES. All polymers show good results, since it was possible to obtain fibers. However for gelatin it was used only eutectic mixtures, containing active pharmaceutical ingredients (API’s), instead of NADES. For this case it was used mandelic acid (antimicrobial properties), choline chloride, ibuprofen (anti-inflammatory properties) and menthol (analgesic properties). The polymers and the produced fibers were characterized by scanning electron microscope (SEM), Transmission electron microscopy (TEM) and Fourier transform infrared spectroscopy (FTIR). With the help of these techniques it was possible to conclude that it was possible to encapsulate NADES within the fibers. Rheology it was also study for poly(ethylene oxide) and poly(vinyl alcohol), in a way to understand the influence of polymer concentration, on the electrospinning technique. For the gelatin, among the characterization techniques, it was also performed cytotoxicity and drug release studies. The gelatin membranes did not show any toxicity for the cells, since their viability was maintained. Regarding the controlled release profile experiment no conclusion could be drawn from the experiments, due to the rapid and complete dissolution of the gelatin in the buffer solution. However it was possible to quantify the mixture of choline chloride with mandelic acid, allowing thus to complete, and confirm, the information already obtained for the others characterization technique.
Resumo:
Polymeric nanoparticles (PNPs) have attracted considerable interest over the last few years due to their unique properties and behaviors provided by their small size. Such materials could be used in a wide range of applications such as diagnostics and drug delivery. Advantages of PNPs include controlled release, protection of drug molecules and its specific targeting, with concomitant increasing of the therapeutic index. In this work, novel sucrose and cholic acid based PNPs were prepared from different polymers, namely polyethylene glycol (PEG), poly(D,L-lactic-co-glycolic acid) (PLGA) and PLGA-co-PEG copolymer. In these PNP carriers, cholic acid will act as a drug incorporation site and the carbohydrate as targeting moiety. The uptake of nanoparticles into cells usually involves endocytotic processes, which depend primarily on their size and surface characteristics. These properties can be tuned by the nanoparticle preparation method. Therefore, the nanoprecipitation and the emulsion-solvent evaporation method were applied to prepare the PNPs. The influence of various parameters, such as concentration of the starting solution, evaporation method and solvent properties on the nanoparticle size, size distribution and morphology were studied. The PNPs were characterized by using atomic force microscopy (AFM), scanning electron microscopy (SEM) and dynamic light scattering (DLS) to assess their size distribution and morphology. The PNPs obtained by nanoprecipitation ranged in size between 90 nm and 130 nm with a very low polydispersity index (PDI < 0.3). On the other hand, the PNPs produced by the emulsion-solvent evaporation method revealed particle sizes around 300 nm with a high PDI value. More detailed information was found in AFM and SEM images, which demonstrated that all these PNPs were regularly spherical. ζ-potential measurements were satisfactory and evidenced the importance of sucrose moiety on the polymeric system, which was responsible for the obtained negative surface charge, providing colloidal stability. The results of this study show that sucrose and cholic acid based polymeric conjugates can be successfully used to prepare PNPs with tunable physicochemical characteristics. In addition, it provides novel information about the materials used and the methods applied. It is hoped that this work will be useful for the development of novel carbohydrate based nanoparticles for biomedical applications, specifically for targeted drug delivery.
Resumo:
Current computer systems have evolved from featuring only a single processing unit and limited RAM, in the order of kilobytes or few megabytes, to include several multicore processors, o↵ering in the order of several tens of concurrent execution contexts, and have main memory in the order of several tens to hundreds of gigabytes. This allows to keep all data of many applications in the main memory, leading to the development of inmemory databases. Compared to disk-backed databases, in-memory databases (IMDBs) are expected to provide better performance by incurring in less I/O overhead. In this dissertation, we present a scalability study of two general purpose IMDBs on multicore systems. The results show that current general purpose IMDBs do not scale on multicores, due to contention among threads running concurrent transactions. In this work, we explore di↵erent direction to overcome the scalability issues of IMDBs in multicores, while enforcing strong isolation semantics. First, we present a solution that requires no modification to either database systems or to the applications, called MacroDB. MacroDB replicates the database among several engines, using a master-slave replication scheme, where update transactions execute on the master, while read-only transactions execute on slaves. This reduces contention, allowing MacroDB to o↵er scalable performance under read-only workloads, while updateintensive workloads su↵er from performance loss, when compared to the standalone engine. Second, we delve into the database engine and identify the concurrency control mechanism used by the storage sub-component as a scalability bottleneck. We then propose a new locking scheme that allows the removal of such mechanisms from the storage sub-component. This modification o↵ers performance improvement under all workloads, when compared to the standalone engine, while scalability is limited to read-only workloads. Next we addressed the scalability limitations for update-intensive workloads, and propose the reduction of locking granularity from the table level to the attribute level. This further improved performance for intensive and moderate update workloads, at a slight cost for read-only workloads. Scalability is limited to intensive-read and read-only workloads. Finally, we investigate the impact applications have on the performance of database systems, by studying how operation order inside transactions influences the database performance. We then propose a Read before Write (RbW) interaction pattern, under which transaction perform all read operations before executing write operations. The RbW pattern allowed TPC-C to achieve scalable performance on our modified engine for all workloads. Additionally, the RbW pattern allowed our modified engine to achieve scalable performance on multicores, almost up to the total number of cores, while enforcing strong isolation.