'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Adenomatous polyposis coli

This article refers to the tumor suppressor APC, in which mutations lead to colon cancer. For the cell-cycle regulatory complex, APC/C, see Anaphase-promoting complex.

Adenomatous polyposis coli (APC) also known as deleted in polyposis 2.5 (DP2.5) is a protein that in humans is encoded by the APC gene. The APC protein is a negative regulator that controls beta-catenin concentrations and interacts with E-cadherin, which are involved in cell adhesion. Mutations in the APC gene may result in colorectal cancer.

APC is classified as a tumor suppressor gene. Tumor suppressor genes prevent the uncontrolled growth of cells that may result in cancerous tumors. The protein made by the APC gene plays a critical role in several cellular processes that determine whether a cell may develop into a tumor. The APC protein helps control how often a cell divides, how it attaches to other cells within a tissue, how the cell polarizes and the morphogenesis of the 3D structures, or whether a cell moves within or away from a tissue. This protein also helps ensure that the chromosome number in cells produced through cell division is correct. The APC protein accomplishes these tasks mainly through association with other proteins, especially those that are involved in cell attachment and signaling. The activity of one protein in particular, beta-catenin, is controlled by the APC protein (see: Wnt signaling pathway). Regulation of beta-catenin prevents genes that stimulate cell division from being turned on too often and prevents cell overgrowth.

Familial adenomatous polyposis

Familial adenomatous polyposis (FAP) is an inherited condition in which numerous adenomatous polyps form mainly in the epithelium of the large intestine. While these polyps start out benign, malignant transformation into colon cancer occurs when left untreated. Three variants are known to exist, FAP and attenuated FAP (originally called “hereditary flat adenoma syndrome) are caused by APC gene defects and autosomal recessive FAP (or MYH-associated polyposis) is caused by MUTYH gene defects. Of the three, FAP itself is the most severe and most common; although for all three, the resulting colonic polyps and cancers are confined to the colon wall and removal can greatly reduce the spread of cancer.

The root cause of FAP is understood to be a genetic mutation—a flaw in the body's tumour suppressor genes that prevent development of tumours. The flaw allows numerous cells of the intestinal wall to develop into potentially cancerous polyps when they would usually reach the end of their life; inevitably one or more will eventually progress and give rise to cancer (7% risk by age 21, rising to 87% by age 45 and 93% by age 50). The flawed genes do not trigger cancer, but rather, they reduce the body's ability to protect against the risk of aged cells becoming cancerous. Even with the flawed gene, it may still take time before a cell actually does develop that is cancerous as a result, and the gene may in some cases still partially operate to control tumours, therefore cancer from FAP takes many years to develop and is almost always an adult-onset disease.

Podcasts:

  • “Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatment

    “Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Diagnosis, Treatment Familial Adenomatous Polyposis is an autosomal dominant inherited condition involving significantly increased risk of colorectal or colon cancer. Familial Adenomatous Polyposis can lead to colon cancer very early on in life, roughly by the age of 40 in most individuals. Familial Adenomatous Polyposis is caused by a mutation in the APC gene, which itself is involved in a biochemical pathway known as the Wnt-B catenin signaling pathway. Familial Adenomatous Polyposis often has no symptoms until the onset of colorectal cancer. In this lesson, we discuss the pathophysiology behind with Familial Adenomatous Polyposis occurs, how it is diagnosed and how it is treated. I hope you find...

    published: 27 Jan 2022
  • Familial Adenomatous Polyposis (FAP) | More than 100 polyps in my colon 😱 | Colon Cancer

    Familial Adenomatous Polyposis (FAP) | Genetic disease…More than 100 polyps in my colon 😱 | About 100% Chance of Developing Colorectal Carcinoma…Elective Colectomy is often performed. 🤰 ObGyn Highyields Course: https://www.medicosisperfectionalis.com/ 🚨 Emergency Medicine HighYields Course: https://www.medicosisperfectionalis.com/ 😷 Surgery HighYields Course: https://www.medicosisperfectionalis.com/ 💊🦠 Antibiotics Course: https://www.medicosisperfectionalis.com/ 💊 📛 Toxicology Course: https://www.medicosisperfectionalis.com/ 💦 🐳 Kidney Physiology Course: https://www.medicosisperfectionalis.com/products/ 📝 Download my handwritten notes: www.medicosisperfectionalis.com/ — PREMIUM COURSES not available on YouTube:— 💊🦠 Antibiotics Course: https://www.medicosisperfectionalis.com/products/cou...

    published: 06 Apr 2023
  • Familial Adenomatous Polyposis ( FAP): Everything You Need To Know

    . Chapters 0:00 Introduction 0:56 Symptoms of Familial Adenomatous Polyposis 2:20 Diagnosis for Familial Adenomatous Polyposis 2:50 Treatment for Familial Adenomatous Polyposis Familial adenomatous polyposis (FAP) is an autosomal dominant inherited condition in which numerous adenomatous polyps form mainly in the epithelium of the large intestine. While these polyps start out benign, malignant transformation into colon cancer occurs when they are left untreated. Three variants are known to exist, FAP and attenuated FAP (originally called hereditary flat adenoma syndrome[1]) are caused by APC gene defects on chromosome 5 while autosomal recessive FAP (or MUTYH-associated polyposis) is caused by defects in the MUTYH gene on chromosome 1. Of the three, FAP itself is the most severe a...

    published: 09 Sep 2022
  • FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology

    FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology | Pathology | 5-Minute-Review. Familial adenomatous polyposis is a disease characterized by the presence of multiple polyps in the colon. It carries very high risk of progressing into colon cancer (colorectal carcinoma). On the other hand, hereditary nonpolyposis colorectal cancer (Lynch syndrome) doesn’t have many polyps in the colon, it’s a colorectal cancer. — PREMIUM COURSES not available on YouTube:— 💊🦠 Antibiotics Course: https://www.medicosisperfectionalis.com/products/courses/antibiotics/ 💦 🐳 Kidney Physiology Course: https://www.medicosisperfectionalis.com/products/ 🤰 ObGyn Highyields Course: https://www.medicosisperfectionalis.com/ 🚨 Emergency Medicine HighYields Course: https...

    published: 16 Apr 2023
  • Colon: Familial Adenomatous Polyposis

    Gross and microscopic description of adenomatous polyps in familial adenomatous polyposis. Video source: Pathweb Register for FREE access to Pathweb: https://nus.syd1.qualtrics.com/jfe/form/SV_aeYDYT8bvIP4Ii9 Pathweb online resource: https://medicine.nus.edu.sg/pathweb/ Pathweb instagram: https://www.instagram.com/pathweb/

    published: 27 Nov 2019
  • What is Familial Adenomatous Polyposis or FAP?

    From ASCO 2011 -- A discussion with Eric Charsky, disabled veteran, cancer survivor, and Founder and CEO of Volontie 1.

    published: 27 Jun 2011
  • Laparoscopic Assisted Restorative Proctocolectomy for Familial Adenomatous Polyposis

    Authors: Steven D. Wexner, MD, FACS, FRCS, FRCS (Ed); Jill C. Genua, MD; David A. Vivas, MD

    published: 27 Jun 2011
  • Familial Adenomatous Polyposis (FAP)

    Watch the video to know about FAP and its associated syndromes.

    published: 04 Mar 2016
  • Gastric adenomas and their management in familial adenomatous polyposis

    Isabel Martin on "Gastric adenomas and their management in familial adenomatous polyposis" Authors: Isabel Martin, Victorine H. Roos, Chukwuemeka Anele et al. Summary: Among 726 patients with familial adenomatous polyposis (FAP), 104 (14%) had a gastric adenoma. High grade dysplasia was detected in five (5%) of these patients, while two patients had gastric cancer at initial gastric adenoma diagnosis. During follow-up, three patients were additionally diagnosed with gastric cancer. The study shows the importance of gastric endoscopic surveillance in patients with FAP. Bibliography Endoscopy 2021; 53: 795–801 DOI 10.1055/a-1265-2716 ISSN 0013-726X © 2020. Thieme. All rights reserved. Georg Thieme Verlag KG, Rüdigerstraße 14, 70469 Stuttgart, Germany Read more here: https://doi.org/10.10...

    published: 27 Jul 2021
  • Attenuated- Familial Adenomatous Polyposis

    Attenuated (Mild Type) Familial Adenomatous Polyposis Colorectal cancers usually develop from polyps. If there is an adenomatous polyp, that means there is a risk of cancer. This is bad news. The good news is that removing polyps eliminates the risk of cancer. Polyps are best diagnosed with colonoscopy and can be removed with the help of colonoscopy. If there are too many polyps that cannot be removed by colonoscopy, the large intestine including the polyps should be surgically removed. Some genetic diseases can cause huge numbers of polyps in the large intestine. These genetic diseases pass from the parents to their children. A genetic disease that causes more than 100 polyps in the large intestine is called familial polyposis. There is also a mild type of this disease. In the mild ...

    published: 12 Sep 2020
