نتایج جستجو برای: single nucleotide polymorphisms snps

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

A. Ghorbani H. Moradi Shahr-e-babak M. Abbasi Firoozjaei S. Joezy-Shekalgorabi,

Acetyl-coenzyme A carboxylase α (ACC-alpha) is considered as the key regulatory enzyme in fatty acid biosynthesis. ACC-alpha gene is located on Caprine chromosome 11 and is polymorphic in many goat breeds. In the current study, we aimed to find possible single nucleotide polymorphisms (SNPs) in the exon 1 region of the ACC-alpha gene in Iranian Mahabadi goat breed. Genomic DNA was extracted fro...

Journal: :Immuno 2023

Differences in the baseline levels of serum cytokines or single-nucleotide polymorphisms (SNPs) cytokine genes may be useful to predict outcomes for patients being treated metastatic breast cancer. We have measured plasma and characterized individual SNPs IL-1RA, IL-1β, IL-2, IL-6 TNFα 130 with cancer high-dose chemotherapy. Patients were cyclophosphamide (Group 1, 74 patients) paclitaxel-conta...

Journal: :PeerJ 2021

The fall armyworm, Spodoptera frugiperda, is a polyphagous global pest with preference for gramineous crops such as corn, sorghum and pasture grasses. This species comprised of two morphologically identical but genetically distinct host strains known the corn rice strains, which can complicate management approaches. Two molecular markers are commonly used to differentiate between however, disco...

Journal: :Egyptian Journal of Medical Human Genetics 2021

Abstract Background 25-Hydroxyvitamin D (Vit.D) levels associated with cardiovascular disease (CVD) may vary according to genetic variants in the vitamin receptor (VDR) gene. However, existing results are not conclusive Egyptian population, where diabetes mellitus is a common CVD risk factor. The purpose of study was evaluate role VDR polymorphism patients by studying association rs2228570 ( Fo...

Journal: :Journal of the Hellenic Veterinary Medical Society 2023

The objective of this study was to investigate polymorphisms MASP2, TG5 and DQA1 genes using PCR-DNA sequencing in seventy Holstein, Brown Swiss dairy cows (35 each). Under complete aseptic condition, blood samples were collected from each animal into tubes containing disodium EDTA as an anticoagulant for DNA extraction. PCR carried out amplification 305-bp 545-bp TG5, 373-bp genes. assessment ...

2015

OBJECTIVES To identify genetic variants associated with neuroticism by performing a meta-analysis of genome-wide association results based on 1000 Genomes imputation; to evaluate whether common genetic variants as assessed by single-nucleotide polymorphisms (SNPs) explain variation in neuroticism by estimating SNP-based heritability; and to examine whether SNPs that predict neuroticism also pre...

Journal: :PLoS ONE 2008
Yumi Yamaguchi-Kabata Makoto K. Shimada Yosuke Hayakawa Shinsei Minoshima Ranajit Chakraborty Takashi Gojobori Tadashi Imanishi

BACKGROUND A great amount of data has been accumulated on genetic variations in the human genome, but we still do not know much about how the genetic variations affect gene function. In particular, little is known about the distribution of nonsense polymorphisms in human genes despite their drastic effects on gene products. METHODOLOGY/PRINCIPAL FINDINGS To detect polymorphisms affecting gene...

2017
Luis A. López-Flores Gloria Pérez-Rubio Alejandra Ramírez-Venegas Enrique Ambrocio-Ortiz Raúl H. Sansores Ramcés Falfán-Valencia

This article contains data on the single nucleotide polymorphisms (SNPs) rs1137115, rs1801272 and rs28399433 rs4105144 in CYP2A6 associated to smoking related variables in Mexican Mestizo smokers (Pérez-Rubio et al., 2017) [1]. These SNPs were selected due to previous associations with other populations. Mexican Mestizo smokers were classified according their smoking pattern. A genetic associat...

Journal: :Journal of clinical microbiology 2008
Yi Chen Stephen J Knabel

A fragment end ligation-mediated PCR strategy was used to analyze the AscI pulsed-field gel electrophoresis patterns of Listeria monocytogenes epidemic clone II (ECII), which led to the identification of single-nucleotide polymorphisms (SNPs) in prophage regions that differentiated the two ECII outbreak clones. SNPs in prophages that differentiated the outbreak clones of ECIII and -IV were also...

2013
Buffy Stahl Rodolphe Barrangou

We present the 1,991,830-bp complete genome sequence of Lactobacillus acidophilus strain La-14 (SD-5212). Comparative genomic analysis revealed 99.98% similarity overall to the L. acidophilus NCFM genome. Globally, 111 single nucleotide polymorphisms (SNPs) (95 SNPs, 16 indels) were observed throughout the genome. Also, a 416-bp deletion in the LA14_1146 sugar ABC transporter was identified.

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

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

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"; } -->