نتایج جستجو برای: cyp2c9

تعداد نتایج: 1925  

Journal: :Antimicrobial agents and chemotherapy 2006
Marcus J P Geist Gerlinde Egerer Jürgen Burhenne Gerd Mikus

Voriconazole, a broad-spectrum triazole antifungal agent, is well absorbed, with a high oral bioavailability of 96% (6). Maximal plasma concentrations are observed 1 to 2 h after drug administration. The volume of distribution is estimated to be 4.6 liters/kg, and the plasma protein binding is 58%. A terminal elimination half-life (t1/2) of 8 h in CYP2C19 extensive metabolizers (EMs) and a t1/2...

Journal: :The Journal of the Association of Physicians of India 2008
Linda Jose Chacko Binila S J Chandy J E Mathews K P Mathews

This case report describes a rare interaction between therapeutic doses of phenytoin and acenocoumarol resulting in both acute phenytoin toxicity and increased international normalized ratio (INR). Interactions between these drugs are due to the pharmacokinetics and the common metabolising pathway by hepatic cytochrome P450 isoenzyme-CYP2C9. Our patient was detected to be homozygous for CYP2C9*...

2007
Eric F. Johnson

CYP2C9 is one of the major drug-metabolizing enzymes, and it is involved in the oxidative metabolism of approximately 10% of clinically important drugs, among which some, such as the anticoagulant warfarin, have a narrow therapeutic index. The human CYP2C9 gene is highly polymorphic. We found a new sequence variation in exon 7 of the CYP2C9 gene (1060G>A) resulting in a substitution of acidic a...

Journal: :Drug metabolism and disposition: the biological fate of chemicals 2006
Vikas Kumar Dan A Rock Chad J Warren Timothy S Tracy Jan L Wahlstrom

When choosing a recombinant cytochrome P450 (P450) enzyme system for in vitro studies, it is critical to understand the strengths, limitations, and applicability of the enzyme system to the study design. Although literature kinetic data may be available to assist in enzyme system selection, comparison of data from separate laboratories is often confounded by differences in experimental conditio...

2015
Silvia Vogl Roman W. Lutz Gilbert Schönfelder Werner K. Lutz

Currently, genotyping of patients for polymorphic enzymes responsible for metabolic elimination is considered a possibility to adjust drug dose levels. For a patient to profit from this procedure, the interindividual differences in drug metabolism within one genotype should be smaller than those between different genotypes. We studied a large cohort of healthy young adults (283 subjects), corre...

Journal: :The New England journal of medicine 2008
Ute I Schwarz Marylyn D Ritchie Yuki Bradford Chun Li Scott M Dudek Amy Frye-Anderson Richard B Kim Dan M Roden C Michael Stein

BACKGROUND Genetic variants of the enzyme that metabolizes warfarin, cytochrome P-450 2C9 (CYP2C9), and of a key pharmacologic target of warfarin, vitamin K epoxide reductase (VKORC1), contribute to differences in patients' responses to various warfarin doses, but the role of these variants during initial anticoagulation is not clear. METHODS In 297 patients starting warfarin therapy, we asse...

Journal: :The Journal of pharmacology and experimental therapeutics 1998
D M Gentile C H Verhoeven T Shimada D J Back

Desogestrel is a 3-deoxo progestogenic steroid that requires bioactivation to 3-ketodesogestrel. In these studies we have attempted to define the pathway of 3-ketodesogestrel formation and characterise the enzymes responsible for this biotransformation in vitro. Initial studies using deuterated desogestrel confirmed that desogestrel is metabolised by human liver microsomes via 3alpha-hydroxy an...

2005
Soo-Youn Lee June Soo Kim Jong-Won Kim

We report a case of intolerance to warfarin dosing due to impaired drug metabolism in a patient heterozygous for the CYP2C9*3 allele. A 30-year-old woman with an artificial cardiac pacemaker was taking warfarin to prevent thromboembolism. This patient had an extremely elevated international normalized ratio (INR) of prothrombin time (PT) following standard doses of warfarin and experienced diff...

Journal: :Basic & clinical pharmacology & toxicology 2009
Eugen Muschler Jawahar Lal Alexander Jetter Anke Rattay Ulrich Zanger Gregor Zadoyan Uwe Fuhr Julia Kirchheiner

The cytochrome P450 enzyme CYP2C8 appears to have a major role in pioglitazone metabolism. The present study was conducted to further clarify the role of individual CYPs and of the CYP2C8/9 polymorphisms in the primary metabolism of pioglitazone in vitro. Pioglitazone (2-400 microM) was incubated with isolated cytochrome P450 enzymes or human liver microsomes, some of them carrying either the C...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->