developed with YouTube
“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatment
9:02

“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatment

  • Order:
  • Duration: 9:02
  • Uploaded Date: 27 Jan 2022
  • views: 37703
“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Diagnosis, Treatment Familial Adenomatous Polyposis is an autosomal dominant inherited condition involving significantly increased risk of colorectal or colon cancer. Familial Adenomatous Polyposis can lead to colon cancer very early on in life, roughly by the age of 40 in most individuals. Familial Adenomatous Polyposis is caused by a mutation in the APC gene, which itself is involved in a biochemical pathway known as the Wnt-B catenin signaling pathway. Familial Adenomatous Polyposis often has no symptoms until the onset of colorectal cancer. In this lesson, we discuss the pathophysiology behind with Familial Adenomatous Polyposis occurs, how it is diagnosed and how it is treated. I hope you find this lesson helpful. If you do, please like and subscribe for more lessons like this one! JJ **MEDICAL LEGAL DISCLAIMER**: JJ Medicine does not provide medical advice, and the information available on this channel does not offer a diagnosis or advice regarding treatment. Information presented in these lessons is for educational purposes ONLY, and information presented here is not to be used as an alternative to a healthcare professional’s diagnosis and treatment of any person/animal. Only a physician or other licensed healthcare professional are able to determine the requirement for medical assistance to be given to a patient. Please seek the advice of your physician or other licensed healthcare provider if you have any questions regarding a medical condition. *AFFILIATE DISCLAIMER: This YouTube Channel uses affiliate links and may earn a commission from associated sales. *IMAGE DISCLAIMER: The content (ex. images) used in this lesson are used in accordance with Fair Use laws and are intended for educational/teaching purposes only* *Subscribe for more free medical lessons* https://www.youtube.com/channel/UCFPvnkCZbHfBvV8ApBBE0vA?sub_confirmation=1 ------------------------------------------------------------------------------------------------------------- For books and more information on these topics https://www.amazon.com/shop/jjmedicine Support future lessons and lectures ➜ https://www.patreon.com/jjmedicine Check out the best tool to help grow your YouTube channel (it’s helped me!) https://www.tubebuddy.com/jjmedicine Follow me on Twitter! ➜ https://twitter.com/JJ_Medicine Come join me on Facebook! ➜ https://www.facebook.com/JJ-Medicine-100642648161192/ ------------------------------------------------------------------------------------------------------------ *Check Out Some of My Other Lessons* Medical Terminology - The Basics - Lesson 1: https://www.youtube.com/watch?v=04Wh2E9oNug Infectious Disease Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwW0Bkc6c66uDACkzotaK26b Dermatology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwW3dgORRNmk_MZvnWpZx_lW Pharmacology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwWPWcV9lZTh-Qxv0gYakQXR Hematology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwW8Ajo1dmxdj4EYEKcbtGju Rheumatology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwWDvuhasXsuTFXJp05wwUle Endocrinology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwUuRSzhploohnaWVvbVZ7ZP Nephrology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwXRSwrFQK5WwWZLk1Las8v8 Fatty Acid Synthesis Pathway: https://www.youtube.com/watch?v=WuQS_LpNMzo Wnt/B Catenin Signaling Pathway: https://www.youtube.com/watch?v=NGVP4J9jpgs Upper vs. Lower Motor Neuron Lesions: https://www.youtube.com/watch?v=itNd74V53ng Lesson on the Purine Synthesis and Salvage Pathway: https://www.youtube.com/watch?v=e2KFVvI8Akk Gastrulation | Formation of Germ Layers: https://www.youtube.com/watch?v=d6Kkn0SECJ4 Introductory lesson on Autophagy (Macroautophagy): https://www.youtube.com/watch?v=UmSVKzHc5yA
https://wn.com/“Colon_Cancer_That_Runs_In_Families”_(Familial_Adenomatous_Polyposis),_Apc_Gene,_Symptoms,_Treatment
Familial Adenomatous Polyposis (FAP) | More than 100 polyps in my colon 😱 | Colon Cancer
7:28

