Difference between revisions of "Team:NJU-China/Notebook"

 
(11 intermediate revisions by 2 users not shown)
Line 11: Line 11:
 
<script type="text/javascript" src="https://2017.igem.org/Team:NJU-China/Javascript:jquery-jumpto?action=raw&ctype=text/javascript"></script>
 
<script type="text/javascript" src="https://2017.igem.org/Team:NJU-China/Javascript:jquery-jumpto?action=raw&ctype=text/javascript"></script>
 
<link rel="stylesheet" type="text/css" href="https://2017.igem.org/Team:NJU-China/CSS:loaderskit?action=raw&ctype=text/css">
 
<link rel="stylesheet" type="text/css" href="https://2017.igem.org/Team:NJU-China/CSS:loaderskit?action=raw&ctype=text/css">
 
  
 
<style>
 
<style>
Line 47: Line 46:
 
}
 
}
 
#HQ_page p {
 
#HQ_page p {
     font-family: proxima-nova,"Arial",Helvetica,sans-serif;
+
     font-family: proxima-novabond,"Arial",Helvetica,sans-serif;
 
     font-size: 19px;
 
     font-size: 19px;
 
     text-align: justify;
 
     text-align: justify;
Line 131: Line 130:
 
     font-size: 30px;
 
     font-size: 30px;
 
     color: #270D00;
 
     color: #270D00;
 +
}
 +
.events-content em
 +
{
 +
    margin-top: -15px;
 
}
 
}
 
.notetop
 
.notetop
Line 141: Line 144:
  
 
}
 
}
/* --------------------------------
 
 
Primary style
 
 
-------------------------------- */
 
*, *::after, *::before {
 
  box-sizing: border-box;
 
}
 
 
html {
 
  font-size: 62.5%;
 
}
 
 
body {
 
  font-size: 1.6rem;
 
  font-family: "Fira Sans", sans-serif;
 
  color: #383838;
 
  background-color: #f8f8f8;
 
}
 
 
a {
 
  color: #491A06;
 
  text-decoration: none;
 
}
 
 
/* --------------------------------
 
 
Main Components
 
 
-------------------------------- */
 
.cd-horizontal-timeline {
 
  opacity: 0;
 
  margin: 2em auto;
 
  -webkit-transition: opacity 0.2s;
 
  -moz-transition: opacity 0.2s;
 
  transition: opacity 0.2s;
 
}
 
.cd-horizontal-timeline::before {
 
  /* never visible - this is used in jQuery to check the current MQ */
 
  content: 'mobile';
 
  display: none;
 
}
 
.cd-horizontal-timeline.loaded {
 
  /* show the timeline after events position has been set (using JavaScript) */
 
  opacity: 1;
 
}
 
.cd-horizontal-timeline .timeline {
 
  position: relative;
 
  height: 100px;
 
  width: 90%;
 
  max-width: 800px;
 
  margin: 0 auto;
 
}
 
.cd-horizontal-timeline .events-wrapper {
 
  position: relative;
 
  height: 100%;
 
  margin: 0 40px;
 
  overflow: hidden;
 
}
 
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
 
  /* these are used to create a shadow effect at the sides of the timeline */
 
  content: '';
 
  position: absolute;
 
  z-index: 2;
 
  top: 0;
 
  height: 100%;
 
  width: 20px;
 
}
 
.cd-horizontal-timeline .events-wrapper::before {
 
  left: 0;
 
  background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
 
  background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
 
}
 
.cd-horizontal-timeline .events-wrapper::after {
 
  right: 0;
 
  background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
 
  background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
 
}
 
.cd-horizontal-timeline .events {
 
  /* this is the grey line/timeline */
 
  position: absolute;
 
  z-index: 1;
 
  left: 0;
 
  top: 49px;
 
  height: 2px;
 
  /* width will be set using JavaScript */
 
  background: #dfdfdf;
 
  -webkit-transition: -webkit-transform 0.4s;
 
  -moz-transition: -moz-transform 0.4s;
 
  transition: transform 0.4s;
 
}
 
