نتایج جستجو برای: animal anatomy

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

Journal: :Italian journal of anatomy and embryology = Archivio italiano di anatomia ed embriologia 2012
Abdulhakeem H Eljarah Mohd B Al-Zghoul Khaleel Jawasreh Zuhair A Bani Ismail Mustafa M Ababneh Ashraf N Elhalah Maen M Alsumadi

Female reproductive anatomy of the Arabian oryx is unknown. In this study, reproductive tracts of seven female Arabian oryx (aged 2 to 7 years) were examined to characterize their reproductive anatomy. Observations and measurements were obtained in situ from dead animals during necropsy. Animals were allocated into two groups: cycling (n = 3; follicles or corpora lutea present) and not-cycling ...

Journal: :Anatomical sciences education 2014
Athanasios Raikos Pasan Waidyasekara

Nowadays more and more modern medical degree programs focus on self-directed and problem-based learning. That requires students to search for high quality and easy to retrieve online resources. YouTube is an emerging platform for learning human anatomy due to easy access and being a free service. The purpose of this study is to make a quantitative and qualitative analysis of the available human...

2015
Stephen J Divers

Chelonians remain one of the most popular types of reptiles kept in captivity, whether it be as a companion animal or a zoo/wildlife exhibit. Their characteristic shell can be a hindrance to veterinary evaluation and medical/surgical intervention. This masterclass focuses on the veterinary approach to these interesting animals and includes an introduction to the species, relevant anatomy and ph...

2016
Anita T. Mohan Marissa Suchyta Basel Sharaf Karim Bakri Saad Alsubaie Gregory Michalak Samir Mardini

INTRODUCTION: A large animal model for composite face transplantation is necessary to better understand the immunologic processes and nerve regeneration. Current porcine models of facial transplantation fail to include all major branches of the facial nerve, and have not demonstrated long-term survival.1,2 A better understanding and detailed evaluation of vascular anatomy and microvascular terr...

Journal: :The Journal of investigative dermatology 2010
Spiro Getsios Jens Waschke Luca Borradori Michael Hertl Eliane J Müller

1764 Journal of Investigative Dermatology (2010), Volume 130 © 2010 The Society for Investigative Dermatology 1Department of Dermatology, Northwestern University Feinberg School of Medicine, Chicago, Illinois, USA; 2Institute for Anatomy and Cell Biology, University of Würzburg, Würzburg, Germany; 3Department of Dermatology, University Hospital Berne, Berne, Switzerland; 4Department of Dermatol...

Journal: :Applied optics 2009
Jan Laufer Edward Zhang Gennadij Raivich Paul Beard

The application of a novel photoacoustic imaging instrument based on a Fabry-Perot polymer film sensing interferometer to imaging the small animal brain is described. This approach provides a convenient backward mode sensing configuration that offers the prospect of overcoming the limitations of existing piezoelectric based detection schemes for small animal brain imaging. Noninvasive images of...

2017
Emmeli Mikkelsen Henrik Lauridsen Per Mose Nielsen Haiyun Qi Thomas Nørlinger Maria Dahl Andersen Niels Uldbjerg Christoffer Laustsen Puk Sandager Michael Pedersen

Several parameters are important when choosing the most appropriate animal to model human obstetrics, including gestation period, number of fetuses per gestation and placental structure. The domesticated long-tailed chinchilla (Chinchilla lanigera) is a well-suited and appropriate animal model of pregnancy that often will carry only one offspring and has a long gestation period of 105-115 days....

2005
J. A. Daniel T. H. Elsasser A. Martı́nez B. Steele B. K. Whitlock J. L. Sartin

J. A. Daniel, T. H. Elsasser, A. Martı́nez, B. Steele, B. K. Whitlock, and J. L. Sartin Animal and Range Sciences, South Dakota State University, Brookings, South Dakota; United States Department of Agriculture-Agricultural Research Service Growth Biology Laboratory, Beltsville; Cell and Cancer Biology Branch, National Cancer Institute, National Institutes of Health, Bethesda, Maryland; and Depa...

2014
Sang-Im Yun Byung-Hak Song Jin-Kyoung Kim Eun-Young Lee Richard J. Kuhn Michael G. Rossmann John D. Morrey Young-Min Lee

1 Department of Animal, Dairy, and Veterinary Sciences; Utah Science Technology and Research, College of Agriculture and Applied Sciences, Utah State University, Logan, Utah, United States of America, 2 Department of Microbiology, College of Medicine, Chungbuk National University, Cheongju, Republic of Korea, 3 Department of Anatomy, College of Medicine, Chungbuk National University, Cheongju, ...

Journal: :Current Biology 2009
Gábor Horváth Adelinda Csapó Annamária Nyeste Balázs Gerics Gábor Csorba György Kriska

Acknowledgements This work is partly based on the diploma work of Adelinda Csapó (entitled Biomechanical Analysis of Quadruped Walking Depictions, with Emphasis on Natural History Museums and Animal Anatomy Books. Eötvös University, Physical Institute, Department of Biological Physics, Budapest, 2007, in Hungarian). We thank Eleonóra Szűcs of the Hungarian Natural History Museum for picturing m...

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

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

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