Familial Adenomatous Polyposis (FAP) | More than 100 polyps in my colon 😱 | Colon Cancer

  • Order:
  • Duration: 7:28
  • Uploaded Date: 06 Apr 2023
  • views: 18331
Familial Adenomatous Polyposis (FAP) | Genetic disease…More than 100 polyps in my colon 😱 | About 100% Chance of Developing Colorectal Carcinoma…Elective Colectomy is often performed. 🤰 ObGyn Highyields Course: https://www.medicosisperfectionalis.com/ 🚨 Emergency Medicine HighYields Course: https://www.medicosisperfectionalis.com/ 😷 Surgery HighYields Course: https://www.medicosisperfectionalis.com/ 💊🦠 Antibiotics Course: https://www.medicosisperfectionalis.com/ 💊 📛 Toxicology Course: https://www.medicosisperfectionalis.com/ 💦 🐳 Kidney Physiology Course: https://www.medicosisperfectionalis.com/products/ 📝 Download my handwritten notes: www.medicosisperfectionalis.com/ — PREMIUM COURSES not available on YouTube:— 💊🦠 Antibiotics Course: https://www.medicosisperfectionalis.com/products/courses/antibiotics/ 💦 🐳 Kidney Physiology Course: https://www.medicosisperfectionalis.com/products/ ❤️ Cardiac Pharmacology Course: https://www.medicosisperfectionalis.com/ 🧪Acid-Base Course: https://www.medicosisperfectionalis.com/products/ 🧠 Autonomic Pharmacology Course: www.medicosisperfectionalis.com/ 🧪 Electrolytes Course: https://www.medicosisperfectionalis.com/ 🍱 Endocrine Pharmacology Course: https://www.medicosisperfectionalis.com/products/ 🧠 CNS Pharmacology Course: https://www.medicosisperfectionalis.com/ 💊 General Pharmacology (Pharmacokinetics and Pharmacodynamics): https://www.medicosisperfectionalis.com/ ⁉️ Questions and Answers: https://www.medicosisperfectionalis.com/ 📝 Notes: https://www.medicosisperfectionalis.com/ 🗳 Complete the Survey: https://airtable.com/shrYWjvabooT7DrcG 📊 My favorite Productivity App (Airtable): https://airtable.com/invite/r/2zH40fus/ 🎁Free Stuff: https://www.medicosisperfectionalis.com/ 💊 Pharmacology Lectures: https://www.medicosisperfectionalis.com/ 😍🖼Animated Mnemonics (Picmonic): https://www.picmonic.com/viphookup/medicosis/ YouTube PLAYLISTS: ► 🧠 Physiology Playlist: https://www.youtube.com/watch?v=6qk_LTVXZ2w&list=PLYcLrRDaR8_eAjmngd289ghWijs2wfqnj&index=2&t=0s 🧫 🦠 Microbiology and Infectious Diseases Playlist: https://youtube.com/playlist?list=PLYcLrRDaR8_ftu9ms-ytDewlhJxYNuIYo/ ► 🩸 hematology videos: https://www.youtube.com/playlist?list=PLYcLrRDaR8_eoNz6dxXolh1XMEietcniU ► 💪 Rheumatology: https://www.youtube.com/playlist?list=PLYcLrRDaR8_ckdsow-7buX1rIzIEKfxZQ ► ❤️ Cardiac Pharmacology: https://www.youtube.com/playlist?list=PLYcLrRDaR8_e3pM6ifeZDfNPlE3K4KF3J/ ► Biochemistry 🧪 : https://youtube.com/playlist?list=PLYcLrRDaR8_c2LBpF_OYvwijOok7ae96N ► 🙌 Support me on cash app: https://cash.app/$medicosis/ ► Support me on Stripe: https://donate.stripe.com/3cs02Hb9ca2k4c8fYZ ► 😍 Support me on Patreon: https://www.patreon.com/medicosis/ ► Support me on Venmo: Venmo: https://venmo.com/medicosis ► 🥰 Support me on PayPal: https://www.paypal.me/perfectionalis/ ► ☕️ Buy me a Coffee: https://www.buymeacoffee.com/medicosis/ ► 😚 Join my Channel on YouTube: https://www.youtube.com/channel/UCl-J-ovSJhA3or73Q2uVpow/join/ ► 👨‍🏫 All of my premium courses are ON SALE: https://www.medicosisperfectionalis.com/ 📚 Recommended Books: https://www.amazon.com/shop/medicosisperfectionalis/ ► ❓If you have any questions, please email me at: medicosisperfectionalis@gmail.com 🗳 Complete the Survey: https://airtable.com/shrYWjvabooT7DrcG/ 🎁 Small gift: here are 2 FREE audiobooks from Audible https://amzn.to/2FQurW0 📖 Try Amazon Kindle unlimited for FREE, they have some good medical books that you can read for FREE. https://amzn.to/2UceoG2 --If you have joined my channel on youtube (the join button that's next to the subscribe button), then go to the "community tab" and you will find some member-only posts. ►Website: www.medicosisperfectionalis.com ►Patreon: https://www.patreon.com/medicosis ►YouTube: https://www.youtube.com/c/MedicosisPerfectionalis or: ► Like my page on Facebook https://www.facebook.com/medicosis/ ►Follow us on Instagram here: https://www.instagram.com/medicosisperfectionalis/ ►PayPal: https://www.paypal.me/perfectionalis/ ►Venmo: @medicosis ►Facebook: https://www.facebook.com/medicosis/ ►Twitter: https://www.twitter.com/medicosis ►SoundCloud: https://soundcloud.com/medicosis ►TikTok: www.tiktok.com/@medicosisp/ ►LinkedIn: linkedin.com/in/medicosis-perfectionalis-873886197 ►Snapchat: https://www.snapchat.com/add/medicosis ►Pinterest: https://www.pinterest.com/medicosisperfectionalis/ ►Rumble: https://rumble.com/user/MedicosisPerfectionalis ► Tumblr: https://medicosis.tumblr.com/ Thank you so much for supporting my channel! Love ❤️& Happy studying!! 😍🖼Animated Mnemonics (Picmonic): https://www.picmonic.com/viphookup/medicosis/ 📱Save on your mobile phone bill: http://fbuy.me/q6bMj 📊 My favorite Productivity App: https://airtable.com/invite/r/2zH40fus/ 🙋‍♀️ Qbank (TrueLearn): https://truelearn.referralrock.com/l/MEDICOSIS/ 🙌 Support the channel: https://donate.stripe.com/3cs02Hb9ca2k4c8fYZ
https://wn.com/Familial_Adenomatous_Polyposis_(Fap)_|_More_Than_100_Polyps_In_My_Colon_😱_|_Colon_Cancer
Familial Adenomatous Polyposis ( FAP): Everything You Need To Know
3:58

