نتایج جستجو برای: rostrum length 2368

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

2017
Tomoko Sakai Akichika Mikami Juri Suzuki Takako Miyabe-Nishiwaki Mie Matsui Masaki Tomonaga Yuzuru Hamada Tetsuro Matsuzawa Hideyuki Okano Kenichi Oishi

How brains develop during early life is one of the most important topics in neuroscience because it underpins the neuronal functions that mature during this period. A comparison of the neurodevelopmental patterns among humans and nonhuman primates is essential to infer evolutional changes in neuroanatomy that account for higher-order brain functions, especially those specific to humans. The cor...

Journal: :Zoological Journal of the Linnean Society 2023

Abstract Skull shape analysis provides useful information on wildlife ecology and potential local adaptations. Common bottlenose dolphins (Tursiops truncatus) often differentiate between coastal offshore populations worldwide, skull analyses can be particularly in this context. Here we quantify variation from the Gulf of Guayaquil (Ecuador) Mediterranean Sea, compared to specimens multiple ocea...

Journal: :Frontiers in Ecology and Evolution 2023

Lower termites harbor diverse consortia of symbiotic gut flagellates. Despite numerous evidence for co-cladogenesis, the evolutionary history these associations remains unclear. Here, we present Retractinymphidae fam. nov., a monogeneric lineage Trichonymphida from Serritermitidae. Although Retractinympha glossotermitis gen. nov. sp. morphologically resembles members genus Pseudotrichonympha , ...

Journal: :Zootaxa 2014
Marcos Tavares Gary C B Poore

A new species of spider crab, Naxia atlantica n. sp., is described and illustrated from deep waters off São Paulo (southeastern Brazil). The new species can be separated from its congeners by a suite of characters including shapes of the propodi of the walking legs, rostrum and basal antennal article. This is the first record of the genus outside southern Australia and New Zealand. 

2010
Danièle Guinot

A new species of parthenopid crab, Pseudolambrus guinotae n. sp., is described. The single male specimen, which was collected from New Caledonia, most closely resembles Pseudolambrus planus (Rathbun, 1911) but can be easily differentiated from the latter by possessing a much longer rostrum.

Journal: :The Journal of allergy and clinical immunology 2010
James L Sublett James Seltzer Robert Burkhead P Brock Williams H James Wedner Wanda Phipatanakul

The allergist is generally recognized as possessing the greatest expertise in relating airborne contaminants to respiratory health, both atopic and nonatopic. Consequently, allergists are most often asked for their professional opinions regarding the appropriate use of air-cleaning equipment. This rostrum serves as a resource for the allergist and other health care professionals seeking a bette...

Journal: :Physical review letters 2000
P E Greenwood L M Ward D F Russell A Neiman F Moss

Recent behavior experiments have demonstrated that paddlefish can make use of stochastic resonance while feeding on Daphnia plankton. Here we calculate the information content of the noisy Daphnia signal at the paddlefish rostrum using an exact statistical treatment of threshold stochastic resonance as a minimal neural model. These calculations compare well with experimentally obtained data on ...

2013
Philip G. Cox Joanna Kirkham Anthony Herrel

The Laotian rock rat, Laonastes aenigmamus, is one of the most recently discovered species of rodent, and displays a cranial morphology that is highly specialised. The rostrum of L. aenigmamus is exceptionally elongate and bears a large attachment site for the infraorbital portion of the zygomaticomandibularis muscle (IOZM), which is particularly well-developed in this species. In this study, w...

2013
Martin Košťák John W. M. Jagt Robert P. Speijer Peter Stassen Etienne Steurbaut

New coleoid cephalopods, assignable to the order Sepiida, are recorded from the Selandian/Thanetian boundary interval (Middle to Upper Paleocene transition, c. 59.2 Ma) along the southeastern margin (Toshka Lakes) of the Western Desert in Egypt. The two genera recognised, Aegyptosaepia n. gen. and ?Anomalosaepia Weaver and Ciampaglio, are placed in the families Belosaepiidae and ?Anomalosaepiid...

2014
Syuhaidah Sahabudin

Seafood allergy seems to be increasing in Asia as well as worldwide. Characterization of seafood allergens is important in order to understand the immune response to these allergens. To date, several prawn allergens have been identified including tropomyosin, arginine kinase, sarcoplasmic calcium-binding protein (SCP) and myosin light-chain (MLC). Objective: The aim of this study was to identif...

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

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

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