نتایج جستجو برای: rcd rules

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

2016
José Ramón López-Blanco Alejandro Jesús Canosa-Valls Yaohang Li Pablo Chacón

Modeling loops is a critical and challenging step in protein modeling and prediction. We have developed a quick online service (http://rcd.chaconlab.org) for ab initio loop modeling combining a coarse-grained conformational search with a full-atom refinement. Our original Random Coordinate Descent (RCD) loop closure algorithm has been greatly improved to enrich the sampling distribution towards...

Journal: :Computer and Information Science 2011
Latef Oladimeji Yusuf Olusegun Folorunso Adio T. Akinwale I. A. Adejumobi

With the availability of the Internet, virtual communities are proliferating at an unprecedented rate. Indepth understanding of virtual community dynamics can help us to address critical organizational and information systems issues such as communities-of-practice, virtual collaboration, and knowledge management. The biggest challenge in fostering a virtual community is the supply of knowledge ...

Journal: :Ecology letters 2010
Conrad J Hoskin Megan Higgie

A species may overlap with a mosaic of species across its geographic range. Many types of species interaction cause selection on mating traits, but their role in generating within-species divergence has been neglected. The pattern of reproductive character displacement (RCD) has been classically attributed to reinforcement, a process driven by selection against hybridisation. Recent reinforceme...

2005
Oriol Batiste Edgar Knobloch

sReceived 9 May 2004; accepted 28 March 2005; published online 26 May 2005d Simulations of He– He mixtures with negative separation ratios in two-dimensional containers with realistic boundary conditions and moderately large aspect ratio G are described. The system exhibits a large variety of states with complex time dependence including intermittent wave localization and chaotic “repeated tran...

2015
Nidhi Rawal William Twaddell Alessio Fasano Samra Blanchard Anca Safta

Refractory celiac disease (RCD) is a rare but life-threatening complication of celiac disease (CD), and only 1 pediatric case has been reported. We report a case of a 14-year-old girl with CD presenting with persistent symptoms and positive tissue celiac-specific antibodies despite a gluten-free diet. Push enteroscopy showed jejunal scalloping and partial villous atrophy on histology. She was d...

Journal: :Proceedings. Biological sciences 2015
P M B Bacquet O Brattström H-L Wang C E Allen C Löfstedt P M Brakefield C M Nieberding

Selection can facilitate diversification by inducing character displacement in mate choice traits that reduce the probability of maladaptive mating between lineages. Although reproductive character displacement (RCD) has been demonstrated in two-taxa case studies, the frequency of this process in nature is still debated. Moreover, studies have focused primarily on visual and acoustic traits, de...

2016
Sanghack Lee Vasant Honavar

Many applications call for learning causal models from relational data. We investigate Relational Causal Models (RCM) under relational counterparts of adjacency-faithfulness and orientation-faithfulness, yielding a simple approach to identifying a subset of relational d-separation queries needed for determining the structure of an RCM using d-separation against an unrolled DAG representation of...

Journal: :Journal of cell science 2012
Xiuwei H Yang Rossen Mirchev Xinyu Deng Patrick Yacono Helen L Yang David E Golan Martin E Hemler

Laminin-binding integrins (α3β1, α6β1, α6β4, α7β1) are almost always expressed together with tetraspanin CD151. In every coexpressing cell analyzed to date, CD151 makes a fundamental contribution to integrin-dependent motility, invasion, morphology, adhesion and/or signaling. However, there has been minimal mechanistic insight into how CD151 affects integrin functions. In MDA-MB-231 mammary cel...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 2012
Arpita Agrawal Jamie DeSoto Jessica L Fullagar Kasthuraiah Maddali Shahrzad Rostami Douglas D Richman Yves Pommier Seth M Cohen

A series of HIV integrase (HIV-1 IN) inhibitors were synthesized to evaluate the role of the metal-binding group (MBG) in this class of metalloenzyme inhibitors. A total of 21 different raltegravir-chelator derivative (RCD) compounds were prepared that differed only in the nature of the MBG. These IN strand-transfer inhibitors (INSTIs) were evaluated in vitro in cell-free enzyme activity assays...

2007
D. Paul Jackson R. Kasten Dumroese James P. Barnett William B. Patterson

A fertilization rate of 2 or 3 mg nitrogen (N) per week for 20 weeks yielded longleaf pine (Pinus palustris) seedlings grown inside a greenhouse that survived well and produced good root collar diameter (RCD) growth the first year after outplanting. Of a range of fertilization rates (0.5 to 4 mg N/week), the 2 mg rate yielded seedlings that did not require needle clipping during nursery product...

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

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

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