Familial Adenomatous Polyposis ( FAP): Everything You Need To Know

  • Order:
  • Duration: 3:58
  • Uploaded Date: 09 Sep 2022
  • views: 8013
. Chapters 0:00 Introduction 0:56 Symptoms of Familial Adenomatous Polyposis 2:20 Diagnosis for Familial Adenomatous Polyposis 2:50 Treatment for Familial Adenomatous Polyposis Familial adenomatous polyposis (FAP) is an autosomal dominant inherited condition in which numerous adenomatous polyps form mainly in the epithelium of the large intestine. While these polyps start out benign, malignant transformation into colon cancer occurs when they are left untreated. Three variants are known to exist, FAP and attenuated FAP (originally called hereditary flat adenoma syndrome[1]) are caused by APC gene defects on chromosome 5 while autosomal recessive FAP (or MUTYH-associated polyposis) is caused by defects in the MUTYH gene on chromosome 1. Of the three, FAP itself is the most severe and most common; although for all three, the resulting colonic polyps and cancers are initially confined to the colon wall. Detection and removal before metastasis outside the colon can greatly reduce and in many cases eliminate the spread of cancer. The root cause of FAP is understood to be a genetic mutation—a change in the body's tumour suppressor genes that prevent development of tumours. The change allows numerous cells of the intestinal wall to develop into potentially cancerous polyps when they would usually reach the end of their life; inevitably one or more will eventually progress and give rise to cancer (7% risk by age 21, rising to 87% by age 45 and 93% by age 50). These gene changes do not trigger cancer, but rather, they reduce the body's ability to prevent cells from becoming cancerous. Even with the gene change, it may still take time before a cell actually does develop that is cancerous as a result, and the gene may in some cases still partially operate to control tumours, therefore cancer from FAP takes many years to develop and is almost always an adult-onset disease. The second form of FAP, known as attenuated familial adenomatous polyposis has the APC gene functional but slightly impaired. It is therefore somewhat able to operate as usual. Attenuated FAP still presents a high 70% lifetime risk of cancer (as estimated), but typically presents with far fewer polyps (typically 30) rather than the hundreds or thousands usually found in FAP,[2] and arises at an age when FAP is usually no longer considered likely—typically between 40 and 70 years old (average 55[3]) rather than the more usual 30s upward. Because it has far fewer polyps, options for management may be different.[2] The third variant, autosomal recessive familial adenomatous polyposis or MUTYH-associated polyposis, is also milder and, as its name suggests, requires both parents to be 'carriers' to manifest the condition. In some cases FAP can manifest higher in the colon than usual (for example, the ascending colon,[citation needed] or proximal to the splenic flexure, or in the stomach or duodenum[1]) where they show no symptoms until cancer is present and greatly advanced. APC mutations have been linked to certain other cancers such as thyroid cancer. As the mutation causing FAP is autosomal dominant, it can be inherited directly from either parent to a child. A genetic blood test of the APC gene exists that can determine whether it is present, and therefore can predict the possibility of FAP. Individuals at risk (due to family links or genetic testing) are usually offered routine monitoring of the intestinal tract every 1–3 years for life, from puberty for FAP and early adulthood for attenuated forms. Colon resection surgery is recommended if numerous colon polyps are found due to high risk of early death from colon cancer. International polyposis registries exist that track known cases of FAP or APC gene defects, for research and clinical purposes. Mutation of APC also occurs commonly in incident cases of colorectal carcinoma, emphasizing its importance in this form of cancer.
https://wn.com/Familial_Adenomatous_Polyposis_(_Fap)_Everything_You_Need_To_Know
FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology
8:22

FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology

  • Order:
  • Duration: 8:22
  • Uploaded Date: 16 Apr 2023
  • views: 7363
FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology | Pathology | 5-Minute-Review. Familial adenomatous polyposis is a disease characterized by the presence of multiple polyps in the colon. It carries very high risk of progressing into colon cancer (colorectal carcinoma). On the other hand, hereditary nonpolyposis colorectal cancer (Lynch syndrome) doesn’t have many polyps in the colon, it’s a colorectal cancer. — PREMIUM COURSES not available on YouTube:— 💊🦠 Antibiotics Course: https://www.medicosisperfectionalis.com/products/courses/antibiotics/ 💦 🐳 Kidney Physiology Course: https://www.medicosisperfectionalis.com/products/ 🤰 ObGyn Highyields Course: https://www.medicosisperfectionalis.com/ 🚨 Emergency Medicine HighYields Course: https://www.medicosisperfectionalis.com/ 😷 Surgery HighYields Course: https://www.medicosisperfectionalis.com/ 💊 📛 Toxicology Course: https://www.medicosisperfectionalis.com/ ❤️ Cardiac Pharmacology Course: https://www.medicosisperfectionalis.com/ 🧪Acid-Base Course: https://www.medicosisperfectionalis.com/products/ 🧠 Autonomic Pharmacology Course: www.medicosisperfectionalis.com/ 🧪 Electrolytes Course: https://www.medicosisperfectionalis.com/ 🍱 Endocrine Pharmacology Course: https://www.medicosisperfectionalis.com/products/ 🧠 CNS Pharmacology Course: https://www.medicosisperfectionalis.com/ 💊 General Pharmacology (Pharmacokinetics and Pharmacodynamics): https://www.medicosisperfectionalis.com/ 📝 Download my handwritten notes: www.medicosisperfectionalis.com/ ⁉️ Questions and Answers: https://www.medicosisperfectionalis.com/ 🗳 Complete the Survey: https://airtable.com/shrYWjvabooT7DrcG 🎁Free Stuff: https://www.medicosisperfectionalis.com/ 💊 Pharmacology Lectures: https://www.medicosisperfectionalis.com/ YouTube PLAYLISTS: ► 🧠 Physiology Playlist: https://www.youtube.com/watch?v=6qk_LTVXZ2w&list=PLYcLrRDaR8_eAjmngd289ghWijs2wfqnj&index=2&t=0s 🧫 🦠 Microbiology and Infectious Diseases Playlist: https://youtube.com/playlist?list=PLYcLrRDaR8_ftu9ms-ytDewlhJxYNuIYo/ ► 🩸 hematology videos: https://www.youtube.com/playlist?list=PLYcLrRDaR8_eoNz6dxXolh1XMEietcniU ► 💪 Rheumatology: https://www.youtube.com/playlist?list=PLYcLrRDaR8_ckdsow-7buX1rIzIEKfxZQ ► ❤️ Cardiac Pharmacology: https://www.youtube.com/playlist?list=PLYcLrRDaR8_e3pM6ifeZDfNPlE3K4KF3J/ ► Biochemistry 🧪 : https://youtube.com/playlist?list=PLYcLrRDaR8_c2LBpF_OYvwijOok7ae96N ► 🙌 Support me on cash app: https://cash.app/$medicosis/ ► Support me on Stripe: https://donate.stripe.com/3cs02Hb9ca2k4c8fYZ ► 😍 Support me on Patreon: https://www.patreon.com/medicosis/ ► Support me on Venmo: Venmo: https://venmo.com/medicosis ► 🥰 Support me on PayPal: https://www.paypal.me/perfectionalis/ ► ☕️ Buy me a Coffee: https://www.buymeacoffee.com/medicosis/ ► 😚 Join my Channel on YouTube: https://www.youtube.com/channel/UCl-J-ovSJhA3or73Q2uVpow/join --If you’ve joined my channel on youtube (the join button that's next to the subscribe button), then go to the "membership tab" and you will find some member-only posts/videos. ► 👨‍🏫 All of my premium courses are ON SALE: https://www.medicosisperfectionalis.com/ 📚 Recommended Books: https://www.amazon.com/shop/medicosisperfectionalis/ ► ❓If you have any questions, please email me at: medicosisperfectionalis@gmail.com 🗳 Complete the Survey: https://airtable.com/shrYWjvabooT7DrcG/ ►Website: www.medicosisperfectionalis.com ►Patreon: https://www.patreon.com/medicosis ►YouTube: https://www.youtube.com/c/MedicosisPerfectionalis or: ► Like my page on Facebook https://www.facebook.com/medicosis/ ►Follow us on Instagram here: https://www.instagram.com/medicosisperfectionalis/ ►PayPal: https://www.paypal.me/perfectionalis/ ►Venmo: @medicosis ►Facebook: https://www.facebook.com/medicosis/ ►Twitter: https://www.twitter.com/medicosis ►SoundCloud: https://soundcloud.com/medicosis ►TikTok: www.tiktok.com/@medicosisp/ ►LinkedIn: linkedin.com/in/medicosis-perfectionalis-873886197 ►Snapchat: https://www.snapchat.com/add/medicosis ►Pinterest: https://www.pinterest.com/medicosisperfectionalis/ ►Rumble: https://rumble.com/user/MedicosisPerfectionalis ► Tumblr: https://medicosis.tumblr.com/ Thank you so much for supporting my channel! Love ❤️& Happy studying!! 😍🖼Animated Mnemonics (Picmonic): https://www.picmonic.com/viphookup/medicosis/ 📱Save on your mobile phone bill: http://fbuy.me/q6bMj 📊 My favorite Productivity App: https://airtable.com/invite/r/2zH40fus/ 🙋‍♀️ Qbank (TrueLearn): https://truelearn.referralrock.com/l/MEDICOSIS/ 🙌 Support the channel: https://donate.stripe.com/3cs02Hb9ca2k4c8fYZ
https://wn.com/Fap_Vs_Lynch_(Familial_Adenomatous_Polyposis_Vs_Hereditary_Nonpolyposis_Colorectal_Cancer)|_Oncology
Colon: Familial Adenomatous Polyposis
5:04

Colon: Familial Adenomatous Polyposis

  • Order:
  • Duration: 5:04
  • Uploaded Date: 27 Nov 2019
  • views: 4888
Gross and microscopic description of adenomatous polyps in familial adenomatous polyposis. Video source: Pathweb Register for FREE access to Pathweb: https://nus.syd1.qualtrics.com/jfe/form/SV_aeYDYT8bvIP4Ii9 Pathweb online resource: https://medicine.nus.edu.sg/pathweb/ Pathweb instagram: https://www.instagram.com/pathweb/
https://wn.com/Colon_Familial_Adenomatous_Polyposis
What is Familial Adenomatous Polyposis or FAP?
4:01

