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

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;
 +
        }
  
<div class="clear"></div>
+
        .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;
 +
        }
  
<div class="column full_size">
+
        .description {
<h1>Collaborations</h1>
+
            width: 100%;
 +
            margin-top: 0;
 +
            margin-left: 1rem;
 +
            margin-bottom: 3rem;
 +
        }
  
<p>
+
        .card {
Sharing and collaboration are core values of iGEM. We encourage you to reach out and work with other teams on difficult problems that you can more easily solve together.
+
            color: inherit;
</p>
+
            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%;
 +
            }
 +
        }
  
<h3>Silver Medal Criterion #2</h3>
+
        .front,
<p>
+
        .back {
Complete this page if you intend to compete for the silver medal criterion #2 on collaboration. Please see the <a href="https://2018.igem.org/Judging/Medals">2018 Medals Page</a> for more information.
+
            display: flex;
</p>
+
            border-radius: 6px;
</div>
+
            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;
 +
        }
  
<div class="column two_thirds_size">
+
        .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);
 +
        }
  
<h4> Which other teams can we work with? </h4>
+
        .back {
<p>
+
            background: #fff;
You can work with any other team in the competition, including software, hardware, high school and other tracks. You can also work with non-iGEM research groups, but they do not count towards the iGEM team collaboration silver medal criterion.
+
            transform: rotateY(-180deg);
</p>
+
            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);
 +
        }
  