.cd-horizontal-timeline .filling-line {
 
  /* this is used to create the green line filling the timeline */
 
  position: absolute;
 
  z-index: 1;
 
  left: 0;
 
  top: 0;
 
  height: 100%;
 
  width: 100%;
 
  background-color: #491A06;
 
  -webkit-transform: scaleX(0);
 
  -moz-transform: scaleX(0);
 
  -ms-transform: scaleX(0);
 
  -o-transform: scaleX(0);
 
  transform: scaleX(0);
 
  -webkit-transform-origin: left center;
 
  -moz-transform-origin: left center;
 
  -ms-transform-origin: left center;
 
  -o-transform-origin: left center;
 
  transform-origin: left center;
 
  -webkit-transition: -webkit-transform 0.3s;
 
  -moz-transition: -moz-transform 0.3s;
 
  transition: transform 0.3s;
 
}
 
.cd-horizontal-timeline .events a {
 
  position: absolute;
 
  bottom: 0;
 
  z-index: 2;
 
  text-align: center;
 
  font-size: 1.3rem;
 
  padding-bottom: 15px;
 
  color: #383838;
 
  /* fix bug on Safari - text flickering while timeline translates */
 
  -webkit-transform: translateZ(0);
 
  -moz-transform: translateZ(0);
 
  -ms-transform: translateZ(0);
 
  -o-transform: translateZ(0);
 
  transform: translateZ(0);
 
}
 
.cd-horizontal-timeline .events a::after {
 
  /* this is used to create the event spot */
 
  content: '';
 
  position: absolute;
 
  left: 50%;
 
  right: auto;
 
  -webkit-transform: translateX(-50%);
 
  -moz-transform: translateX(-50%);
 
  -ms-transform: translateX(-50%);
 
  -o-transform: translateX(-50%);
 
  transform: translateX(-50%);
 
  bottom: -5px;
 
  height: 12px;
 
  width: 12px;
 
  border-radius: 50%;
 
  border: 2px solid #dfdfdf;
 
  background-color: #f8f8f8;
 
  -webkit-transition: background-color 0.3s, border-color 0.3s;
 
  -moz-transition: background-color 0.3s, border-color 0.3s;
 
  transition: background-color 0.3s, border-color 0.3s;
 
}
 
.no-touch .cd-horizontal-timeline .events a:hover::after {
 
  background-color: #491A06;
 
  border-color: #491A06;
 
}
 
.cd-horizontal-timeline .events a.selected {
 
  pointer-events: none;
 
}
 
.cd-horizontal-timeline .events a.selected::after {
 
  background-color: #491A06;
 
  border-color: #491A06;
 
}
 
.cd-horizontal-timeline .events a.older-event::after {
 
  border-color: #491A06;
 
}
 
@media only screen and (min-width: 1100px) {
 
  .cd-horizontal-timeline {
 
    margin: 6em auto;
 
  }
 
  .cd-horizontal-timeline::before {
 
    /* never visible - this is used in jQuery to check the current MQ */
 
    content: 'desktop';
 
  }
 
}
 
 
.cd-timeline-navigation a {
 
  /* these are the left/right arrows to navigate the timeline */
 
  position: absolute;
 
  z-index: 1;
 
  top: 50%;
 
  bottom: auto;
 
  -webkit-transform: translateY(-50%);
 
  -moz-transform: translateY(-50%);
 
  -ms-transform: translateY(-50%);
 
  -o-transform: translateY(-50%);
 
  transform: translateY(-50%);
 
  height: 34px;
 
  width: 34px;
 
  border-radius: 50%;
 
  border: 2px solid #dfdfdf;
 
  /* replace text with an icon */
 
  overflow: hidden;
 
  color: transparent;
 
  text-indent: 100%;
 
  white-space: nowrap;
 
  -webkit-transition: border-color 0.3s;
 
  -moz-transition: border-color 0.3s;
 
  transition: border-color 0.3s;
 
}
 