What is Familial Adenomatous Polyposis or FAP?

  • Order:
  • Duration: 4:01
  • Uploaded Date: 27 Jun 2011
  • views: 6375
From ASCO 2011 -- A discussion with Eric Charsky, disabled veteran, cancer survivor, and Founder and CEO of Volontie 1.
https://wn.com/What_Is_Familial_Adenomatous_Polyposis_Or_Fap
Laparoscopic Assisted Restorative Proctocolectomy for Familial Adenomatous Polyposis
10:41

Laparoscopic Assisted Restorative Proctocolectomy for Familial Adenomatous Polyposis

  • Order:
  • Duration: 10:41
  • Uploaded Date: 27 Jun 2011
  • views: 2510
Authors: Steven D. Wexner, MD, FACS, FRCS, FRCS (Ed); Jill C. Genua, MD; David A. Vivas, MD
https://wn.com/Laparoscopic_Assisted_Restorative_Proctocolectomy_For_Familial_Adenomatous_Polyposis
Familial Adenomatous Polyposis (FAP)
2:20

Familial Adenomatous Polyposis (FAP)

  • Order:
  • Duration: 2:20
  • Uploaded Date: 04 Mar 2016
  • views: 21006
Watch the video to know about FAP and its associated syndromes.
https://wn.com/Familial_Adenomatous_Polyposis_(Fap)
Gastric adenomas and their management in familial adenomatous polyposis
1:53

Gastric adenomas and their management in familial adenomatous polyposis

  • Order:
  • Duration: 1:53
  • Uploaded Date: 27 Jul 2021
  • views: 237
Isabel Martin on "Gastric adenomas and their management in familial adenomatous polyposis" Authors: Isabel Martin, Victorine H. Roos, Chukwuemeka Anele et al. Summary: Among 726 patients with familial adenomatous polyposis (FAP), 104 (14%) had a gastric adenoma. High grade dysplasia was detected in five (5%) of these patients, while two patients had gastric cancer at initial gastric adenoma diagnosis. During follow-up, three patients were additionally diagnosed with gastric cancer. The study shows the importance of gastric endoscopic surveillance in patients with FAP. Bibliography Endoscopy 2021; 53: 795–801 DOI 10.1055/a-1265-2716 ISSN 0013-726X © 2020. Thieme. All rights reserved. Georg Thieme Verlag KG, Rüdigerstraße 14, 70469 Stuttgart, Germany Read more here: https://doi.org/10.1055/a-1265-2716
https://wn.com/Gastric_Adenomas_And_Their_Management_In_Familial_Adenomatous_Polyposis
Attenuated- Familial Adenomatous Polyposis
2:05

Attenuated- Familial Adenomatous Polyposis

  • Order:
  • Duration: 2:05
  • Uploaded Date: 12 Sep 2020
  • views: 1027
Attenuated (Mild Type) Familial Adenomatous Polyposis Colorectal cancers usually develop from polyps. If there is an adenomatous polyp, that means there is a risk of cancer. This is bad news. The good news is that removing polyps eliminates the risk of cancer. Polyps are best diagnosed with colonoscopy and can be removed with the help of colonoscopy. If there are too many polyps that cannot be removed by colonoscopy, the large intestine including the polyps should be surgically removed. Some genetic diseases can cause huge numbers of polyps in the large intestine. These genetic diseases pass from the parents to their children. A genetic disease that causes more than 100 polyps in the large intestine is called familial polyposis. There is also a mild type of this disease. In the mild type, the number of polyps in the large intestine is between 20 and 100. If measures are not taken in familial polyposis, the risk of large bowel cancer is 100%. Even in the mild form, the risk of colorectal cancer is almost 70%. In order to eliminate the risk of cancer in patients with polyposis, the large intestine should be surgically removed. Following removal of the large intestine, a connection between the small intestine and the last part of the large intestine allows the patient to continue his life without a stoma. In this video, images of the removed large intestine in a patient with mild-type familial polyposis are shared. The connection between the small intestine and the last part of the large intestine ensured the patient to continue his life without an abdominal stoma.
https://wn.com/Attenuated_Familial_Adenomatous_Polyposis
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • “Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatment
    9:02
    “Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatmentremove from playlist
  • Familial Adenomatous Polyposis (FAP) | More than 100 polyps in my colon 😱 | Colon Cancer
    7:28
    Familial Adenomatous Polyposis (FAP) | More than 100 polyps in my colon 😱 | Colon Cancerremove from playlist
  • Familial Adenomatous Polyposis ( FAP): Everything You Need To Know
    3:58
    Familial Adenomatous Polyposis ( FAP): Everything You Need To Knowremove from playlist
  • FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology
    8:22
    FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncologyremove from playlist
  • Colon: Familial Adenomatous Polyposis
    5:04
    Colon: Familial Adenomatous Polyposisremove from playlist
  • What is Familial Adenomatous Polyposis or FAP?
    4:01
    What is Familial Adenomatous Polyposis or FAP?remove from playlist
  • Gastric adenomas and their management in familial adenomatous polyposis
    1:53
    Gastric adenomas and their management in familial adenomatous polyposisremove from playlist
  • Attenuated- Familial Adenomatous Polyposis
    2:05
    Attenuated- Familial Adenomatous Polyposisremove from playlist
developed with YouTube
PLAYLIST TIME:

“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatment

