نتایج جستجو برای: crassostrea sp

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

2017
Zhaoqun Liu Zhi Zhou Qiufen Jiang Lingling Wang Qilin Yi Limei Qiu Linsheng Song

The neuroendocrine-immune (NEI) regulatory network is a complex system, which plays an indispensable role in the immunity of host. In this study, a neuroendocrine immunomodulatory axis (NIA)-like pathway mediated by the nervous system and haemocytes was characterized in the oyster Crassostrea gigas Once invaded pathogen was recognized by the host, the nervous system would temporally release neu...

Journal: :Journal of invertebrate pathology 2016
Amélie Segarra Laury Baillon Nicole Faury Delphine Tourbiez Tristan Renault

High mortality rates are reported in spat and larvae of Pacific oyster Crassostrea gigas and associated with ostreid herpesvirus 1 (OsHV-1) detection in France. Although the viral infection has been experimentally reproduced in oyster larvae and spat, little knowledge is currently available concerning the viral entry and its distribution in organs and tissues. This study compares OsHV-1 DNA and...

Journal: :FEMS microbiology ecology 2014
Natalia Trabal Fernández José M Mazón-Suástegui Ricardo Vázquez-Juárez Felipe Ascencio-Valle Jaime Romero

The resident microbiota of three oyster species (Crassostrea corteziensis, Crassostrea gigas and Crassostrea sikamea) was characterised using a high-throughput sequencing approach (pyrosequencing) that was based on the V3-V5 regions of the 16S rRNA gene. We analysed the changes in the bacterial community beginning with the postlarvae produced in a hatchery, which were later planted at two grow-...

Journal: :The Biological bulletin 2002
S Lapègue I Boutet A Leitão S Heurtebise P Garcia C Thiriot-Quiévreux P Boudry

Three species of mangrove oysters, Crassostrea rhizophorae, C. brasiliana, and C. gasar, have been described along the Atlantic shores of South America and Africa. Because the distribution of these molluscs is of great biological and commercial interest, their taxonomy and distribution deserve further clarification. Therefore, 15 populations were sampled from both continents. Their 16S mitochon...

2017
Kai Song Li Li Guofan Zhang

BACKGROUND DNA methylation is one of the most important epigenetic modifications of eukaryotic genomes and is believed to play integral roles in diverse biological processes. Although DNA methylation has been well studied in mammals, data are limited in invertebrates, particularly Mollusca. The Pacific oyster Crassostrea gigas is an emerging genetic model for functional analysis of DNA methylat...

Journal: :Brazilian journal of biology = Revista brasleira de biologia 2007
R C Sabry T C V Gesteira G Boehs

Mangrove oysters Crassostrea rhizophorae were sampled monthly in the estuary of Jaguaribe River, on the east coast of Ceará State, Brazil, between August, 2000 and December, 2001, making up 170 individuals. The water temperature varied from 26 to 30 degrees C and salinity from 21 to 42. The animals' size ranged from 3.4 to 7.2 cm height. Macroscopical and histopathological analyses were carried...

2017
Avery E Scherer Miranda M Garcia Delbert L Smee

By influencing critical prey traits such as foraging or habitat selection, predators can affect entire ecosystems, but the nature of cues that trigger prey reactions to predators are not well understood. Predators may scavenge to supplement their energetic needs and scavenging frequency may vary among individuals within a species due to preferences and prey availability. Yet prey reactions to c...

2011
Seung-Woo Lee Young-Nam Jang Jeong-Chan Kim

Myostracum, which is connected from the umbo to the edge of a scar, is not a single layer composed of prismatic layers, but a hierarchically complex multilayered shape composed of minerals and an organic matrix. Through the analysis of the secondary structure, the results revealed that a β-antiparallel structure was predominant in the mineral phase interface between the myostracum (aragonite) a...

2012
Ji Qin Zixia Huang Jun Chen Quan Zou Weiwei You Caihuan Ke

Research on the mechanism for early development of shellfish, such as body plan, shell formation, settlement and metamorphosis is currently an active research field. However, studies were still limited and not deep enough because of the lack of genomic resources such as genome or transcriptome sequences. In the present research, de novo transcriptome sequencing was performed for Crassostrea ang...

2011
Céline Garcia Anne Thébault Lionel Dégremont Isabelle Arzul Laurence Miossec Maeva Robert Bruno Chollet Cyrille François Jean-Pierre Joly Sylvie Ferrand Nolwenn Kerdudou Tristan Renault

Since its molecular characterisation, Ostreid herpesvirus 1 (OsHV-1) has been regularly detected in Crassostrea gigas in France. Although its pathogenicity was demonstrated on larval stages, its involvement during mortality outbreaks at the juvenile stage was highly suspected but not evidenced. To investigate mortality outbreaks, the French National Network for Surveillance and Monitoring of Mo...

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

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

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