.cd-timeline-navigation a::after {
 
  /* arrow icon */
 
  content: '';
 
  position: absolute;
 
  height: 16px;
 
  width: 16px;
 
  left: 50%;
 
  top: 50%;
 
  bottom: auto;
 
  right: auto;
 
  -webkit-transform: translateX(-50%) translateY(-50%);
 
  -moz-transform: translateX(-50%) translateY(-50%);
 
  -ms-transform: translateX(-50%) translateY(-50%);
 
  -o-transform: translateX(-50%) translateY(-50%);
 
  transform: translateX(-50%) translateY(-50%);
 
  background: url(https://static.igem.org/mediawiki/2017/a/a1/NJU_China_iGEM_2017_calendar_cd-arrow.svg) no-repeat 0 0;
 
}
 
.cd-timeline-navigation a.prev {
 
  left: 0;
 
  -webkit-transform: translateY(-50%) rotate(180deg);
 
  -moz-transform: translateY(-50%) rotate(180deg);
 
  -ms-transform: translateY(-50%) rotate(180deg);
 
  -o-transform: translateY(-50%) rotate(180deg);
 
  transform: translateY(-50%) rotate(180deg);
 
}
 
.cd-timeline-navigation a.next {
 
  right: 0;
 
}
 
.no-touch .cd-timeline-navigation a:hover {
 
  border-color: #491A06;
 
}
 
.cd-timeline-navigation a.inactive {
 
  cursor: not-allowed;
 
}
 
.cd-timeline-navigation a.inactive::after {
 
  background-position: 0 -16px;
 
}
 
.no-touch .cd-timeline-navigation a.inactive:hover {
 
  border-color: #dfdfdf;
 
}
 
 
.cd-horizontal-timeline .events-content {
 
  position: relative;
 
  width: 100%;
 
  margin: 2em 0;
 
  overflow: hidden;
 
  -webkit-transition: height 0.4s;
 
  -moz-transition: height 0.4s;
 
  transition: height 0.4s;
 
}
 
.cd-horizontal-timeline .events-content li {
 
  position: absolute;
 
  z-index: 1;
 
  width: 100%;
 
  left: 0;
 
  top: 0;
 
  -webkit-transform: translateX(-100%);
 
  -moz-transform: translateX(-100%);
 
  -ms-transform: translateX(-100%);
 
  -o-transform: translateX(-100%);
 
  transform: translateX(-100%);
 
  padding: 0 5%;
 
  opacity: 0;
 
  -webkit-animation-duration: 0.4s;
 
  -moz-animation-duration: 0.4s;
 
  animation-duration: 0.4s;
 
  -webkit-animation-timing-function: ease-in-out;
 
  -moz-animation-timing-function: ease-in-out;
 
  animation-timing-function: ease-in-out;
 
}
 
.cd-horizontal-timeline .events-content li.selected {
 
  /* visible event content */
 
  position: relative;
 
  z-index: 2;
 
  opacity: 1;
 
  -webkit-transform: translateX(0);
 
  -moz-transform: translateX(0);
 
  -ms-transform: translateX(0);
 
  -o-transform: translateX(0);
 
  transform: translateX(0);
 
}
 
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
 
  -webkit-animation-name: cd-enter-right;
 
  -moz-animation-name: cd-enter-right;
 
  animation-name: cd-enter-right;
 
}
 
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
 
  -webkit-animation-name: cd-enter-left;
 
  -moz-animation-name: cd-enter-left;
 
  animation-name: cd-enter-left;
 
}
 
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
 
  -webkit-animation-direction: reverse;
 
  -moz-animation-direction: reverse;
 
  animation-direction: reverse;
 
}
 
.cd-horizontal-timeline .events-content li > * {
 
  max-width: 800px;
 
  margin: 0 auto;
 
}
 
.cd-horizontal-timeline .events-content h2 {
 
  font-weight: bold;
 
  font-size: 15px;
 
  font-family: proxima-nova,"Arial",Helvetica,sans-serif,"Playfair Display", serif;
 
  font-weight: 300;
 
  line-height: 1.2;
 
  color: #2B1D08;
 
}
 
.cd-horizontal-timeline .events-content em {
 
  display: block;
 
  font-style: italic;
 
  margin: 24px auto;
 
}
 
.cd-horizontal-timeline .events-content em::before {
 
  content: '- ';
 
}
 
.cd-horizontal-timeline .events-content p {
 
  font-size: 1.4rem;
 
  color: #270D00;
 
}
 
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
 
  line-height: 1.6;
 
}
 
@media only screen and (min-width: 768px) {
 
  .cd-horizontal-timeline .events-content h2 {
 
    font-size: 4.5rem;
 
  }
 
  .cd-horizontal-timeline .events-content em {
 
    font-size: 3.0rem;
 
  }
 
  .cd-horizontal-timeline .events-content p {
 
    font-size: 2.0rem;
 
  }
 
}
 
 
@-webkit-keyframes cd-enter-right {
 
  0% {
 
    opacity: 0;
 
    -webkit-transform: translateX(100%);
 
  }
 
  100% {
 
    opacity: 1;
 
    -webkit-transform: translateX(0%);
 
  }
 
}
 
