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

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

2014
Roscoe Klinck Angélique Fourrier Philippe Thibault Johanne Toutant Mathieu Durand Elvy Lapointe Marie-Laure Caillet-Boudin Nicolas Sergeant Geneviève Gourdon Giovanni Meola Denis Furling Jack Puymirat Benoit Chabot

With the goal of identifying splicing alterations in myotonic dystrophy 1 (DM1) tissues that may yield insights into targets or mechanisms, we have surveyed mis-splicing events in three systems using a RT-PCR screening and validation platform. First, a transgenic mouse model expressing CUG-repeats identified splicing alterations shared with other mouse models of DM1. Second, using cell cultures...

Journal: :Molecular and cellular biology 1999
T D Schaal T Maniatis

Splicing enhancers are RNA sequences required for accurate splice site recognition and the control of alternative splicing. In this study, we used an in vitro selection procedure to identify and characterize novel RNA sequences capable of functioning as pre-mRNA splicing enhancers. Randomized 18-nucleotide RNA sequences were inserted downstream from a Drosophila doublesex pre-mRNA enhancer-depe...

Journal: :Methods in molecular biology 2014
Elizabeth A Dunn Stephen D Rader

Pre-mRNA splicing, the removal of introns from pre-messenger RNA, is an essential step in eukaryotic gene expression. In humans, it has been estimated that 60 % of noninfectious diseases are caused by errors in splicing, making the study of pre-mRNA splicing a high priority from a health perspective. Pre-mRNA splicing is also complicated: the molecular machine that catalyzes the reaction, the s...

Journal: :Journal of virology 2008
Dinesh Verma Sankar Swaminathan

Alternative splicing of RNA increases the coding potential of the genome and allows for additional regulatory control over gene expression. The full extent of alternative splicing remains to be defined but is likely to significantly expand the size of the human transcriptome. There are several examples of mammalian viruses regulating viral splicing or inhibiting cellular splicing in order to fa...

Journal: :EJHaem 2023

Background: DNA hypermethylation and instability due to inactivation mutations in Ten–eleven translocation 2 (TET2) is a key biomarker of hematological malignancies. This study aims at characterizing two intronic noncanonical splice-site variants, c.3954+5_3954+8delGTTT c.3954+5G>A. Methods: We used silico prediction tools, reverse transcription (RT)-PCR, Sanger sequencing on blood/bone marrow-...

Journal: :The international journal of biochemistry & cell biology 2009
Wenyong Ding Lin Lin Zhifeng Xiao Hanfa Zou Ziyuan Duan Jianwu Dai

Intron retention in histamine H(3) receptors has been found in many mammals, including rats and mice. The short transcript isoforms that exclude alternatively spliced introns are readily detected in very low abundance in rats and are undetectable in mice using the regular PCR approach. The detailed mechanism for the special alternative splicing remains poorly understood. The aim of this work wa...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1998
K V Mills B M Lew S Jiang H Paulus

Protein splicing involves the self-catalyzed excision of protein splicing elements, or inteins, from flanking polypeptide sequences, or exteins, leading to the formation of new proteins in which the exteins are linked directly by a peptide bond. To study the enzymology of this interesting process we have expressed and purified N- and C-terminal segments of the Mycobacterium tuberculosis RecA in...

2017
Leonie Verhage Edouard I Severing Johan Bucher Michiel Lammers Jacqueline Busscher-Lange Guusje Bonnema Nicole Rodenburg Marcel C G Proveniers Gerco C Angenent Richard G H Immink

Plants adjust their development and architecture to small variations in ambient temperature. In a time in which temperatures are rising world-wide, the mechanism by which plants are able to sense temperature fluctuations and adapt to it, is becoming of special interest. By performing RNA-sequencing on two Arabidopsis accession and one Brassica species exposed to temperature alterations, we show...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 2003
Leigh A Skordis Matthew G Dunckley Baigong Yue Ian C Eperon Francesco Muntoni

The multiplicity of proteins compared with genes in mammals owes much to alternative splicing. Splicing signals are so subtle and complex that small perturbations may allow the production of new mRNA variants. However, the flexibility of splicing can also be a liability, and several genetic diseases result from single-base changes that cause exons to be skipped during splicing. Conventional oli...

2015
Daniel F. Comiskey Aishwarya G. Jacob Ravi K. Singh Aixa S. Tapia-Santos Dawn S. Chandler

Genotoxic stress induces alternative splicing of the oncogene MDM2 generating MDM2-ALT1, an isoform attributed with tumorigenic properties. However, the mechanisms underlying this event remain unclear. Here we explore MDM2 splicing regulation by utilizing a novel minigene that mimics endogenous MDM2 splicing in response to UV and cisplatinum-induced DNA damage. We report that exon 11 is necessa...

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

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

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