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

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

Journal: :Physiological research 2011
Y B Manteifel E I Kiseleva

In laboratory experiments, conspecific excretions and ammonia solutions evoked avoidance reactions in tadpoles of three anuran species, Bufo bufo, Rana temporaria, and Rana arvalis. A differential sensitivity of ammonia chemoreception was determined for two anuran species. For Bufo bufo tadpoles, these characteristics at ammonia background concentration of 0.2 mg/l lied in the range 150 % < dI/...

Journal: :Journal of environmental biology 2009
Rafael C Lajmanovich Andres M Attademo Paola M Peltzer Celina M Junges

We determined the levels of brain acetylcholinesterase (AChE) and tail butyrylcholinesterase (BChE) activities in tadpoles of Odontophrynus americanus exposed to a commercial formulation of fenitrothion. The mean brain AChE activities in the controls tadpoles varied from 6.91 to 6.39 micromol min(-1) mg(-1) protein, whereas tail BChE activities ranged among 0.26 to 0.17 micromol min(-1) mg(-1) ...

1996
Y. Arakane H. Itoyama H. Kunitomo

Nonvanishing tadpoles and possible infinities associated in the multiparticle amplitudes are discussed with regard to the disk and RP 2 diagrams of the Type I ′ compactification. We find that the infinity cancellation of SO(32) type I theory extends to this case as well despite the presence of tadpoles localized in the D-brane worldvolume and the orientifold surfaces. Formalism of string S-matr...

Journal: :General and comparative endocrinology 1969
P S Brown B E Frye

Mammalian prolactin at doses of l-50 pg/day promoted growth (increased wet weight, dry weight and body length) in Rana pipiens tadpoles. Mammalian growth hormone (GH) promoted growth only at the higher doses (50 pg/day and above) and was not so effective as prolactin. Prolactin also inhibited metamorphosis (at doses of 5 pg/day and above). Inhibition of metamorphosis did not appear to be due to...

2007
RONALD ALTIG MATT R. WHILES CINDY L. TAYLOR

1. Understanding the trophic status of consumers in freshwater habitats is central to understanding their ecological roles and significance. Tadpoles are a diverse and abundant component of many freshwater habitats, yet we know relatively little about their feeding ecology and true trophic status compared with many other consumer groups. While many tadpole species are labelled herbivores or det...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1973
J Haimovich L Du Pasquier

Tadpoles of Rana catesbiana, possessing about two million lymphocytes, were immunized with 2,4-dinitrophenyl- and 2,4,6-trinitrophenyl-conjugated bacteria and proteins, and the antibodies produced were studied by inactivation of dinitrophenyl- and trinitrophenyl-conjugated bacteriophages. Crossreactions were determined by inhibition of inactivation of modified phages with the lysine derivatives...

1999
SARAH J. KUPFERBERG

I studied the invasion of Rana catesbeiana (the bullfrog) into a northern California river system where bullfrogs are not native. Native yellow-legged frogs, Rana boylii, a species of special concern, were almost an order of magnitude less abundant in reaches where bullfrogs were well established. I assessed the potential role of larval competition in contributing to this displacement in a seri...

Journal: :The Journal of parasitology 2003
Matthew G Bolek John Janovy Armando R Irizarry-Rovira

Two hundred and twenty-four anurans of 6 species (47 adults and 16 tadpoles of Rana blairi, 35 R. catesbeiana, 31 Hyla chrysoscelis, 30 adults and 46 tadpoles of Pseudacris triseriata triseriata, 11 Bufo woodhousii, and 8 Acris crepitans) from Pawnee Lake, Lancaster County, Nebraska, were surveyed for coccidian parasites during March 2001 to May 2002. Of these, 23 of 30 (77%) adults and 4 of 46...

Journal: :ZooKeys 2021

Little is known about the life history, ecology, and distribution of genus Allopaa (Dicroglossidae) far less recent data are available larvae this taxon. Here, we provide on larval stage hazarensis (Dubois &amp;amp; Khan, 1979) from northern Pakistan based examination three tadpoles. Specimens were obtained two sites in Buner, Khyber Pakhtunkhwa province, Pakistan. Morphological genetic analysi...

Journal: :Diversity 2022

Microplastics (MPs) pollution is arousing growing attention, yet knowledge about its occurrence in amphibians scant to date. With this study, we aimed determine whether plastic (&gt;5000 ?m) and MPs (10–5000 could be detected adult Rana temporaria from a high-mountain ecosystem (the Cottian Alps, northwest Italy). To do this, aquatic compartments the digestive tract of R. were analyzed. Water, ...

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

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

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