@-moz-keyframes cd-enter-right {
 
  0% {
 
    opacity: 0;
 
    -moz-transform: translateX(100%);
 
  }
 
  100% {
 
    opacity: 1;
 
    -moz-transform: translateX(0%);
 
  }
 
}
 
@keyframes cd-enter-right {
 
  0% {
 
    opacity: 0;
 
    -webkit-transform: translateX(100%);
 
    -moz-transform: translateX(100%);
 
    -ms-transform: translateX(100%);
 
    -o-transform: translateX(100%);
 
    transform: translateX(100%);
 
  }
 
  100% {
 
    opacity: 1;
 
    -webkit-transform: translateX(0%);
 
    -moz-transform: translateX(0%);
 
    -ms-transform: translateX(0%);
 
    -o-transform: translateX(0%);
 
    transform: translateX(0%);
 
  }
 
}
 
@-webkit-keyframes cd-enter-left {
 
  0% {
 
    opacity: 0;
 
    -webkit-transform: translateX(-100%);
 
  }
 
  100% {
 
    opacity: 1;
 
    -webkit-transform: translateX(0%);
 
  }
 
}
 
@-moz-keyframes cd-enter-left {
 
  0% {
 
    opacity: 0;
 
    -moz-transform: translateX(-100%);
 
  }
 
  100% {
 
    opacity: 1;
 
    -moz-transform: translateX(0%);
 
  }
 
}
 
@keyframes cd-enter-left {
 
  0% {
 
    opacity: 0;
 
    -webkit-transform: translateX(-100%);
 
    -moz-transform: translateX(-100%);
 
    -ms-transform: translateX(-100%);
 
    -o-transform: translateX(-100%);
 
    transform: translateX(-100%);
 
  }
 
  100% {
 
    opacity: 1;
 
    -webkit-transform: translateX(0%);
 
    -moz-transform: translateX(0%);
 
    -ms-transform: translateX(0%);
 
    -o-transform: translateX(0%);
 
    transform: translateX(0%);
 
  }
 
}
 
 
 
</style>
 
</style>
 
</head>
 
</head>
Line 581: Line 174:
 
                     <li class="dropdown-header"><a href="https://2017.igem.org/Team:NJU-China/Results/Conclusions">Results</a></li>
 
                     <li class="dropdown-header"><a href="https://2017.igem.org/Team:NJU-China/Results/Conclusions">Results</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/Results/Conclusions">Conclusions</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/Results/Conclusions">Conclusions</a></li>
                    <li><a href="https://2017.igem.org/Team:NJU-China/Demonstrate">Demonstrate</a></li>
 
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/Safety">Safety</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/Safety">Safety</a></li>
                    <li><a href="https://2017.igem.org/Team:NJU-China/Improve">Improve</a></li>
 
 
                     </ul>  
 
                     </ul>  
 
                 </li>
 
                 </li>
                <li>
+
                <li>
 
                     <a href="https://2017.igem.org/Team:NJU-China/Basic_Part"><i class="fa fa-fw fa-plus"></i> Parts </a>  
 
                     <a href="https://2017.igem.org/Team:NJU-China/Basic_Part"><i class="fa fa-fw fa-plus"></i> Parts </a>  
 
                 </li>
 
                 </li>
 +
                <li>
 +
                    <a href="https://2017.igem.org/Team:NJU-China/Model"><i class="fa fa-fw fa-plus"></i> Model </a>
 +
                </li>                               
 
                 <li class="dropdown">
 
                 <li class="dropdown">
 
                   <a href="https://2017.igem.org/Team:NJU-China/Notebook" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-plus"></i> Notebook <span class="caret"></span></a>
 
                   <a href="https://2017.igem.org/Team:NJU-China/Notebook" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-plus"></i> Notebook <span class="caret"></span></a>
 
                   <ul class="dropdown-menu" role="menu">
 
                   <ul class="dropdown-menu" role="menu">
 
                     <li class="dropdown-header"><a href="https://2017.igem.org/Team:NJU-China/Notebook">Notebook</a></li>
 
                     <li class="dropdown-header"><a href="https://2017.igem.org/Team:NJU-China/Notebook">Notebook</a></li>
                    <li><a href="https://2017.igem.org/Team:NJU-China/Experiments">Experiments</a></li>
 
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/Protocol">Protocol</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/Protocol">Protocol</a></li>
                     <li><a href="https://2017.igem.org/Team:NJU-China/Calendar">Calendar</a></li>
