Difference between revisions of "Team:XJTLU-CHINA/Attributions"

(Replaced content with "{{XJTLU-CHINA}} <html> </html>")
Line 2: Line 2:
 
<html>
 
<html>
  
 +
<style>
 +
        li{
 +
            background-color: transparent;
 +
        }
 +
    </style>
 +
    <style>
 +
        *, *:before, *:after {
 +
            box-sizing: border-box;
 +
        }
  
 +
        html {
 +
            font-size: 18px;
 +
            line-height: 1.5;
 +
            font-weight: 300;
 +
            color: #333;
 +
            font-family: "Nunito Sans", sans-serif;
 +
        }
  
 +
        body {
 +
            margin: 0;
 +
            padding: 0;
 +
            height: 100vh;
 +
            background-color: #ecf0f9;
 +
            background-attachment: fixed;
 +
        }
  
 +
        .content {
 +
            display: flex;
 +
            margin: 0 auto;
 +
            justify-content: center;
 +
            align-items: center;
 +
            flex-wrap: wrap;
 +
            width: 100%;
 +
            padding-top: 40px;
 +
            padding-bottom: 40px;
 +
        }
  
 +
        .heading {
 +
            width: 100%;
 +
            margin-left: 1rem;
 +
            font-weight: 900;
 +
            font-size: 1.618rem;
 +
            text-transform: uppercase;
 +
            letter-spacing: .1ch;
 +
            line-height: 1;
 +
            padding-bottom: .5em;
 +
            margin-bottom: 1rem;
 +
            position: relative;
 +
        }
 +
        .heading:after {
 +
            display: block;
 +
            content: '';
 +
            position: absolute;
 +
            width: 60px;
 +
            height: 4px;
 +
            background: linear-gradient(135deg, #1a9be6, #1a57e6);
 +
            bottom: 0;
 +
        }
 +
 +
        .description {
 +
            width: 100%;
 +
            margin-top: 0;
 +
            margin-left: 1rem;
 +
            margin-bottom: 3rem;
 +
        }
 +
 +
        .card {
 +
            color: inherit;
 +
            cursor: pointer;
 +
            width: 300px;
 +
            min-width: 300px;
 +
            height: 400px;
 +
            min-height: 400px;
 +
            perspective: 1000px;
 +
            margin: 2.5rem;
 +
            position: relative;
 +
        }
 +
        @media screen and (max-width: 800px) {
 +
            .card {
 +
                width: calc(50% - 2rem);
 +
            }
 +
        }
 +
        @media screen and (max-width: 500px) {
 +
            .card {
 +
                width: 100%;
 +
            }
 +
        }
 +
 +
        .front,
 +
        .back {
 +
            display: flex;
 +
            border-radius: 6px;
 +
            background-position: center;
 +
            background-size: cover;
 +
            text-align: center;
 +
            justify-content: center;
 +
            align-items: center;
 +
            position: absolute;
 +
            height: 100%;
 +
            width: 100%;
 +
            -webkit-backface-visibility: hidden;
 +
            backface-visibility: hidden;
 +
            transform-style: preserve-3d;
 +
            transition: ease-in-out 600ms;
 +
        }
 +
 +
        .front {
 +
            background-size: cover;
 +
            padding: 2rem;
 +
            font-size: 1.618rem;
 +
            font-weight: 600;
 +
            color: #fff;
 +
            overflow: hidden;
 +
            font-family: Poppins, sans-serif;
 +
        }
 +
        .front:before {
 +
            position: absolute;
 +
            display: block;
 +
            content: '';
 +
            top: 0;
 +
            left: 0;
 +
            right: 0;
 +
            bottom: 0;
 +
            background: linear-gradient(135deg, #1a9be6, #1a57e6);
 +
            opacity: .25;
 +
            z-index: -1;
 +
        }
 +
        .card:hover .front {
 +
            transform: rotateY(180deg);
 +
        }
 +
        .card:nth-child(even):hover .front {
 +
            transform: rotateY(-180deg);
 +
        }
 +
 +
        .back {
 +
            background: #fff;
 +
            transform: rotateY(-180deg);
 +
            padding: 0 2em;
 +
        }
 +
        .card:hover .back {
 +
            transform: rotateY(0deg);
 +
        }
 +
        .card:nth-child(even) .back {
 +
            transform: rotateY(180deg);
 +
        }
 +
        .card:nth-child(even):hover .back {
 +
            transform: rotateY(0deg);
 +
        }
 +
 +
        .button {
 +
            transform: translateZ(40px);
 +
            cursor: pointer;
 +
            -webkit-backface-visibility: hidden;
 +
            backface-visibility: hidden;
 +
            font-weight: bold;
 +
            color: #fff;
 +
            padding: .5em 1em;
 +
            border-radius: 100px;
 +
            font: inherit;
 +
            background: linear-gradient(135deg, #1a9be6, #1a57e6);
 +
            border: none;
 +
            position: relative;
 +
            transform-style: preserve-3d;
 +
            transition: 300ms ease;
 +
        }
 +
        .button:before {
 +
            transition: 300ms ease;
 +
            position: absolute;
 +
            display: block;
 +
            content: '';
 +
            transform: translateZ(-40px);
 +
            -webkit-backface-visibility: hidden;
 +
            backface-visibility: hidden;
 +
            height: calc(100% - 20px);
 +
            width: calc(100% - 20px);
 +
            border-radius: 100px;
 +
            left: 10px;
 +
            top: 16px;
 +
            box-shadow: 0 0 10px 10px rgba(26, 87, 230, 0.25);
 +
            background-color: rgba(26, 87, 230, 0.25);
 +
        }
 +
        .button:hover {
 +
            transform: translateZ(55px);
 +
        }
 +
        .button:hover:before {
 +
            transform: translateZ(-55px);
 +
        }
 +
        .button:active {
 +
            transform: translateZ(20px);
 +
        }
 +
        .button:active:before {
 +
            transform: translateZ(-20px);
 +
            top: 12px;
 +
        }
 +
        .nav__link:hover{
 +
            background-color: transparent;
 +
        }
 +
    </style>
 +
   
 +
    <style>
 +
        a{
 +
            text-decoration: none;
 +
        }
 +
        a:hover{
 +
            text-decoration: none;
 +
        }
 +
    </style>
 +
</head>
 +
<body style="background-color: rgb(84,146,197);">
 +
 +
 +
<div class="container-fluid" style="background-color: rgb(84,146,197); padding: 40px 30px; margin-top: 35px">
 +
 +
 +
 +
    <div style="margin-top: 20px; width: 100px; float: left"></div>
 +
    <img src="https://static.igem.org/mediawiki/2018/1/1a/T--XJTLU-CHINA--lo.png" style="width: 140px; margin-top: 20px; float: left">
 +
    <h1 style="font-family:'Impact'; color: white; font-size: 80px; margin-top: 20px; margin-bottom: 50px; float: left; margin-left: 20px">
 +
        Attribution
 +
    </h1>
 +
 +
    <div class="container-fluid" style="background-color: white; box-shadow: 0px 0px 4px rgba(0,0,0,0.56); border-radius: 5px; margin-top: 200px; padding-bottom: 50px">
 +
 +
        <div style="text-align: center; margin-top: 50px; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">Team management</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">Team recruitment</h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    Yijing Gong (advisor), Zixin Rong (advisor), Haohui Fang (leader)
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">Skills training</h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    Haohui Fang, Zixin Rong, Yijing Gong
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Team manager
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    Haohui Fang
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div style="text-align: center; margin-top: 50px; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">Self-achievement</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Idea formulation
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    Haoping Cheng, Shiyu Liu, Miaoyan Li formulated the initial project idea. Haohui Fang involved in the later experiment design and project improvements.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Wet experiments
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    The majority of our members contribute to wet experiments. The main members in each group are listed below:
 +
                </p>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>1. Gene synthesis from oligos: </strong>
 +
                    Sihong Yu, Yuxuan Wu, Hanpu Wang, Di zhen<br>
 +
                    <strong>2. Plasmid construction: </strong>
 +
                    Peng Chai, Haoping Chen, Sihong Yu, Yuxuan Wu, Di zhen, Haohui Fang, Boya Chen, Miaoyan.Li, Shiyu Liu<br>
 +
                    <strong>3. Mammalian cell experiment: </strong>
 +
                    Haohui Fang, Peng Chai, Haoping Chen, Yuxuan Wu, Shiyu Liu, Boya Chen, Liuhua Chen<br>
 +
                    <strong>4. Interlab: </strong>
 +
                    Junliang Lin<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Modeling
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    Exosome production and Blood circulation model: Hanfu Shi, Mian Wu, Qinyu Ni
 +
                    Delivery through BBB and expression in neuron models: Hanfu Shi
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Wiki page
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>1. Programmer: </strong>
 +
                    Zeyu Yang, Mian Wu<br>
 +
                    <strong>2. Layout: </strong>
 +
                    Mian Wu, Zeyu Yang, Shiyu Liu, Haohui Fang<br>
 +
                    <strong>3. Art design: </strong>
 +
                    Shiyu Liu, Qinyu Ni, Zeyu Yang, Mian Wu, Boya Chen, Xiaohan, Zhang<br>
 +
                    <strong>4. Writings: </strong>
 +
                    Miaoyan Li, Haohui Fang, Xiaohan Zhang, Mian Wu, Yuxuan Wu, Peng Chai, Di Zhen, Haoping Cheng<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Human Practices
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>1. Manager: </strong>
 +
                    Xiaohan Zhang<br>
 +
                    <strong>2. Participants: </strong>
 +
                    Haohui Fang, Peng Chai, Liuhua Chen, Boya Chen<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Finance and Accessory
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    Haohui Fang, Boya Chen
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div style="text-align: center; margin-top: 50px; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">Sincere and special thanks to venerable back-ups</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Primary PI
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Dr. Guoxia Han</strong> gave us alerting suggestion on scientific research and made his best to ensure us go ahead bravely.
 +
                    He also spent effort in quality control for every work we did.
 +
                    He would also accompany us to the giant jamboree and take care of us in the U.S.
 +
                </p>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Dr. David Chiu</strong> first prepared extra classes to help us understand more about synthetic biology techniques and lab safety.
 +
                    He gave us constant advice and knowledge in project determination and data analyses. Moreover,
 +
                    lots of project logic lines and explanations were examined by him.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Secondary PI
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Prof. Dechang Xu</strong> supported us by listening to all our concerns and encouraging us to find solutions.
 +
                    He also advised us on our modelling strategies and helped us to establish connections with many of our sponsors and collaborators both inside and outside school.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Instructor
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Mr. Yunpeng Zhong</strong> offered additional training in gene syntheses for the junior members in winter.
 +
                    During project decisions, he provided an idea and came up a lot of advice regarding an iGEM project.
 +
                    Besides, he also sponsored oligos for gene synthesis.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    University technicians
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Mr. Zhongkai Huang</strong> and <strong>Ms. Sijing Meng</strong> supervised us in the lab all along.
 +
                    They spent huge efforts in lab materials preparation which rid much inconvenience of us.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Professors from other departments
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Dr. Jia Meng</strong> supported a fund for our project running.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div style="text-align: center; margin-top: 50px; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">External supports</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Companies
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>1. Snapgene </strong>
 +
                    sponsored 10 software licenses<br>
 +
                    <strong>2. New England Biolabs </strong>
 +
                    Sponsored us NEBuider reagent and T4 DNA ligase for our constructions<br>
 +
                    <strong>3. Genequantum </strong>
 +
                    sponsored us with free oligonucleotides and some of sequencing work<br>
 +
                    <strong>4. Synbio Technologies </strong>
 +
                    offered discount prizes for gene syntheses, cloning and sequencing services<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Scholars
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>1. Prof. Guangyin Xu, </strong>
 +
                    Vice director of Institute of Neuroscience at Soochow University; Executive director of The Chinese Neuroscience Society.<br>
 +
                    <strong>2. Dr. MingYan Wang, </strong>
 +
                    Sponsored us NEBuider reagent and T4 DNA ligase for our constructions<br>
 +
                    <strong>3. Dr. Guangyu Tian </strong>
 +
                    from Hospital in Zhangdian Hospital of Chinese Medicine<br>
 +
                    <strong>4. Prof. Wei Peng, </strong>
 +
                    offered discount prizes for gene syntheses, cloning and sequencing services<br>
 +
                    <strong>5. Dr. Xianglei Meng, </strong>
 +
                    Deputy director of the Pharmacy Department of Zikuang hospital in Zi Chuan<br>
 +
                    <strong>6. Mr. Yaodong Pan, </strong>
 +
                    Director of Health Education Center; Director of Suzhou Center for Diseases Control and Prevention<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px; margin-bottom: 40px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">
 +
                    Other teams
 +
                </h2>
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>NJU-China team</strong>
 +
                    supported us in exosome quantification by Pierce BCA Protein Assay and Nanoparticle Tracking Assay.<br>
 +
                    <strong>NAU-China team</strong>
 +
                    helped us in modeling at the early team developmental stage.<br>
 +
                    <strong>LZU team</strong>
 +
                    supported us a plasmid construct.<br>
 +
                    <strong>Jiangnan iGEM team</strong>
 +
                    help us in some art design of human practice webpage<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div style="text-align: center; margin-top: 50px; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">Special thanks to the ones who helped us in Human Practices</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px; margin-bottom: 40px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <p style="font-size: 18px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    <strong>Dr. Xiaojun Zhang, Ms. Mengjiao Peng, Ms. Ting Guan, Ms. Jia Guo, Mr. Shuo Wang </strong>
 +
                    from institute of Leadership and Educational Development (iLEAD), XJTLU.<br>
 +
                    <strong>Dr. Bo Wu, </strong>
 +
                    Department of Public Health and Environment Science.<br>
 +
                    <strong>Prof. Yingbin Sun, Prof Bing Liu, Prof Ying Niu and Ms Jing Wang</strong>
 +
                    from Zibo Normal College.<br>
 +
                    <strong>Mr. Jiqiang Yue,</strong>
 +
                    Suzhou Center for Disease Control and Prevention.<br>
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
    </div>
 +
 +
 +
    <div style="background-color: white; box-shadow: 0px 0px 4px rgba(0,0,0,0.56); border-radius: 5px; margin-top: 50px; background-color: white; padding-bottom: 40px">
 +
        <div>
 +
 +
        </div>
 +
        <div style="text-align: center; padding-top: 40px">
 +
            <h1 style="margin: 0px auto; font-family:'Impact'; color: #337ab7">Collaborators and Supporters</h1>
 +
        </div>
 +
        <div class="container-fluid" style="margin-top: 50px">
 +
            <div class="row" style="padding: 0px 100px">
 +
                <div class="col-md-4" style="padding-left:5%; padding-right:5%;">
 +
                <div style="height: 100%">
 +
                    <img style="margin-top: 50px; width: 100%" src="https://static.igem.org/mediawiki/2018/3/3a/T--XJTLU-CHINA--qide.png">
 +
                    <img style="margin-top: 70px; width: 100%" src="https://static.igem.org/mediawiki/2018/3/3d/T--XJTLU-CHINA--NEB_logo.png">
 +
                </div>
 +
            </div>
 +
            <div class="col-md-4" style="padding:0 5%;">
 +
                <div style="height: 100%">
 +
                    <img src="https://static.igem.org/mediawiki/2018/b/b9/T--XJTLU-CHINA--genscript.png" style="width: 100%">
 +
                    <img style="margin-top: 30px; width: 100%" src="https://static.igem.org/mediawiki/2018/0/02/T--XJTLU-CHINA--xjtlubio.png">
 +
                </div>
 +
            </div>
 +
            <div class="col-md-4" style="padding:0 5%;">
 +
                <div>
 +
                    <img style="margin-top: 60px; width: 100%" src="https://static.igem.org/mediawiki/2018/3/36/T--XJTLU-CHINA--math.png">
 +
                    <img style="margin-top: 100px; width: 100%" src="https://static.igem.org/mediawiki/2018/0/0a/T--XJTLU-CHINA--Synbio.png">
 +
                </div>
 +
            </div>
 +
            </div>
 +
        </div>
 +
    </div>
 +
    <div class="container-fluid" style="border-top: 1px solid rgba(0,0,0,0.15); height: 240px; padding-top: 30px; background-color: rgb(84,146,197);">
 +
        <div class="row" style="padding: 0px 50px">
 +
            <div class="col-md-1"></div>
 +
            <div class="col-md-4">
 +
                <div>
 +
                    <p style="font-size: 26px; font-family:'Open-Sans-L'; color: white;">Location</p>
 +
                </div>
 +
                <div>
 +
                    <p style="line-height: 15px; font-size: 16px;font-family:'Lato-Light'; color: white;">Rm 363, Science Building</p>
 +
                    <p style="line-height: 15px; font-size: 16px;font-family:'Lato-Light'; color: white;">Xi'an Jiaotong-Liverpool University</p>
 +
                    <p style="line-height: 15px; font-size: 16px;font-family:'Lato-Light'; color: white;">111 Ren'ai Road, Suzhou, China</p>
 +
                    <p style="line-height: 16px; font-size: 16px;font-family:'Lato-Light'; color: white;">215123</p>
 +
                </div>
 +
            </div>
 +
            <div class="col-md-4">
 +
                <div>
 +
                    <p style="font-size: 26px; font-family:'Open-Sans-L'; color: white;">Social</p>
 +
                </div>
 +
                <div>
 +
                    <p style="line-height: 15px; font-size: 16px;font-family:'Lato-Light'; color: white;">FB</p>
 +
                </div>
 +
            </div>
 +
            <div class="col-md-3">
 +
                <div>
 +
                    <p style="font-size: 26px; font-family:'Open-Sans-L'; color: white;">Get in touch</p>
 +
                </div>
 +
                <div>
 +
                    <p style="line-height: 15px; font-size: 16px;font-family:'Lato-Light'; color: white;">igem@xjtlu.edu.cn</p>
 +
                </div>
 +
            </div>
 +
        </div>
 +
    </div>
 +
 +
</div>
 +
</body>
 
</html>
 
</html>

Revision as of 22:34, 17 October 2018

Attribution

Team management

Team recruitment

Yijing Gong (advisor), Zixin Rong (advisor), Haohui Fang (leader)

Skills training

Haohui Fang, Zixin Rong, Yijing Gong

Team manager

Haohui Fang

Self-achievement

Idea formulation

Haoping Cheng, Shiyu Liu, Miaoyan Li formulated the initial project idea. Haohui Fang involved in the later experiment design and project improvements.

Wet experiments

The majority of our members contribute to wet experiments. The main members in each group are listed below:

1. Gene synthesis from oligos: Sihong Yu, Yuxuan Wu, Hanpu Wang, Di zhen
2. Plasmid construction: Peng Chai, Haoping Chen, Sihong Yu, Yuxuan Wu, Di zhen, Haohui Fang, Boya Chen, Miaoyan.Li, Shiyu Liu
3. Mammalian cell experiment: Haohui Fang, Peng Chai, Haoping Chen, Yuxuan Wu, Shiyu Liu, Boya Chen, Liuhua Chen
4. Interlab: Junliang Lin

Modeling

Exosome production and Blood circulation model: Hanfu Shi, Mian Wu, Qinyu Ni Delivery through BBB and expression in neuron models: Hanfu Shi

Wiki page

1. Programmer: Zeyu Yang, Mian Wu
2. Layout: Mian Wu, Zeyu Yang, Shiyu Liu, Haohui Fang
3. Art design: Shiyu Liu, Qinyu Ni, Zeyu Yang, Mian Wu, Boya Chen, Xiaohan, Zhang
4. Writings: Miaoyan Li, Haohui Fang, Xiaohan Zhang, Mian Wu, Yuxuan Wu, Peng Chai, Di Zhen, Haoping Cheng

Human Practices

1. Manager: Xiaohan Zhang
2. Participants: Haohui Fang, Peng Chai, Liuhua Chen, Boya Chen

Finance and Accessory

Haohui Fang, Boya Chen

Sincere and special thanks to venerable back-ups

Primary PI

Dr. Guoxia Han gave us alerting suggestion on scientific research and made his best to ensure us go ahead bravely. He also spent effort in quality control for every work we did. He would also accompany us to the giant jamboree and take care of us in the U.S.

Dr. David Chiu first prepared extra classes to help us understand more about synthetic biology techniques and lab safety. He gave us constant advice and knowledge in project determination and data analyses. Moreover, lots of project logic lines and explanations were examined by him.

Secondary PI

Prof. Dechang Xu supported us by listening to all our concerns and encouraging us to find solutions. He also advised us on our modelling strategies and helped us to establish connections with many of our sponsors and collaborators both inside and outside school.

Instructor

Mr. Yunpeng Zhong offered additional training in gene syntheses for the junior members in winter. During project decisions, he provided an idea and came up a lot of advice regarding an iGEM project. Besides, he also sponsored oligos for gene synthesis.

University technicians

Mr. Zhongkai Huang and Ms. Sijing Meng supervised us in the lab all along. They spent huge efforts in lab materials preparation which rid much inconvenience of us.

Professors from other departments

Dr. Jia Meng supported a fund for our project running.

External supports

Companies

1. Snapgene sponsored 10 software licenses
2. New England Biolabs Sponsored us NEBuider reagent and T4 DNA ligase for our constructions
3. Genequantum sponsored us with free oligonucleotides and some of sequencing work
4. Synbio Technologies offered discount prizes for gene syntheses, cloning and sequencing services

Scholars

1. Prof. Guangyin Xu, Vice director of Institute of Neuroscience at Soochow University; Executive director of The Chinese Neuroscience Society.
2. Dr. MingYan Wang, Sponsored us NEBuider reagent and T4 DNA ligase for our constructions
3. Dr. Guangyu Tian from Hospital in Zhangdian Hospital of Chinese Medicine
4. Prof. Wei Peng, offered discount prizes for gene syntheses, cloning and sequencing services
5. Dr. Xianglei Meng, Deputy director of the Pharmacy Department of Zikuang hospital in Zi Chuan
6. Mr. Yaodong Pan, Director of Health Education Center; Director of Suzhou Center for Diseases Control and Prevention

Other teams

NJU-China team supported us in exosome quantification by Pierce BCA Protein Assay and Nanoparticle Tracking Assay.
NAU-China team helped us in modeling at the early team developmental stage.
LZU team supported us a plasmid construct.
Jiangnan iGEM team help us in some art design of human practice webpage

Special thanks to the ones who helped us in Human Practices

Dr. Xiaojun Zhang, Ms. Mengjiao Peng, Ms. Ting Guan, Ms. Jia Guo, Mr. Shuo Wang from institute of Leadership and Educational Development (iLEAD), XJTLU.
Dr. Bo Wu, Department of Public Health and Environment Science.
Prof. Yingbin Sun, Prof Bing Liu, Prof Ying Niu and Ms Jing Wang from Zibo Normal College.
Mr. Jiqiang Yue, Suzhou Center for Disease Control and Prevention.

Collaborators and Supporters

Location

Rm 363, Science Building

Xi'an Jiaotong-Liverpool University

111 Ren'ai Road, Suzhou, China

215123

Social

FB

Get in touch

igem@xjtlu.edu.cn