نتایج جستجو برای: transient gus expression

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

Journal: :Plant physiology 2000
S Haran S Logendra M Seskar M Bratanova I Raskin

The expression and secretion of acid phosphatase (APase) was investigated in Indian mustard (Brassica juncea L. Czern.) plants using sensitive in vitro and activity gel assays. Phosphorus (P) starvation induced two APases in Indian mustard roots, only one of which was secreted. Northern-blot analysis indicated transcriptional regulation of APase expression. Polymerase chain reaction and Souther...

Journal: :The Plant cell 1993
N Terryn M B Arias G Engler C Tiré R Villarroel M Van Montagu D Inzé

The rha1 gene from Arabidopsis encodes a small GTP binding protein belonging to the Ypt/Rab family. Transgenic Arabidopsis plants containing the promoter region of the rha1 gene fused to the beta-glucuronidase (gus) reporter gene revealed gus expression limited mainly to the guard cells of stomata, the stipules, and the root tip of young plants. In flowering plants, expression was found predomi...

Journal: :Computer and Information Science 2009
Idawaty Ahmad Muhammad Fauzan Othman

In this paper, we proposed two recovery solutions over the existing error-free utility accrual scheduling algorithm known as General Utility Accrual Scheduling algorithm (or GUS) (Peng Li, 2004). A robust fault recovery algorithm called Backward Recovery GUS (or BRGUS) works by adapting the time redundancy model i.e., by re-executing the affected task after its transient error period is over. T...

Journal: :Journal of experimental botany 2005
Roni Aloni Markus Langhans Erez Aloni Ellen Dreieicher Cornelia I Ullrich

To clarify how root-synthesized cytokinins (CKs) are transported to young shoot organs, CK distribution patterns were analysed in free-CK-responsive ARR5::GUS transformants of Arabidopsis thaliana (L.) Heynh. together with free plus bound CKs using specific CK monoclonal antibodies. Plants were subjected to two different growth conditions, completely protected from any air movement, or exposed ...

Journal: :Journal of Experimental Botany 2008
Le Qing Qu Yan Ping Xing Wen Xian Liu Xiu Ping Xu Yan Ru Song

The shortage of strong endosperm-specific expression promoters for driving the expression of recombinant protein genes in cereal endosperm is a major limitation in obtaining the required level and pattern of expression. Six promoters of seed storage glutelin genes (GluA-1, GluA-2, GluA-3, GluB-3, GluB-5, and GluC) were isolated from rice (Oryza sativa L.) genomic DNA by PCR. Their spatial and t...

2008
Kathryn Kamo

Transgene expression was evaluated for Gladiolus plants transformed with either the CaMV 35S, double CaMV 35S, rolD, or Arabidopsis UBQ3 promoter controlling the uidA or bean yellow mosaic virus coat protein gene in either the sense or antisense orientation to determine differences in expression for plants grown in the greenhouse and outdoors for two years. There wasmore variability in GUS expr...

Journal: :The Plant cell 2003
Ludmila Mlynárová Andrea Hricová Annelies Loonen Jan-Peter Nap

We present isogenic transgenic tobacco lines that carry at a given chromosomal position a beta-glucuronidase (GUS) reporter gene either with or without the presence of the matrix-associated region known as the chicken lysozyme A element. Plants were generated with the Cre-lox site-specific recombination system using heterospecific lox sites. Analysis of GUS gene expression in plant populations ...

SFL1 and SFl2 (SETH Four Like) genes are two members of SETH4 gene family in Arabidopsis thaliana expressed in saprophytic tissues. In this study, expression of SFL1 and SFL2 genes were studied using Gateway Cloning Technology. Primers were designed for PCR amplification of promoter region of SFL1 (900 bp) and SFL2 (930 bp) genes having attB1 recombination sites using Kod Hi Fi DNA polymerase e...

Journal: :Journal of Experimental Botany 2009
Kim E. Nolan Sergey Kurdyukov Ray J. Rose

SOMATIC EMBRYOGENESIS RECEPTOR-LIKE KINASE (SERK) genes have been demonstrated to play a role in somatic embryogenesis in several plant species. As more is learnt about these genes, the view of their role in plant development has broadened. The Medicago truncatula MtSERK1 gene has been associated with somatic embryogenesis and in vitro root formation. In order to study the role of MtSERK1 in de...

2011
Akio OHYAMA Koji TANASE Keita SUWABE Miyuki KUNIHISA Tsukasa NUNOME Hiroyuki FUKUOKA

We isolated the 5’ upstream promoter regions of the fruit-type sucrose synthase (SS) gene from tomato and Japanese pear by inverse PCR. The 5’ region of the tomato SS gene (TOMSSF) contained an intron approximately 1.6 kbp long in the 5’untranslated region, whereas the equivalent 5’ region in the Japanese pear SS gene (PypSUS1) had no intron. Each region was fused to the β-glucuronidase (GUS) g...

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

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

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