+
                     <li><a href="https://2017.igem.org/Team:NJU-China/Notebook">Calendar</a></li>
 
                   </ul>
 
                   </ul>
 
                 </li>
 
                 </li>
Line 604: Line 197:
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/HP/Silver">Silver HP</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/HP/Silver">Silver HP</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/HP/Gold_Integrated">Intergrated and Gold</a></li>
 
                     <li><a href="https://2017.igem.org/Team:NJU-China/HP/Gold_Integrated">Intergrated and Gold</a></li>
                    <li><a href="https://2017.igem.org/Team:NJU-China/Part_Collection">Public Engagement</a></li>
 
 
                   </ul>
 
                   </ul>
 
                 </li>
 
                 </li>
Line 618: Line 210:
 
         </nav>
 
         </nav>
 
         <!-- /#sidebar-wrapper -->
 
         <!-- /#sidebar-wrapper -->
<nav id="cd-vertical-nav">
+
 
            <ul>
+
   
                <li>
+
                    <a href="#Background" data-number="1">
+
                        <span class="cd-dot"></span>
+
                        <span class="cd-label">Calendar</span>
+
                    </a>
+
                </li>
+
            </ul>
+
        </nav>       
+
 
         <!-- Page Content -->
 
         <!-- Page Content -->
 
        
 
        
Line 642: Line 226:
 
         <div id="page_edge1">
 
         <div id="page_edge1">
 
         </div>
 
         </div>
 +
            <div style="text-align:center;">
 
             <h2>Calendar</h2>
 
             <h2>Calendar</h2>
<article class="htmleaf-container" style="height:600px;">           
+
            </div>
 +
<article class="htmleaf-container">           
 
<section class="cd-horizontal-timeline">
 
<section class="cd-horizontal-timeline">
 
     <div class="timeline">
 
     <div class="timeline">
 
         <div class="events-wrapper">
 
         <div class="events-wrapper">
             <div class="events">
+
             <div class="events" style="font-family:proxima-nova;">
 
                 <ol>
 
                 <ol>
 
                     <li><a href="#0" data-date="20/12/2016" class="selected">10 Dec</a></li>
 
                     <li><a href="#0" data-date="20/12/2016" class="selected">10 Dec</a></li>
Line 683: Line 269:
 
                 <ol>
 
                 <ol>
 
                     <li class="selected" data-date="20/12/2016">
 
                     <li class="selected" data-date="20/12/2016">
                     
 
 
                         <em>December 10th, 2017</em>
 
                         <em>December 10th, 2017</em>
 
                         <p>NJU China briefing session</p>
 
                         <p>NJU China briefing session</p>
Line 741: Line 326:
 
                             Targeting verification in vitro
 
                             Targeting verification in vitro
 
                             <br />
 
                             <br />
                             HEK293 cell was stained with fluorescence and Tpep plasmid was transfected, two days later, the cells was collected and exosome was extracted. Then the exosomes were co-cultured with C2C12 cell and adipose cell for 12 hours individually, cell nucleus were dyed with DAPI, then the cells were observed under fluorescent microscope.
+
                             HEK293 cell was stained with fluorescence and Tpep plasmid was transfected, two days later, the cells was collected and exosome was extracted. Then the exosomes were co-cultured with C2C12 cell and mouse adipose cell 3T3L1 for 12 hours individually, cell nucleus were dyed with DAPI, then the cells were observed under fluorescent microscope.
 
                         </p>
 
                         </p>
 
                     </li>
 
                     </li>
Line 748: Line 333:
 
                         <em>June 18th-June 20th, 2017</em>
 
                         <em>June 18th-June 20th, 2017</em>
 
                         <p>  
 
                         <p>  
                             Exosome verification
+
                             Exosome characterization
 
                             <br />
 
                             <br />
                             TEM and NTA experiments were carried out in the assay of exosome.
+
                             TEM and NTA experiments were carried out in the assay of exosomes.
 
                             <br />
 
                             <br />
 
                             Endotoxin test for exosomes
 
                             Endotoxin test for exosomes