“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Diagnosis, Treatment Familial Adenomatous Polyposis is an autosomal dominant inherited condition involving significantly increased risk of colorectal or colon cancer. Familial Adenomatous Polyposis can lead to colon cancer very early on in life, roughly by the age of 40 in most individuals. Familial Adenomatous Polyposis is caused by a mutation in the APC gene, which itself is involved in a biochemical pathway known as the Wnt-B catenin signaling pathway. Familial Adenomatous Polyposis often has no symptoms until the onset of colorectal cancer. In this lesson, we discuss the pathophysiology behind with Familial Adenomatous Polyposis occurs, how it is diagnosed and how it is treated. I hope you find this lesson helpful. If you do, please like and subscribe for more lessons like this one! JJ **MEDICAL LEGAL DISCLAIMER**: JJ Medicine does not provide medical advice, and the information available on this channel does not offer a diagnosis or advice regarding treatment. Information presented in these lessons is for educational purposes ONLY, and information presented here is not to be used as an alternative to a healthcare professional’s diagnosis and treatment of any person/animal. Only a physician or other licensed healthcare professional are able to determine the requirement for medical assistance to be given to a patient. Please seek the advice of your physician or other licensed healthcare provider if you have any questions regarding a medical condition. *AFFILIATE DISCLAIMER: This YouTube Channel uses affiliate links and may earn a commission from associated sales. *IMAGE DISCLAIMER: The content (ex. images) used in this lesson are used in accordance with Fair Use laws and are intended for educational/teaching purposes only* *Subscribe for more free medical lessons* https://www.youtube.com/channel/UCFPvnkCZbHfBvV8ApBBE0vA?sub_confirmation=1 ------------------------------------------------------------------------------------------------------------- For books and more information on these topics https://www.amazon.com/shop/jjmedicine Support future lessons and lectures ➜ https://www.patreon.com/jjmedicine Check out the best tool to help grow your YouTube channel (it’s helped me!) https://www.tubebuddy.com/jjmedicine Follow me on Twitter! ➜ https://twitter.com/JJ_Medicine Come join me on Facebook! ➜ https://www.facebook.com/JJ-Medicine-100642648161192/ ------------------------------------------------------------------------------------------------------------ *Check Out Some of My Other Lessons* Medical Terminology - The Basics - Lesson 1: https://www.youtube.com/watch?v=04Wh2E9oNug Infectious Disease Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwW0Bkc6c66uDACkzotaK26b Dermatology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwW3dgORRNmk_MZvnWpZx_lW Pharmacology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwWPWcV9lZTh-Qxv0gYakQXR Hematology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwW8Ajo1dmxdj4EYEKcbtGju Rheumatology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwWDvuhasXsuTFXJp05wwUle Endocrinology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwUuRSzhploohnaWVvbVZ7ZP Nephrology Playlist https://www.youtube.com/playlist?list=PLRjNoiRtdFwXRSwrFQK5WwWZLk1Las8v8 Fatty Acid Synthesis Pathway: https://www.youtube.com/watch?v=WuQS_LpNMzo Wnt/B Catenin Signaling Pathway: https://www.youtube.com/watch?v=NGVP4J9jpgs Upper vs. Lower Motor Neuron Lesions: https://www.youtube.com/watch?v=itNd74V53ng Lesson on the Purine Synthesis and Salvage Pathway: https://www.youtube.com/watch?v=e2KFVvI8Akk Gastrulation | Formation of Germ Layers: https://www.youtube.com/watch?v=d6Kkn0SECJ4 Introductory lesson on Autophagy (Macroautophagy): https://www.youtube.com/watch?v=UmSVKzHc5yA
9:02
“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms, Treatment
“Colon Cancer That Runs in Families” (Familial Adenomatous Polyposis), APC Gene, Symptoms,...
published: 27 Jan 2022
Play in Full Screen
7:28
Familial Adenomatous Polyposis (FAP) | More than 100 polyps in my colon 😱 | Colon Cancer
Familial Adenomatous Polyposis (FAP) | Genetic disease…More than 100 polyps in my colon 😱 ...
published: 06 Apr 2023
Play in Full Screen
3:58
Familial Adenomatous Polyposis ( FAP): Everything You Need To Know
. Chapters 0:00 Introduction 0:56 Symptoms of Familial Adenomatous Polyposis 2:20 Diagn...
published: 09 Sep 2022
Play in Full Screen
8:22
FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)| Oncology
FAP vs Lynch (Familial Adenomatous Polyposis vs Hereditary Nonpolyposis Colorectal cancer)...
published: 16 Apr 2023
Play in Full Screen
5:04
Colon: Familial Adenomatous Polyposis
Gross and microscopic description of adenomatous polyps in familial adenomatous polyposis....
published: 27 Nov 2019
Play in Full Screen
4:01
What is Familial Adenomatous Polyposis or FAP?
From ASCO 2011 -- A discussion with Eric Charsky, disabled veteran, cancer survivor, and F...
published: 27 Jun 2011
Play in Full Screen
10:41
Laparoscopic Assisted Restorative Proctocolectomy for Familial Adenomatous Polyposis
Authors: Steven D. Wexner, MD, FACS, FRCS, FRCS (Ed); Jill C. Genua, MD; David A. Vivas, ...
published: 27 Jun 2011
Play in Full Screen
2:20
Familial Adenomatous Polyposis (FAP)
Watch the video to know about FAP and its associated syndromes.
published: 04 Mar 2016
Play in Full Screen
1:53
Gastric adenomas and their management in familial adenomatous polyposis
Isabel Martin on "Gastric adenomas and their management in familial adenomatous polyposis"...
published: 27 Jul 2021
Play in Full Screen
2:05
Attenuated- Familial Adenomatous Polyposis
Attenuated (Mild Type) Familial Adenomatous Polyposis Colorectal cancers usually develo...
published: 12 Sep 2020
Play in Full Screen

Adenomatous polyposis coli

This article refers to the tumor suppressor APC, in which mutations lead to colon cancer. For the cell-cycle regulatory complex, APC/C, see Anaphase-promoting complex.

Adenomatous polyposis coli (APC) also known as deleted in polyposis 2.5 (DP2.5) is a protein that in humans is encoded by the APC gene. The APC protein is a negative regulator that controls beta-catenin concentrations and interacts with E-cadherin, which are involved in cell adhesion. Mutations in the APC gene may result in colorectal cancer.

