نتایج جستجو برای: trifolium incarnatum

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

2011
Yoko L. Dupont Christian Damgaard Vibeke Simonsen

BACKGROUND Flower visiting insects provide a vitally important pollination service for many crops and wild plants. Recent decline of pollinating insects due to anthropogenic modification of habitats and climate, in particular from 1950's onwards, is a major and widespread concern. However, few studies document the extent of declines in species diversity, and no studies have previously quantifie...

Amir Hoseein Khoshgoftarmanesh Mahmoud Kalbasi Majid Afyuni Mehran Hoodaji Shahrzad Kabirinejad,

Objective: Returning crop residue to the soil exerts favorable effects on physical and chemical properties of soil. In fact, the plant residues can affect soil conditions such as pH and important role in soil fertility and cycling of elements in the soil may have. In addition to the role of the organic matter from decomposition of crop residue in increasing the concentration of micronutrients i...

Amir Hoseein Khoshgoftarmanesh Mahmoud Kalbasi Majid Afyuni Mehran Hoodaji Shahrzad Kabirinejad,

Objective: Returning crop residue to the soil exerts favorable effects on physical and chemical properties of soil. In fact, the plant residues can affect soil conditions such as pH and important role in soil fertility and cycling of elements in the soil may have. In addition to the role of the organic matter from decomposition of crop residue in increasing the concentration of micronutrients i...

Journal: :American journal of botany 2008
Jelmer Weijschedé Koen Antonise Hannie de Caluwe Hans de Kroon Heidrun Huber

In stoloniferous species, the length of petioles is of pivotal importance because it determines the position of leaf blades within the canopy. From a mechanistic perspective, two developmental processes, cell division and cell elongation, are responsible for the length of a given petiole. This study aimed at quantifying the relative contributions of cell division and cell elongation to genotypi...

Journal: : 2022

Depolanmış ürünlerde sorun olan fungal hastalık etmenleri, hasat sonrası kaliteyi sınırlandıran önemli faktörlerden biridir. Hasat kurutulmalık biberler mikotoksin üreten patojenler tarafından çok sık enfekte olmaktadırlar. Aspergillus niger, Alternaria alternata ve Fusarium incarnatum, birçok bitkide öncesi dönemlerde hastalıklara neden potansiyel üretebilen etmenlerdir. Brassica spp. üretilen...

Journal: :Genetics 1956
K K Pandey

HE existence of several allelomorphs at the S locus has been demonstrated in T Nicotiana spp. (EAST and YARNELL 1929), Veronica syriaca (LEHMANN 1926), Antirrhinum glutinosum ( GRUBER 1932), Trifolium pfatense (WILLIAMS 1939; and WILLIAMS and WILLIAMS 1947), Oenothera organensis (EMERSON 1939, 1940) and Trifolium repens (ATWOOD 1944). In Trifolium pratense, BATEMAN (1947) calculated that the nu...

Journal: :Journal of nematology 1991
G L Windham G A Pederson

Ten cultivars and 13 germplasms of white clover (Trifolium repens) were evaluated in the greenhouse for resistance to the southern root-knot nematode, Meloidogyne incognita race 4. One hundred plants of each cultivar or germplasm were rated for percentage of the root system galled (PRSG) at 60 days after inoculation with root-knot nematode eggs. Tillman (9%) and SRVR (19%) had the highest perce...

Journal: :Annals of botany 2006
R H Ellis T D Hong

UNLABELLED BACKGROUND AND AIMS The negative logarithmic relationship between orthodox seed longevity and moisture content in hermetic storage is subject to a low-moisture-content limit (m(c)), but is m(c) affected by temperature? METHODS Red clover (Trifolium pratense) and alfalfa (Medicago sativa) seeds were stored hermetically at 12 moisture contents (2-15 %) and five temperatures (-20, 30,...

2012
RAMESHA C. SRINIVAS

Endophytic fungi found inside the plant tissue are endosymbionts, protecting their host from pests, pathogens, etc. Twenty eight endophytic fungi were isolated from different parts of Nerium oleander L., out of which, 54% of isolates were from flower, 39% from stem and 7% from leaf parts. Thirty six percent of the isolates showed antimicrobial activity against tested pathogens. The potential is...

Ali Tehranifar Navid Vahdati Seyed Hossein Neamati Yahya Selahvarzi

Trifolium spp. are native plants in Iran exhibiting good ground cover po-tential. Salinity is a major environmental stress and today, 20% of the world cultivated areas and nearly half of all irrigated lands are affected by salinity. The main aim of this research was to study morphological and physiological adaptations of these native species under different salinity levels for urban landscape u...

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

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

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