Line 798: Line 383:
 
                             Egfr tracer experiment in vivo
 
                             Egfr tracer experiment in vivo
 
                             <br />
 
                             <br />
4 mice was divided into two groups, experimental group was tail intravenously injected with egfr+tpep exosome, while control group egfr exosome. 12hours later, the mice was dissected, their heart liver spleen lung kidney and adipose tissue were separated.
+
4 mice was divided into two groups, experimental group was tail intravenously injected with egfr siRNA+tpep exosome, while control group egfr siRNA exosome. 12hours later, the mice was dissected, their heart, liver, spleen, lung, kidney and adipose tissue were separated.
 
<br />
 
<br />
RNA extraction of those tissue, reverse transcription and Qpcr was executed to compare egfr expression level in different tissue, failed.
+
RNA extraction of those tissue, reverse transcription and Qpcr was executed to compare egfr expression level in different tissue.
<br />
+
Starvation treatment in group IV for 6 hours, intraperitoneally inject insulin 0.75 unit per kg, Took blood sample form tail end and measure blood glucose at the time of 0, 15, 30, 45, 60, 90, 120 min.
+
<br />
+
Starvation treatment overnight and intraperitoneally inject glucose, the following step is as same as ITT
+
 
+
 
                         </p>
 
                         </p>
 
                     </li>
 
                     </li>
Line 816: Line 396:
 
<br />
 
<br />
 
Aug21 –Sep 5
 
Aug21 –Sep 5
20 mice were fat- fed and divided into fore groups, 5 in each group. Group I was intravenously injected with PBS every two days, Group II egfr-tpep exosome , group III and Group IV Bcl2-tepe exosome, Weight data was collected every day, no obvious tendency in weight lose. After two weeks, took blood by removing eyeball, and heart liver spleen lung kidney and adipose tissue were separated, adipose tissue was weighted.  
+
20 mice were fat- fed and divided into fore groups, 5 in each group. Group I was intravenously injected with PBS every two days, Group II egfr-tpep exosome , group III and Group IV Bcl2-tepe exosome, Weight data was collected every day, no obvious tendency in weight lose. After two weeks, took blood by removing eyeball, and heart liver spleen lung kidney and adipose tissue were separated, adipose tissue was weighted. <br/>
 +
ITT<br/>
 +
Starvation treatment in group IV for 6 hours, intraperitoneally inject insulin 0.75 unit per kg, Took blood sample form tail end and measure blood glucose at the time of 0, 15, 30, 45, 60, 90, 120 min.
 +
<br />
 +
GTT<br/>
 +
Starvation treatment overnight and intraperitoneally inject glucose, the following step is as same as ITT
 +
 
  
 
                         </p>
 
                         </p>
Line 886: Line 472:
 
     <script src="https://2017.igem.org/Team:NJU-China/Javascript:jquery-1110-min?action=raw&ctype=text/javascript" type="text/javascript"></script>
 
     <script src="https://2017.igem.org/Team:NJU-China/Javascript:jquery-1110-min?action=raw&ctype=text/javascript" type="text/javascript"></script>
 
     <script src="https://2017.igem.org/Team:NJU-China/Javascript:bootstrap-min-js?action=raw&ctype=text/javascript" type="text/javascript"></script>
 
     <script src="https://2017.igem.org/Team:NJU-China/Javascript:bootstrap-min-js?action=raw&ctype=text/javascript" type="text/javascript"></script>
     <script src="js/main.js"></script> <!-- Resource jQuery -->