APC is classified as a tumor suppressor gene. Tumor suppressor genes prevent the uncontrolled growth of cells that may result in cancerous tumors. The protein made by the APC gene plays a critical role in several cellular processes that determine whether a cell may develop into a tumor. The APC protein helps control how often a cell divides, how it attaches to other cells within a tissue, how the cell polarizes and the morphogenesis of the 3D structures, or whether a cell moves within or away from a tissue. This protein also helps ensure that the chromosome number in cells produced through cell division is correct. The APC protein accomplishes these tasks mainly through association with other proteins, especially those that are involved in cell attachment and signaling. The activity of one protein in particular, beta-catenin, is controlled by the APC protein (see: Wnt signaling pathway). Regulation of beta-catenin prevents genes that stimulate cell division from being turned on too often and prevents cell overgrowth.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: adenomatous polyposis coli

Edit

‘I felt like a bystander in my own internal recovery’: one woman’s battle for health ...

AOL 01 Dec 2024
Magnitude. Or, should I say. weight ... Familial adenomatous polyposis is a rare hereditary syndrome, caused by a defect in the adenomatous polyposis coli gene, a tumour suppressor gene, that raises the risk of developing colorectal cancer to nearly 100% ... .
Edit

‘I felt like a bystander in my own internal recovery’: one woman’s battle for health after a life-changing diagnosis

The Observer 01 Dec 2024
Magnitude. Or, should I say. weight ... Familial adenomatous polyposis is a rare hereditary syndrome, caused by a defect in the adenomatous polyposis coli gene, a tumour suppressor gene, that raises the risk of developing colorectal cancer to nearly 100% ... .
Edit

Understanding and navigating genetic risks for cancer

The Times of India 28 Nov 2024
BRCA1 and BRCA2 Mutations ... Lynch Syndrome ... 3 ... The adenomatous polyposis coli gene mutation has been linked to familial adenomatous polyposis (FAP), which is a condition that results in the growth of hundreds of polyps inside the colon and the rectum.
Edit

Desmoid Tumors Market Forecasts by DelveInsight Signal Groundbreaking Growth by 2032 | SpringWorks Therapeutics, Ayala, ...

GetNews 07 Feb 2024
... familial adenomatous polyposis (FAP) ... In cases with FAP, desmoid tumors have been associated with mutations in the tumor suppressor gene APC (5q21-q22) encoding the adenomatous polyposis coli protein.
Edit

Eisai Furthers Oncology Research in Gastrointestinal Cancer Treatment with New Data at ASCO GI 2024

Longview News-Journal 16 Jan 2024
... signaling, it is expected to inhibit not only ligand-dependent activation but also activation caused by gene mutations in Wnt signaling factors such as adenomatous polyposis coli (APC) and β-catenin.
Edit

A gene that suppresses colon cancer

The Galveston Daily News 06 Sep 2023
Polyps can eventually turn into cancer, which is why they must be monitored ... A second gene involved in colon cancer is called Adenomatous Polyposis Coli (APC) which is another tumor suppressor gene that prevents tumor development ... ....
Edit

Eloxx Pharmaceuticals Reports Second Quarter 2023 Financial and Operating Results and Provides ...

Enid News & Eagle 14 Aug 2023
... sufficient funding, to develop ZKN-013 to treat FAP, targeting a subset of patients that have nonsense mutations in the Adenomatous Polyposis Coli (APC) gene that is truncated in these patients.
Edit

More About Wnt Inhibitors: Attention to Tumor Regulator DKK1

Pharmiweb 02 Aug 2023
Author Company. BetaLifeScience Author Name. Enel Dang Author Email. service1@betalifesci.com Author Telephone ... This complex includes proteins such as Axin, APC (Adenomatous Polyposis Coli), GSK-3β (Glycogen Synthase Kinase-3β), and others ... Osteoporosis ... .
Edit

Eisai Delivers New Data and Highlights Continued Progress of Oncology Portfolio and Pipeline at ASCO 2023

Longview News-Journal 23 May 2023
... signaling, it is expected to inhibit not only ligand-dependent activation but also activation caused by gene mutations in Wnt signaling factors such as adenomatous polyposis coli (APC) and β-catenin.
Edit

Eloxx Pharmaceuticals Reports First Quarter 2023 Financial and Operating Results and Provides ...

Enid News & Eagle 15 May 2023
Familial Adenomatous Polyposis (FAP)Eloxx also plans to develop ZKN-013 to treat FAP, targeting a subset of patients that have nonsense mutations in the Adenomatous Polyposis Coli (APC) gene that is ...
Edit

Eloxx Pharmaceuticals Reports Fourth Quarter 2022 Financial and Operating Results and Provides ...

Eagle-Tribune 03 Apr 2023
(NASDAQ ... Familial Adenomatous Polyposis (FAP)Eloxx also plans to develop ZKN-013 to treat FAP, targeting a subset of patients that have nonsense mutations in the Adenomatous Polyposis Coli (APC) gene that is truncated in these patients ... The U.S ... Media ... .
Edit

Eloxx Pharmaceuticals Announces Submission of Investigational New Drug (IND) Application for ZKN-013

Enid News & Eagle 28 Mar 2023
... polyposis (FAP) expected in first half of 2023 ... Eloxx is targeting a subset of patients that have nonsense mutations in the Adenomatous Polyposis Coli (APC) gene that is truncated in these patients.
Edit

Rare disease: Causes, signs and symptoms, treatment, who should get tested

Hindustan Times 08 Mar 2023
It is an inherited condition caused by a defect in the Adenomatous Polyposis Coli (APC) gene mutation which results in a generalised growth disorder expressed as benign and malignant tumors in a variety of tissues.”.
Edit

Eisai Aims to Advance Gastrointestinal Cancer Treatment with Research Across Multiple Tumor Types at ASCO ...

Victoria Advocate 18 Jan 2023
... signaling, it is expected to inhibit not only ligand-dependent activation but also activation caused by gene mutations in Wnt signaling factors such as adenomatous polyposis coli (APC) and β-catenin.

Most Viewed

×