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

(Prototype team page)
 
 
(23 intermediate revisions by 2 users not shown)
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;
 +
        }
  
<div class="column full_size judges-will-not-evaluate">
+
        body {
<h3>★  ALERT! </h3>
+
            margin: 0;
<p>This page is used by the judges to evaluate your team for the <a href="https://2018.igem.org/Judging/Medals">medal criterion</a> or <a href="https://2018.igem.org/Judging/Awards"> award listed below</a>. </p>
+
            padding: 0;
<p> Delete this box in order to be evaluated for this medal criterion and/or award. See more information at <a href="https://2018.igem.org/Judging/Pages_for_Awards"> Instructions for Pages for awards</a>.</p>
+
            height: 100vh;
</div>
+
            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;
 +
        }
  
<div class="clear"></div>
+
        .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;
 +
        }
  
<div class="column full_size">
+
        .card {
<h1>Collaborations</h1>
+
            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%;
 +
            }
 +
        }
  
<p>
+
        .front,
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.
+
        .back {
</p>
+
            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;
 +
        }
  
<h3>Silver Medal Criterion #2</h3>
+
        .front {
<p>
+
            background-size: cover;
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.  
+
            padding: 2rem;
</p>
+
            font-size: 1.618rem;
</div>
+
            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);
 +
        }
  
<div class="column two_thirds_size">
+
        .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);
 +
        }
  
<h4> Which other teams can we work with? </h4>
+
        .button {
<p>
+
            transform: translateZ(40px);
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.
+
            cursor: pointer;
</p>
+
            -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);">
  
<p>
 
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.
 
</p>
 
  
</div>
+
<div class="container-fluid" style="background-color: rgb(84,146,197); padding: 40px 30px; margin-top: 35px">
  
  
  
<div class="column third_size">
+
    <div style="margin-top: 20px; width: 100px; float: left"></div>
<p>
+
    <img src="https://static.igem.org/mediawiki/2018/1/1a/T--XJTLU-CHINA--lo.png" style="width: 140px; margin-top: 20px; float: left">
Here are some suggestions for projects you could work on with other teams:
+
    <h1 style="font-family:'Impact'; color: white; font-size: 80px; margin-top: 20px; margin-bottom: 50px; float: left; margin-left: 20px">Collaborations</h1>
</p>
+
  
<ul>
+
    <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">