+
     <script src="https://2017.igem.org/Team:NJU-China/Javascript:calendar?action=raw&ctype=text/javascript"></script> <!-- Resource jQuery -->
 
     <script type="text/javascript">
 
     <script type="text/javascript">
 
         $(document).ready(function () {
 
         $(document).ready(function () {

Latest revision as of 00:32, 2 November 2017

NOTEBOOK

Calendar

  1. December 10th, 2017

    NJU China briefing session

  2. January, 2017

    Team member recruitment

  3. Februry 26th,2017

    First meet up, laboratory safety regulation learning and task assignment.

  4. March, April, 2017

    Learn experimental techniques like western blot, RT-PCR, cell culture techniques, etc.
    Data collection and project discussion
    Collaboration with SYSU-Software

  5. March, 2017

    Human practice:Interview with doctors and patients from Nanjing General Hospital and project design.

  6. March 19th-Jun 8th, 2017

    Model built

  7. June 2nd-Jun 9th, 2017

    Anti-Bcl2 plasmid, tpep plasmid design and construction

  8. June 17th-June 22th, 2017

    Targeting verification in vitro
    HEK293 cell was stained with fluorescence and Tpep plasmid was transfected, two days later, the cells was collected and exosome was extracted. Then the exosomes were co-cultured with C2C12 cell and mouse adipose cell 3T3L1 for 12 hours individually, cell nucleus were dyed with DAPI, then the cells were observed under fluorescent microscope.

  9. June 18th-June 20th, 2017

    Exosome characterization
    TEM and NTA experiments were carried out in the assay of exosomes.
    Endotoxin test for exosomes

  10. June 26th-July 1st, 2017

    Anti-Bcl2 and Tpep plasmid were co-transfected into HEK 293 cell, then the exosome extracted was co-cultured with adipose cell. Protein and RNA were extracted and stored for further research.

  11. July 5th-June 13th, 2017

    Run three times western blot to detect whether there is down-regulated expression of BCL2 protein in adipose cell after plasmids transfection, all failed.

  12. July 16th, 2017

    Bcl2 RNA reverse transcription and Qpcr to exam the expression level of BCL2 in experimental group, Bcl2 RNA expression marginally reduced.

  13. July 20th-August 4th, 2017

    Bcl2 plasmid redesign and improvement, repeat experiments to value the effect of the new plasmid.
    Interlab
    Plasmids transformation into E.coli.
    Pick single colonies and run colony PCR.
    OD600 measurement , plasmid extraction and DNA electrophoresis.
    Measure GFP fluorescence intensity with microplate reader
    Flow cytometry

  14. August 6th-August 8th, 2017

    Egfr tracer experiment in vivo
    4 mice was divided into two groups, experimental group was tail intravenously injected with egfr siRNA+tpep exosome, while control group egfr siRNA exosome. 12hours later, the mice was dissected, their heart, liver, spleen, lung, kidney and adipose tissue were separated.
    RNA extraction of those tissue, reverse transcription and Qpcr was executed to compare egfr expression level in different tissue.

  15. August 15th-September 5th, 2017

    Aug 15 – Sep 5 Valuation in vivo
    Aug 15- Aug20 Plasmid maxi extraction, cell transfection and exosome extraction.
    Aug21 –Sep 5 20 mice were fat- fed and divided into fore groups, 5 in each group. Group I was intravenously injected with PBS every two days, Group II egfr-tpep exosome , group III and Group IV Bcl2-tepe exosome, Weight data was collected every day, no obvious tendency in weight lose. After two weeks, took blood by removing eyeball, and heart liver spleen lung kidney and adipose tissue were separated, adipose tissue was weighted.
    ITT
    Starvation treatment in group IV for 6 hours, intraperitoneally inject insulin 0.75 unit per kg, Took blood sample form tail end and measure blood glucose at the time of 0, 15, 30, 45, 60, 90, 120 min.
    GTT
    Starvation treatment overnight and intraperitoneally inject glucose, the following step is as same as ITT

  16. September 8th, 2017

    LDL, HDL,CHO, TG measurement of blood serum, failed
    protein and RNA extraction of liver and adipose, RNA reverse transcription.

  17. September 10th-September 16th, 2017

    Western blot of liver and adipose protein to exam Bcl2 expression level, the protein was not so pure that it showed obscure strip
    Repeated experiment: Centrifugate the protein before loading, obscure strip disappeared, still ,no tendency.
    Sep 14 Sent fat tissue to be made into sections, stained by means of hematoxylin eosin (HE) method and calculated under the Image Analyzer.
    Sep 9 Bcl2-mRNA Qpcr with the method of SYBR Green

  18. September 25th-October 23th, 2017

    Repeated exprement: Validation in vivo, exosomes were injected every two days and weight data was collected everyday. Four weeks later, took blood by removing eyeball, and heart liver spleen lung kidney and adipose tissue were separated. ITT and GTT were also carried out. Western blot and Qpcr were used to exam Bcl2 protein and Bcl2 mRNA individually, failed.
    Oct 9 Part submission to Nanjing Genescript

  19. October 24th-October 30th, 2017

    Final Data analysis and preparation.

PROTOCOL