Team:KAIST-Korea/Project/Introduction
From 2010.igem.org
(→Why Y.canD?) |
(→Why Y.canD?) |
||
Line 17: | Line 17: | ||
== Why Y.canD? == | == Why Y.canD? == | ||
+ | <head> | ||
+ | <SCRIPT LANGUAGE="JavaScript"> | ||
+ | var stmnLEFT = 835; // 스크롤메뉴의 좌측 위치 | ||
+ | var stmnGAP1 = 440; // 페이지 헤더부분의 여백 (이보다 위로는 올라가지 않음) | ||
+ | var stmnGAP2 = 10; // 스크롤시 브라우저 상단과 약간 띄움. 필요없으면 0으로 세팅 | ||
+ | var stmnBASE = 480; // 스크롤메뉴 초기 시작위치 (아무렇게나 해도 상관은 없지만 stmnGAP1과 약간 차이를 주는게 보기 좋음) | ||
+ | var stmnActivateSpeed = 200; // 움직임을 감지하는 속도 (숫자가 클수록 늦게 알아차림) | ||
+ | var stmnScrollSpeed = 10; // 스크롤되는 속도 (클수록 늦게 움직임) | ||
+ | |||
+ | function RefreshStaticMenu() | ||
+ | { | ||
+ | var stmnStartPoint, stmnEndPoint, stmnRefreshTimer; | ||
+ | |||
+ | stmnStartPoint = parseInt(STATICMENU.style.top, 10); | ||
+ | stmnEndPoint = document.body.scrollTop + stmnGAP2; | ||
+ | if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1; | ||
+ | |||
+ | if ( stmnStartPoint != stmnEndPoint ) { | ||
+ | stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 ); | ||
+ | STATICMENU.style.top = parseInt(STATICMENU.style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount ); | ||
+ | stmnRefreshTimer = stmnScrollSpeed; | ||
+ | } | ||
+ | else { | ||
+ | stmnRefreshTimer = stmnActivateSpeed; | ||
+ | } | ||
+ | |||
+ | setTimeout ("RefreshStaticMenu();", stmnRefreshTimer); | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | function InitializeStaticMenu() | ||
+ | { | ||
+ | STATICMENU.style.top = document.body.scrollTop + stmnBASE; | ||
+ | RefreshStaticMenu(); | ||
+ | STATICMENU.style.left = stmnLEFT; | ||
+ | } | ||
+ | |||
+ | |||
+ | </SCRIPT> | ||
+ | </head> | ||
+ | |||
+ | <body>//바로 위에 아래의 소스를 삽입합니다. | ||
+ | |||
+ | |||
+ | |||
+ | <div id="STATICMENU" style="position:absolute; z-index:100; left:830px;"> | ||
+ | |||
+ | //배너나 이미지 기타 태그를 이안에 넣으면 됩니다.. | ||
+ | <img src="http://cyimg31.cyworld.com/common/file_down.asp?redirect=%2F310023%2F2010%2F7%2F11%2F4%2F%C6%EB%B1%CF1%2Ejpg"> | ||
+ | </DIV> | ||
+ | <script language="javascript">InitializeStaticMenu();</script> | ||
+ | </body> | ||
Two fifths of mankind is suffering from cancer during full life-time, and one fourths dies because of this disease. The rate of people who get cancer increases with age. However, human cannot notice easily about getting cancer or not due to incubation period. Doing so is easier when cancer’s diagnosed at an early stage as treatment is often simpler and more likely to be effective. So finding cancer early is very important. | Two fifths of mankind is suffering from cancer during full life-time, and one fourths dies because of this disease. The rate of people who get cancer increases with age. However, human cannot notice easily about getting cancer or not due to incubation period. Doing so is easier when cancer’s diagnosed at an early stage as treatment is often simpler and more likely to be effective. So finding cancer early is very important. | ||
Half of people are killed by cancer within five years after a diagnosis from doctor, and cancer shortens 15~20 years of lifespan of patients. Another interesting research said that 40% of cancer patients experience severe mental distress; most of them are suffered by pusillanimity. It can make one's life tragedy, not only oneself, but also one's family. Another terrible cause why cancer is severe to us is medical expenses. If someone got a cancer, we will receive huge doctor's fee like hundreds of thousands dollar. It makes terribly huge burden for ordinary family. Unfortunately, someone is sometimes suffering to cancer without any treatment. | Half of people are killed by cancer within five years after a diagnosis from doctor, and cancer shortens 15~20 years of lifespan of patients. Another interesting research said that 40% of cancer patients experience severe mental distress; most of them are suffered by pusillanimity. It can make one's life tragedy, not only oneself, but also one's family. Another terrible cause why cancer is severe to us is medical expenses. If someone got a cancer, we will receive huge doctor's fee like hundreds of thousands dollar. It makes terribly huge burden for ordinary family. Unfortunately, someone is sometimes suffering to cancer without any treatment. |
Revision as of 09:10, 11 July 2010
Why Y.canD?<head> <SCRIPT LANGUAGE="JavaScript"> var stmnLEFT = 835; // 스크롤메뉴의 좌측 위치 var stmnGAP1 = 440; // 페이지 헤더부분의 여백 (이보다 위로는 올라가지 않음) var stmnGAP2 = 10; // 스크롤시 브라우저 상단과 약간 띄움. 필요없으면 0으로 세팅 var stmnBASE = 480; // 스크롤메뉴 초기 시작위치 (아무렇게나 해도 상관은 없지만 stmnGAP1과 약간 차이를 주는게 보기 좋음) var stmnActivateSpeed = 200; // 움직임을 감지하는 속도 (숫자가 클수록 늦게 알아차림) var stmnScrollSpeed = 10; // 스크롤되는 속도 (클수록 늦게 움직임)
stmnStartPoint = parseInt(STATICMENU.style.top, 10); stmnEndPoint = document.body.scrollTop + stmnGAP2; if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1; if ( stmnStartPoint != stmnEndPoint ) { stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 ); STATICMENU.style.top = parseInt(STATICMENU.style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount ); stmnRefreshTimer = stmnScrollSpeed; } else { stmnRefreshTimer = stmnActivateSpeed; } setTimeout ("RefreshStaticMenu();", stmnRefreshTimer); }
function InitializeStaticMenu() { STATICMENU.style.top = document.body.scrollTop + stmnBASE; RefreshStaticMenu(); STATICMENU.style.left = stmnLEFT; }
<body>//바로 위에 아래의 소스를 삽입합니다.
//배너나 이미지 기타 태그를 이안에 넣으면 됩니다.. <img src="http://cyimg31.cyworld.com/common/file_down.asp?redirect=%2F310023%2F2010%2F7%2F11%2F4%2F%C6%EB%B1%CF1%2Ejpg"> <script language="javascript">InitializeStaticMenu();</script>
</body>
Two fifths of mankind is suffering from cancer during full life-time, and one fourths dies because of this disease. The rate of people who get cancer increases with age. However, human cannot notice easily about getting cancer or not due to incubation period. Doing so is easier when cancer’s diagnosed at an early stage as treatment is often simpler and more likely to be effective. So finding cancer early is very important.
Half of people are killed by cancer within five years after a diagnosis from doctor, and cancer shortens 15~20 years of lifespan of patients. Another interesting research said that 40% of cancer patients experience severe mental distress; most of them are suffered by pusillanimity. It can make one's life tragedy, not only oneself, but also one's family. Another terrible cause why cancer is severe to us is medical expenses. If someone got a cancer, we will receive huge doctor's fee like hundreds of thousands dollar. It makes terribly huge burden for ordinary family. Unfortunately, someone is sometimes suffering to cancer without any treatment.
In the case for women, breast cancer is really severe cancer and the most frequent cancer that can find. The following graph shows that a quarter of women who got a cancer have a breast cancer.
Whole PathwayFlash
Antibodies for Detecting Cancer Cells Cancer cell has distinctive protein expression pattern. This expression pattern also varies on the cell line of cancer cell. For example CD15 and CD30 proteins are OVEREXPRESSED on Hodgkin’s disease, kind of lymphoma, and CEA is over-expressed on adenocarcinoma cell. These protein expression patterns also vary on the cell line of cancer. For example breast cancer cell has different protein expression pattern; over-expression of Estrogen receptor, Progesterone receptor and KI67 of MCF-7 cell line and over-expression of Human Epidermal Growth Factor receptor, KI67 of AU-56 or SK-BR-3 cell line. Therefore, it allows us to know not only the existence of cancer, but also the type of cell line to identify the protein expression pattern of biopsy sample. We selected Estrogen Receptor and HER2 for our project to make a diagnosis the breast cancer. The reason why we selected these proteins is that they are differently over-expressed. Comparing over-expression pattern of these proteins can diagnose existence of cancer and type of cancer.
Making Biosensor – Yeast Cancer DetectorA biosensor is a device for the detection of an analyst that combines a biological component with a physicochemical detector component.[1] In order to make biosensor with genetically engineered organism, we should consider the following basic sensing process. The ‘Receive input’ part can be alternated by represented receptor, the ‘Process’ part can be signaling pathway which changes input to output, and the ‘Extract output’ part can be something easily detectable by human. Nowadays, pigments or fluorescence proteins are usually used for output, and in order to express these substances, gene expression is made constant use in genetically modified organism. Thus, all engineered biosensors with organisms should be modeled on (consist of) 1) biochemical receptors which can activate gene expression, 2) biological pathway, and 3) gene activation for output.
Why Yeast? Why we use ‘Yeast’ instead of ‘E. coli’?
E. coli control is easier than Yeast control. E. coli has faster cell cycle than Yeast. Moreover, there are many E. coli templates. But, although E. coli has many profits, we choose Yeast. Why? The following table is E. coli properties.[2]
Biochemical Receptors
Fusion Antibody Receptors The Fusion Antibody-Receptor is a protein which receptor genetically combines with a specific antibody. The following figures show what the fusion antibody-receptor is for details.
Protein sequence: mRNA sequece: Signal Pathway : JAK-STAT PathwayThere are many signal pathways from plasma membrane receptor to the gene regulation. Figure B is an example of these pathways, MAP kinase pathway linked with RAS pathway. In this pathway,
Because JAK-STAT pathway have only 5 steps while RAS-MAP pathway require 9 steps, we decide to port JAK-STAT pathway to the Yeast.
Gene Activation for Output Inside the nucleus the active STAT dimer binds to cytokine inducible promoter regions of genes containing gamma activated site (GAS) motif and activate transcription of cytokine inducible genes.[5] The STAT protein can be dephosphorylated by nuclear phosphatases which lead to inactivation of STAT and the transcription factor becomes transported out of the nucleus by exporting crm1/RanGTP. Using this pathway, we altered the green fluorescent protein (GFP) gene instead of cytokine inducible genes. So, we could show GFP expression through the previous whole pathway.[Fig. 5]
References
|
Sub-Menu
|