<li> Improve the function of another team's BioBrick Part or Device</li>
+
<li> Characterize another team's part </li>
+
<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 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>
 +
                        <p style="font-family:'Impact'; color: #337ab7; font-size: 20px">-- <a href="https://2018.igem.org/Team:Jiangnan/Collaborations">Link</a> --</p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </div>
 +
            <div class="col-xs-5" style="text-align: left; padding: 0px;">
 +
                <img src="https://static.igem.org/mediawiki/2018/5/50/T--XJTLU-CHINA--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="https://static.igem.org/mediawiki/2018/c/c1/T--XJTLU-CHINA--co2.png" style="width: 85%; margin-top: 60px">
 +
            </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 the Asia-Europe Meeting in Shen Zhen, our team had a brief discussion about us projects with Hong Kong University (HKU). Both of us had a great interest in each other’s project and would like to seek further collaboration. On 27th July, we went to Hong Kong to have a thorough and impressive meeting with the iGEM team in HKU. We shared the experience of doing transfection experiment in HEK293T and discussed the possible ways to increase the production of the exosome. In addition, some problems encountered when conducting Interlab experiment were discussed, HKU iGEM team offered us some pressure suggestions.
 +
                        </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="https://static.igem.org/mediawiki/2018/9/95/T--XJTLU-CHINA--co3.png" style="width: 85%; margin-top: 60px">
 +
            </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="https://static.igem.org/mediawiki/2018/1/1d/T--XJTLU-CHINA--co4.png" style="width: 85%; margin-top: 120px">
 +
            </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="https://static.igem.org/mediawiki/2018/6/6b/T--XJTLU-CHINA--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;">
 +
                    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>
 +
                <p style="font-family:'Impact'; color: #337ab7; font-size: 20px; margin-bottom: 40px">-- <a href="https://2018.igem.org/Team:LZU-CHINA/Collaborations">Link</a> --</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="https://static.igem.org/mediawiki/2018/6/60/T--XJTLU-CHINA--co6.png">
 +
            </div>
 +
            <div class="col-xs-4" style="text-align: center">
 +
                <img style="width: 80%" src="https://static.igem.org/mediawiki/2018/e/e4/T--XJTLU-CHINA--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;">
 +
                    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>
 +
                <p style="font-family:'Impact'; color: #337ab7; font-size: 20px; margin-bottom: 20px">-- <a href="https://2018.igem.org/Team:BIT/Collaborations">Link</a> --</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; ">
 +
                    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>
 +
                <p style="font-family:'Impact'; color: #337ab7; font-size: 20px; margin-bottom: 50px">-- <a href="https://2018.igem.org/Team:NAU-CHINA/Collaborations">Link</a> --</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">
 +
                <div style="padding: 0px; background-color: #337ab7; height: 1px"></div>
 +
            </div>
 +
            <div class="col-xs-1"></div>
 +
        </div>
 +
 +
 +
   
 +
        <div class="row" style="margin-bottom: 30px;">
 +
            <div class="col-xs-7">
 +
                <div class="row" style="margin-top: 20px;">
 +
                    <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; margin-top: 60px">
 +
                        <h2 style="font-family:'Impact'; color: #337ab7; margin-bottom: 20px">NJU-CHINA</h2>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            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>
 +
                        <p style="font-family:'Impact'; color: #337ab7; font-size: 20px">-- <a href=" https://2018.igem.org/Team:NJU-China/Collaborations">Link</a> --</p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </div>
 +
            <div class="col-xs-5" style="text-align: left; padding: 0px;">
 +
                <img src="https://static.igem.org/mediawiki/2018/7/77/T--XJTLU-CHINA--nju.png" style="width: 85%; margin-top: 50px">
 +
            </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; margin-bottom: 40px">
 +
            <div class="col-xs-5" style="text-align: right; padding: 0px;">
 +
                <img src="https://static.igem.org/mediawiki/2018/7/76/T--XJTLU-CHINA--siat.png" style="width: 85%; margin-top: 60px">
 +
            </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">SIAT-SCIE</h2>
 +
                        <p style="font-size: 16px; text-align: justify">
 +
                            We developed a partnership with a high school team, SIAT-SCIE, during the Eurasian Meetup in Shenzhen, China.
 +
                            During the meeting, we introduced our projects to each other,
 +
                            exchanged ideas concerning the projects and shared our experience in participating in iGEM.
 +
                            Additionally, we also forwarded suggestions to improve their project by developing a specific protein-packaging system.
 +
                        </p>
 +
                        <p style="font-family:'Impact'; color: #337ab7; font-size: 20px">-- <a href="https://2018.igem.org/Team:SIAT-SCIE/Collaborations">Link</a> --</p>
 +
                    </div>
 +
                    <div class="col-xs-1"></div>
 +
                </div>
 +
            </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>

Latest revision as of 00:51, 18 October 2018

Collaborations

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

-- Link --

University of Hong Kong

During the Asia-Europe Meeting in Shen Zhen, our team had a brief discussion about us projects with Hong Kong University (HKU). Both of us had a great interest in each other’s project and would like to seek further collaboration. On 27th July, we went to Hong Kong to have a thorough and impressive meeting with the iGEM team in HKU. We shared the experience of doing transfection experiment in HEK293T and discussed the possible ways to increase the production of the exosome. In addition, some problems encountered when conducting Interlab experiment were discussed, HKU iGEM team offered us some pressure suggestions.

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.

-- Link --

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.)

-- Link --

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)

-- Link --

NJU-CHINA

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.

-- Link --

SIAT-SCIE

We developed a partnership with a high school team, SIAT-SCIE, during the Eurasian Meetup in Shenzhen, China. During the meeting, we introduced our projects to each other, exchanged ideas concerning the projects and shared our experience in participating in iGEM. Additionally, we also forwarded suggestions to improve their project by developing a specific protein-packaging system.

-- Link --

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