<p>
+
        .button {
In order to meet the silver medal criteria on helping another team, you must complete this page and detail the nature of your collaboration with another iGEM team.
+
            transform: translateZ(40px);
</p>
+
            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>
 
  
 +
<div class="container-fluid" style="background-color: rgb(84,146,197); padding: 40px 30px; margin-top: 35px">
  
  
<div class="column third_size">
 
<p>
 
Here are some suggestions for projects you could work on with other teams:
 
</p>
 
  
<ul>
+
    <div style="margin-top: 20px; width: 100px; float: left"></div>
<li> Improve the function of another team's BioBrick Part or Device</li>
+
    <img src="https://static.igem.org/mediawiki/2018/1/1a/T--XJTLU-CHINA--lo.png" style="width: 140px; margin-top: 20px; float: left">
<li> Characterize another team's part </li>
+
    <h1 style="font-family:'Impact'; color: white; font-size: 80px; margin-top: 20px; margin-bottom: 50px; float: left; width: 400px; margin-left: 20px">Collaboration</h1>
<li> Debug a construct </li>
+
<li> Model or simulate another team's system </li>
+
<li> Test another team's software</li>
+
<li> Help build and test another team's hardware project</li>
+
<li> Mentor a high-school team</li>
+
</ul>
+
</div>
+
  
 +
    <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; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7">OFF-CAMPUS ACTIVITY</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-bottom: 0px;">
 +
            <div class="col-xs-7">
 +
                <div class="row" style="margin-top: 40px;">
 +
                    <div class="col-xs-1"></div>
 +
                    <div class="col-xs-10" style="font-size: 18px; font-weight: 400; line-height: 27px; padding-bottom: 30px; padding-right: 0px">
 +
                        <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">Jiangnan University</h2>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            During this iGEM year, Jiangnan University, for the first time,
 +
                            participates in iGEM competition and established two separate teams each having an independent project.
 +
                            As they are new teams, there was much information and requirements that they had little understanding.
 +
                            On this condition, this year we set up both a cooperation relationship and mentorship.
 +
                        </p>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            On April 1<sup>st</sup>,
 +
                            our team and the teams in Jiangnan University held a meetup for a more detailed assistance provided by our team leader on how to succeed in meeting cardinal dues in iGEM competition and which aspects should be given high attention.
 +
                            We also imparted several tips on team management. In turn, Jiangnan iGEM team promised whatsoever help they are capable of to us.
 +
                        </p>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            During Conference of China iGEMer Community,
 +
                            our team with them also gained a chance to have a deeper glance of our mutual projects.
 +
                            By this chance, both of our projects had undergone the test from questions come up by each other
 +
                        </p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </div>
 +
            <div class="col-xs-5" style="text-align: left; padding: 0px;">
 +
                <img src="images/co1.png" style="width: 85%; margin-top: 120px">
 +
            </div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <div style="padding: 0px; background-color: #337ab7; height: 0.8px"></div>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-5" style="text-align: right; padding: 0px;">
 +
                <img src="images/co2.png" style="width: 85%; margin-top: 140px">
 +
            </div>
 +
            <div class="col-xs-7">
 +
                <div class="row" style="margin-top: 40px;">
 +
                    <div class="col-xs-1"></div>
 +
                    <div class="col-xs-10" style="font-size: 18px; font-weight: 400; line-height: 27px; padding-bottom: 30px; padding-right: 0px">
 +
                        <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px; text-align: right">University of Hong Kong</h2>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            During this iGEM year, Jiangnan University, for the first time,
 +
                            participates in iGEM competition and established two separate teams each having an independent project.
 +
                            As they are new teams, there was much information and requirements that they had little understanding.
 +
                            On this condition, this year we set up both a cooperation relationship and mentorship.
 +
                        </p>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            On April 1<sup>st</sup>,
 +
                            our team and the teams in Jiangnan University held a meetup for a more detailed assistance provided by our team leader on how to succeed in meeting cardinal dues in iGEM competition and which aspects should be given high attention.
 +
                            We also imparted several tips on team management. In turn, Jiangnan iGEM team promised whatsoever help they are capable of to us.
 +
                        </p>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            During Conference of China iGEMer Community,
 +
                            our team with them also gained a chance to have a deeper glance of our mutual projects.
 +
                            By this chance, both of our projects had undergone the test from questions come up by each other
 +
                        </p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </div>
 +
        </div>
 +
 +
 +
        <div style="text-align: center; margin-top: 50px; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7">MEETING AND CONFERENCE</h1>
 +
        </div>
 +
 +
        <div class="row" style="margin-bottom: 30px;">
 +
            <div class="col-xs-7">
 +
                <div class="row" style="margin-top: 40px;">
 +
                    <div class="col-xs-1"></div>
 +
                    <div class="col-xs-10" style="font-size: 18px; font-weight: 400; line-height: 27px; padding-bottom: 30px; padding-right: 0px">
 +
                        <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">CCiC</h2>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            In this year's CCiC, we presented our project design and the work we had achieved by then.
 +
                            Also by this opportunity for iGEM community in China to showcase a variety of synthetic biology projects,
 +
                            we found that LZU-CHINA possesses a similar project concept in the sense of exosome.
 +
                        </p>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            During that conference, we then had a deep discussion on the mutual projects,
 +
                            which later facilitated our <a href="#coco"><strong style="font-style: italic;">collaboration</strong></a>.
 +
                            In addition, NJU-CHINA showed great interests in our project for they have worked on exosomes for years.
 +
                            After sharing our progress and experimental design, they would like to offer us additional help in refining experiments.
 +
                        </p>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            In addition, during the poster session,
 +
                            we visited several team booths and provided advice to their project interpretations in casual conversation.
 +
                        </p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </div>
 +
            <div class="col-xs-5" style="text-align: left; padding: 0px;">
 +
                <img src="images/co3.png" style="width: 85%; margin-top: 120px">
 +
            </div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <div style="padding: 0px; background-color: #337ab7; height: 1px"></div>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row" style="margin-top: 0px">
 +
            <div class="col-xs-5" style="text-align: right; padding: 0px;">
 +
                <img src="images/co4.png" style="width: 85%; margin-top: 140px">
 +
            </div>
 +
            <div class="col-xs-7">
 +
                <div class="row" style="margin-top: 40px;">
 +
                    <div class="col-xs-1"></div>
 +
                    <div class="col-xs-10" style="font-size: 18px; font-weight: 400; line-height: 27px; padding-bottom: 30px; padding-right: 0px">
 +
                        <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px; text-align: right">Eurasian Meetup</h2>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            On July 25, 7 members of our team went to Shenzhen to attend the iGEM2018 Asia-Europe Meeting held by BGI-CHINA and TU Delft.
 +
                            After three days, we are gratified that our design ideas have been recognized by friends from all over the world.
 +
                            During the presentation and poster session, we received a lot of support from other university’s iGEM teams.
 +
                            There were professors from TU Deft, one of the organizers,
 +
                            who provided valuable experience and ideas for teams participating iGEM. At the same time, we, fortunately,
 +
                            had personal guidance from one of the professors during the break,
 +
                            which benefits to made adjustments to the integrity of the experiment.
 +
                            It is worth mentioning that this participation laid the foundation for our cooperation with the University of Hong Kong.
 +
                            They are also committed to the design of the carrier and we are paying attention to each other. After the meeting,
 +
                            we will continue to discuss technical questions about the experiment and explore the common development of our two projects.
 +
                        </p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </div>
 +
        </div>
 +
 +
 +
        <div id="coco" style="text-align: center; margin-top: 50px; border-bottom: 0.8px solid #337ab7; padding-bottom: 20px">
 +
            <h1 style="font-family:'Impact'; color: #337ab7">WORK TOGETHER</h1>
 +
        </div>
 +
 +
        <div class="row">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">LZU-CHINA</h2>
 +
                <div class="row">
 +
                    <div class="col-xs-2"></div>
 +
                    <div class="col-xs-8" style="text-align: center">
 +
                        <img src="images/co5.png" style="width: 80%">
 +
                    </div>
 +
                    <div class="col-xs-2"></div>
 +
                </div>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <p style="font-size: 16px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 40px">
 +
                    Our modelling team members built a model for Lanzhou IGEM team.
 +
                    In this system,
 +
                    they applied ODE (ordinary differential equation)-system to predict the production of the exosome and other target proteins.
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row">
 +
            <div class="col-xs-2"></div>
 +
            <div class="col-xs-4" style="text-align: center">
 +
                <img style="width: 80%" src="images/co6.png">
 +
            </div>
 +
            <div class="col-xs-4" style="text-align: center">
 +
                <img style="width: 80%" src="images/co7.png">
 +
            </div>
 +
            <div class="col-xs-2"></div>
 +
        </div>
 +
 +
        <div class="row">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">BIT</h2>
 +
                <p style="font-size: 16px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 20px">
 +
                    At the beginning of July, we reached team BIT who had collaboration interests with us from iGEM community, China. After rounds of communication online by social media, we collaborated in the following aspects by the end of 2018 iGEM year:
 +
                    1. Our team shared 1ml of SpheroTech calibration beads to BIT for their Interlab study in flow cytometry part. (The company doesn’t set branch in China. Only several agencies are available. Also, the price for one portion is a bit beyond affordable if only one team bears it.)
 +
                    2. Two teams exchanged their insight on how to determine an iGEM project and mutual selected projects.
 +
                    3. Two teams discussed the usage of microfluidics and previous iGEM projects from application perspective. (Discussion on microfluidics gave some inspiration on their device design.)
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">NAU</h2>
 +
                <p style="font-size: 16px; text-align: justify; font-weight: normal; margin-top: 20px; margin-bottom: 50px">
 +
                    We have a long history of cooperation with NAU-CHINA iGEM team,
 +
                    and we have continued to strengthen the cooperative relationship between the two teams this year in modeling part.
 +
                    In the absence of the modeling background for our members at the prophase,
 +
                    they deepened the modeling concept of our members and provided a completed model of the blood-brain barrier,
 +
                    with our members offering a construction idea. This favor largely sped up our leaning progress on building biological models.
 +
                    So, here we express our great gratitude for their helping us! (Click the icon aside to see the model formula and graphs from NAU-CHINA)
 +
                </p>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
        <div class="row">
 +
            <div class="col-xs-1"></div>
 +
            <div class="col-xs-10">
 +
                <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 50px">NJU-CHINA</h2>
 +
                <div class="row" style="margin-top: 0px">
 +
                    <div class="col-xs-3"></div>
 +
                    <div class="col-xs-6">
 +
                        <img src="images/nju.png" style="margin-bottom: 10px">
 +
                        <p style="text-align: center"><strong>(Nanosight from NJU)</strong></p>
 +
                    </div>
 +
                    <div class="col-xs-3"></div>
 +
                </div>
 +
                <p style="font-size: 16px; text-align: justify; font-weight: normal; margin-top: 0px; margin-bottom: 50px">
 +
                    We really appreciated their generous and giant help which added a lot of characterizations on our biopart testing.
 +
                    They invited our team members to their campus to conduct exosome quantification.
 +
                    They also provided us with expensive extraction kit materials and access to advanced equipment without any scruple to us.
 +
                    With their help, we obtained a lot of crucial data about exosome production Booster device and targeting.
 +
                </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 18:50, 17 October 2018

Collaboration

OFF-CAMPUS ACTIVITY

Jiangnan University

During this iGEM year, Jiangnan University, for the first time, participates in iGEM competition and established two separate teams each having an independent project. As they are new teams, there was much information and requirements that they had little understanding. On this condition, this year we set up both a cooperation relationship and mentorship.

On April 1st, our team and the teams in Jiangnan University held a meetup for a more detailed assistance provided by our team leader on how to succeed in meeting cardinal dues in iGEM competition and which aspects should be given high attention. We also imparted several tips on team management. In turn, Jiangnan iGEM team promised whatsoever help they are capable of to us.

During Conference of China iGEMer Community, our team with them also gained a chance to have a deeper glance of our mutual projects. By this chance, both of our projects had undergone the test from questions come up by each other

University of Hong Kong

During this iGEM year, Jiangnan University, for the first time, participates in iGEM competition and established two separate teams each having an independent project. As they are new teams, there was much information and requirements that they had little understanding. On this condition, this year we set up both a cooperation relationship and mentorship.

On April 1st, our team and the teams in Jiangnan University held a meetup for a more detailed assistance provided by our team leader on how to succeed in meeting cardinal dues in iGEM competition and which aspects should be given high attention. We also imparted several tips on team management. In turn, Jiangnan iGEM team promised whatsoever help they are capable of to us.

During Conference of China iGEMer Community, our team with them also gained a chance to have a deeper glance of our mutual projects. By this chance, both of our projects had undergone the test from questions come up by each other

MEETING AND CONFERENCE

CCiC

In this year's CCiC, we presented our project design and the work we had achieved by then. Also by this opportunity for iGEM community in China to showcase a variety of synthetic biology projects, we found that LZU-CHINA possesses a similar project concept in the sense of exosome.

During that conference, we then had a deep discussion on the mutual projects, which later facilitated our collaboration. In addition, NJU-CHINA showed great interests in our project for they have worked on exosomes for years. After sharing our progress and experimental design, they would like to offer us additional help in refining experiments.

In addition, during the poster session, we visited several team booths and provided advice to their project interpretations in casual conversation.

Eurasian Meetup

On July 25, 7 members of our team went to Shenzhen to attend the iGEM2018 Asia-Europe Meeting held by BGI-CHINA and TU Delft. After three days, we are gratified that our design ideas have been recognized by friends from all over the world. During the presentation and poster session, we received a lot of support from other university’s iGEM teams. There were professors from TU Deft, one of the organizers, who provided valuable experience and ideas for teams participating iGEM. At the same time, we, fortunately, had personal guidance from one of the professors during the break, which benefits to made adjustments to the integrity of the experiment. It is worth mentioning that this participation laid the foundation for our cooperation with the University of Hong Kong. They are also committed to the design of the carrier and we are paying attention to each other. After the meeting, we will continue to discuss technical questions about the experiment and explore the common development of our two projects.

WORK TOGETHER

LZU-CHINA

Our modelling team members built a model for Lanzhou IGEM team. In this system, they applied ODE (ordinary differential equation)-system to predict the production of the exosome and other target proteins.

BIT

At the beginning of July, we reached team BIT who had collaboration interests with us from iGEM community, China. After rounds of communication online by social media, we collaborated in the following aspects by the end of 2018 iGEM year: 1. Our team shared 1ml of SpheroTech calibration beads to BIT for their Interlab study in flow cytometry part. (The company doesn’t set branch in China. Only several agencies are available. Also, the price for one portion is a bit beyond affordable if only one team bears it.) 2. Two teams exchanged their insight on how to determine an iGEM project and mutual selected projects. 3. Two teams discussed the usage of microfluidics and previous iGEM projects from application perspective. (Discussion on microfluidics gave some inspiration on their device design.)

NAU

We have a long history of cooperation with NAU-CHINA iGEM team, and we have continued to strengthen the cooperative relationship between the two teams this year in modeling part. In the absence of the modeling background for our members at the prophase, they deepened the modeling concept of our members and provided a completed model of the blood-brain barrier, with our members offering a construction idea. This favor largely sped up our leaning progress on building biological models. So, here we express our great gratitude for their helping us! (Click the icon aside to see the model formula and graphs from NAU-CHINA)

NJU-CHINA

(Nanosight from NJU)

We really appreciated their generous and giant help which added a lot of characterizations on our biopart testing. They invited our team members to their campus to conduct exosome quantification. They also provided us with expensive extraction kit materials and access to advanced equipment without any scruple to us. With their help, we obtained a lot of crucial data about exosome production Booster device and targeting.

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