Difference between revisions of "Team:Queens Canada/Market"

(Undo revision 485983 by ElishaKrauss (talk))
 
(193 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
{{Queens Canada/Navbar}}
 
{{Queens Canada/Navbar}}
 
<html>
 
<html>
 
 
<head>
 
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
 
 
<style>
 
<style>
 
 
 
* {
 
* {
    box-sizing: border-box;
+
  box-sizing: border-box;
 
}
 
}
 +
 +
  
 
/* Create two equal columns that floats next to each other */
 
/* Create two equal columns that floats next to each other */
.columns {
+
.column {
 
     float: left;
 
     float: left;
     width: 35%;   /*Pros and Cons next to each other, within content*/
+
     width: 50%;
 
     padding: 10px;
 
     padding: 10px;
     height: auto;
+
     height: 300px; /* Should be removed. Only for demonstration */
 
}
 
}
  
Line 29: Line 27:
 
body {
 
body {
 
     background-color: white;
 
     background-color: white;
    font-family: Helvetica, sans-serif;
 
    margin-top: 50px;
 
    max-width: 1200px;
 
 
     position: relative;
 
     position: relative;
 
     margin-left: auto;
 
     margin-left: auto;
Line 39: Line 34:
 
/* The actual timeline (the vertical ruler) */
 
/* The actual timeline (the vertical ruler) */
 
.timeline {
 
.timeline {
    max-width: 1200px;
 
 
     position: relative;
 
     position: relative;
     margin-left: auto;
+
     max-width: 70%;
     margin-right: auto;
+
     margin: 0 auto;
 
}
 
}
  
Line 50: Line 44:
 
     position: absolute;
 
     position: absolute;
 
     width: 6px;
 
     width: 6px;
     background-color: black;
+
     background-color: #0485BF;
 
     top: 0;
 
     top: 0;
 
     bottom: 0;
 
     bottom: 0;
 
     left: 50%;
 
     left: 50%;
 
     margin-left: -3px;
 
     margin-left: -3px;
 +
    z-index: -1;
 
}
 
}
  
Line 61: Line 56:
 
     padding: 10px 40px;
 
     padding: 10px 40px;
 
     position: relative;
 
     position: relative;
     background-color: white;
+
     background-color: inhert;
 
     width: 50%;
 
     width: 50%;
 
}
 
}
  
/* The circles on the timeline
+
/* The circles on the timeline */
.container::after {
+
 
    content: '';
+
    position: absolute;
+
    left: 50%;
+
    width: 25px;
+
    height: 25px;
+
    background-color: blue;
+
    border: 4px solid #2ECC71;
+
    top: 15px;
+
    border-radius: 50%;
+
    z-index: 1;
+
}*//*out for now*/
+
  
 
/* Place the container to the left */
 
/* Place the container to the left */
Line 100: Line 84:
 
     border: medium solid white;
 
     border: medium solid white;
 
     border-width: 10px 0 10px 10px;
 
     border-width: 10px 0 10px 10px;
     border-color: transparent transparent transparent blue;
+
     border-color: transparent transparent transparent #0485BF;
 
}
 
}
  
Line 114: Line 98:
 
     border: medium solid white;
 
     border: medium solid white;
 
     border-width: 10px 10px 10px 0;
 
     border-width: 10px 10px 10px 0;
     border-color: transparent blue transparent transparent;
+
     border-color: transparent #0485BF transparent transparent;
 
}
 
}
  
 
/* Fix the circle for containers on the right side */
 
/* Fix the circle for containers on the right side */
 
.right::after {
 
.right::after {
     left: -16px;
+
     left: -15px;
 
}
 
}
  
Line 125: Line 109:
 
.content {
 
.content {
 
     padding: 20px 30px;
 
     padding: 20px 30px;
     background-color: #2ECC71;
+
    position: relative;border: 20px double #0485BF;
     position: relative;
+
    border-radius: 15px;
     border-radius: 6px;
+
}
 +
 
 +
.box {
 +
    padding: 15px 15px;
 +
     background-color: #FFFFFF;
 +
     position: relative;border: 20px double #0485BF;
 +
     border-radius: 50px;
 +
    display: block;
 +
    margin-left: auto;
 +
    margin-right: auto;
 +
    width: 80%;
 
}
 
}
  
Line 136: Line 130:
 
     left: 31px;
 
     left: 31px;
 
   }
 
   }
 
+
 
 
   /* Full-width containers */
 
   /* Full-width containers */
 
   .container {
 
   .container {
 
     width: 100%;
 
     width: 100%;
     padding-left: 5px;
+
     padding-left: 70px;
 
     padding-right: 25px;
 
     padding-right: 25px;
 
   }
 
   }
Line 146: Line 140:
 
   /* Make sure that all arrows are pointing leftwards */
 
   /* Make sure that all arrows are pointing leftwards */
 
   .container::before {
 
   .container::before {
     left: 10px;
+
     left: 60px;
 
     border: medium solid white;
 
     border: medium solid white;
 
     border-width: 10px 10px 10px 0;
 
     border-width: 10px 10px 10px 0;
Line 154: Line 148:
 
   /* Make sure all circles are at the same spot */
 
   /* Make sure all circles are at the same spot */
 
   .left::after, .right::after {
 
   .left::after, .right::after {
     left: 15px;
+
     left: 0px;
 
   }
 
   }
 
    
 
    
Line 163: Line 157:
 
}
 
}
  
 +
h5 {
 +
    text-align: center;
 +
}
 +
 +
h3 {
 +
    text-align: center;
 +
}
 
</style>
 
</style>
 
</head>
 
</head>
Line 168: Line 169:
 
<body>
 
<body>
  
<h1>Community Engagement</h1>
+
<h2 style="width:70%;margin-left:15%">Market Direction Analysis</h2>
 +
<br>
 +
<p style="width:1200px;margin-left:12%;font-size: 18pt"> <br><br>
 +
<img src="https://static.igem.org/mediawiki/2018/b/bb/T--Queens_Canada--marketstrategy.png" alt='wirelessLum' style="height=50%"/><br><br>
 +
Following our interview series, we reflected on all the insight we had gained from the various experts, parents, and community members. We came to the conclusion, that the use of the diagnostic pacifier device, was perhaps not best fit in the hands of all parents, because they may lack the scientific literacy to properly interpret fluctuations in their child's hormone levels. Additionally we received specific feedback on our pacifiers design and implemented the experts advice into our next iteration of the design seen <a href="https://2018.igem.org/Team:Queens_Canada/Pacifier">here.</a> </h5>
 +
<br><br>
 +
Ultimately, we weighed impact and feasibility in our design and proposed the following strategy for our device, detailed in the graphic below. Most immediately, the technology we worked on developing this year could be best utilized by researchers for the immediate quantification of hormones in samples, following appropriate testing and clinical trials this device could benefit researchers as a non-invasive method of measuring salivary analytes. After the product has gained validation by clinicans, we would hope that the device could be used for non-verbally expressive individuals, such as those suffering from neurodevelopmental disorders to gauge well-being. Additionally, this device may have application in those suffering from neurodegenerative disease as a tool to gauge their well-being. Lastly, if the device is approved for such an indication, it may benefit wider audiences to track hormone levels and gain greater visibility to their endocrine health.
 +
</p>
 +
<br>
 +
<h4 style="width:70%;margin-left:15%">Market Direction Analysis Summary</h4>
 +
<br>
  
<div class="timeline">
+
<div class="timeline" style="width:70%;margin-left:15%">
  <div class="container left">
+
<div class="box" style="width:70%;margin-left:15%">
    <div class="content">
+
        <h3 >Use by parents to monitor child’s stress levels and general well-being</h3>
       <h2>Science Rendezvous</h2>
+
<div class="row" >
       <p> intrigued.</p>
+
  <div class="column" >
 +
    <h5 >Pros</h5>
 +
       <ul >
 +
        <li>Can remove any communication barriers between parent and child</li>
 +
        <li>Ability to measure Δ cortisol could be useful in evaluating changes over time</li>
 +
        <li>Useful in the early detection of illness and prevention of Sudden Infant Death Syndrome (SIDS)</li>
 +
       </ul>
 +
  </div>
 +
<div class="column" >
 +
    <h5>Cons</h5>
 +
      <ul>
 +
        <li>Continual monitoring may lead to more anxiety in parents</li>
 +
        <li>Expensive technology</li>
 +
        <li>Difficulties in establishing a baseline</li>
 +
        <li>Knowing the information does not have a substantial effect; minimal chance for intervention</li>
 +
      </ul>
 +
  </div>
 
  </div>
 
  </div>
 +
</div>
 +
<!--  <div class="container left">
 +
    <div class="content" style="background-color:#44D9E6;">
 +
      <p>Useful in the early detection of illness & Prevention of Sudden Infant Death Syndrome</p>
 +
  </div>
 
   </div>
 
   </div>
 
   <div class="container right">
 
   <div class="container right">
     <div class="content">
+
     <div class="content" style="background-color:#33A3AD;">
      <h2>Some pictures from the event</h2>
+
       <p>Will lead to more anxiety on the parental end</p>
      <p></p>
+
  </div>
      <img src="https://static.igem.org/mediawiki/2018/a/a5/T--Queens_Canada--ScienceRendezvous1.jpeg" width=70% height=70% />
+
       <img src="https://static.igem.org/mediawiki/2018/f/f2/T--Queens_Canada--ScienceRendezvous2.jpeg" width=70% height=70% />
+
      <img src="https://static.igem.org/mediawiki/2018/e/e8/T--Queens_Canada--ScienceRendezvous3.jpeg" width=70% height=70% />
+
    </div>
+
 
   </div>
 
   </div>
  <div class="container left">
+
-->
    <div class="content">
+
<br>
      <h2>CUTC</h2>
+
<br>
       <p>QGEM</p>
+
<br>
    </div>
+
 
 +
 
 +
<div class="box" style="width:70%;margin-left:15%">
 +
        <h3>Used as a diagnostic tool in clinical settings</h3>
 +
<div class="row">
 +
  <div class="column">
 +
    <h5>Pros</h5>
 +
       <ul>
 +
        <li>Non-invasive procedure</li>
 +
        <li>Instant results could facilitate faster diagnosis leading to earlier intervention</li>
 +
<li>Could aid in current diagnostic test of endocrine disorders, The Dexamethasone Suppression test, for </li>
 +
        <li>Could help reduce extensive wait times in clinics or Emergency Room (ER)</li>
 +
        <li>Little training required to operate.</li>
 +
      </ul>
 
   </div>
 
   </div>
  <div class="container right">
+
<div class="column">
     <div class="content">
+
     <h5>Cons</h5>
      <h2>Heading 4</h2>
+
      <ul>
      <p>Text.</p>
+
        <li>Concerns about biomarkers in saliva being as accurate as plasma samples</li>
    </div>
+
        <li>Sensitivity and specificity must be very high for proper diagnosis</li>
 +
      </ul>
 
   </div>
 
   </div>
  <div class="container left">
+
</div>
    <div class="content">
+
</div>
      <h2>Heading 5</h2>
+
<br>
       <p>Text.</p>
+
<br>
    </div>
+
<br>
 +
 
 +
 
 +
<div class="box" style="width:70%;margin-left:15%">
 +
        <h3>Use in monitoring treatment in clinical settings</h3>
 +
<div class="row">
 +
  <div class="column">
 +
    <h5>Pros</h5>
 +
       <ul>
 +
        <li>Non-invasive method Instant and ongoing surveillance</li>
 +
        <li>Could be used to evaluate metabolism of hormone</li>
 +
        <li>Help to determine personalised treatment plan and dosage</li>
 +
        <li>Could be useful in determining effectiveness of a treatment</li>
 +
      </ul>
 
   </div>
 
   </div>
  <div class="container right">
+
<div class="column">
     <div class="content">
+
     <h5>Cons</h5>
      <h2>Heading 6</h2>
+
      <ul>
      <p>Text.</p>
+
        <li>Concerns about biomarkers in saliva being as accurate as plasma samples</li>
    </div>
+
        <li>Expensive to replace cartridges</li>
 +
      </ul>
 
   </div>
 
   </div>
 +
</div>
 
</div>
 
</div>
 +
<br>
 +
<br>
 +
<br>
 +
 +
 +
<div class="box" style="background-color:#E3F2FD;" style="width:70%;margin-left:15%">
 +
        <h3>Used in research studies to monitor levels of specific biomarker(s) in saliva</h3>
 +
<div class="row" >
 +
  <div class="column">
 +
    <h5>Pros</h5>
 +
      <ul>
 +
        <li>Could replace disruptive method of salivary collection</li>
 +
        <li>Could reveal critical information missed in current studies</li>
 +
        <li>Easier to complete studies with young children and infants</li>
 +
      </ul>
 +
  </div>
 +
<div class="column" >
 +
    <h5>Cons</h5>
 +
      <ul>
 +
        <li>Would need different designs that don’t interrupt the studies and are less noticeable</li>
 +
        <li>Would need different designs to use in studies with people of all ages</li>
 +
        <li>Must be incredibly sensitive and specific for the desired biomarker</li>
 +
      </ul>
 +
  </div>
 +
</div>
 +
</div>
 +
</div>
 +
 +
<br>
 +
<br>
  
 +
<footer style="background-color: #212121;height:90px ">
 +
            <div class="container">
 +
                <div class="row">
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline quicklinks">
 +
                            <li><a href="https://igem.org/Main_Page" style="color:white; font-size:16pt">iGEM Headquarters</a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline social-buttons" style="margin-left:20%">
 +
                            <li><a href="https://twitter.com/iGEMQueens"style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-twitter"style="color:black; font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="https://www.facebook.com/iGEMQueens/?fref=ts"style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-facebook"style="color:black;font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="mailto:director@qgemteam.com" style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-envelope"style="color:black;font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="https://www.linkedin.com/company/1633448?trk=tyah&amp;trkInfo=clickedVertical%3Acompany%2CclickedEntityId%3A1633448%2Cidx%3A1-1-1%2CtarId%3A1464110668532%2Ctas%3Aqgem" style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-linkedin"style="color:black; font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline quicklinks" style="color: white;font-size:16pt;">
 +
                            <li><a href="http://www.queensu.ca/" style="color:white;">Queen's University</a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                </div>
 +
            </div>
 +
        </footer>
 
</body>
 
</body>
 
</html>
 
</html>

Latest revision as of 03:14, 18 October 2018

Market Direction Analysis




wirelessLum

Following our interview series, we reflected on all the insight we had gained from the various experts, parents, and community members. We came to the conclusion, that the use of the diagnostic pacifier device, was perhaps not best fit in the hands of all parents, because they may lack the scientific literacy to properly interpret fluctuations in their child's hormone levels. Additionally we received specific feedback on our pacifiers design and implemented the experts advice into our next iteration of the design seen here.

Ultimately, we weighed impact and feasibility in our design and proposed the following strategy for our device, detailed in the graphic below. Most immediately, the technology we worked on developing this year could be best utilized by researchers for the immediate quantification of hormones in samples, following appropriate testing and clinical trials this device could benefit researchers as a non-invasive method of measuring salivary analytes. After the product has gained validation by clinicans, we would hope that the device could be used for non-verbally expressive individuals, such as those suffering from neurodevelopmental disorders to gauge well-being. Additionally, this device may have application in those suffering from neurodegenerative disease as a tool to gauge their well-being. Lastly, if the device is approved for such an indication, it may benefit wider audiences to track hormone levels and gain greater visibility to their endocrine health.


Market Direction Analysis Summary


Use by parents to monitor child’s stress levels and general well-being

Pros
  • Can remove any communication barriers between parent and child
  • Ability to measure Δ cortisol could be useful in evaluating changes over time
  • Useful in the early detection of illness and prevention of Sudden Infant Death Syndrome (SIDS)
Cons
  • Continual monitoring may lead to more anxiety in parents
  • Expensive technology
  • Difficulties in establishing a baseline
  • Knowing the information does not have a substantial effect; minimal chance for intervention



Used as a diagnostic tool in clinical settings

Pros
  • Non-invasive procedure
  • Instant results could facilitate faster diagnosis leading to earlier intervention
  • Could aid in current diagnostic test of endocrine disorders, The Dexamethasone Suppression test, for
  • Could help reduce extensive wait times in clinics or Emergency Room (ER)
  • Little training required to operate.
Cons
  • Concerns about biomarkers in saliva being as accurate as plasma samples
  • Sensitivity and specificity must be very high for proper diagnosis



Use in monitoring treatment in clinical settings

Pros
  • Non-invasive method Instant and ongoing surveillance
  • Could be used to evaluate metabolism of hormone
  • Help to determine personalised treatment plan and dosage
  • Could be useful in determining effectiveness of a treatment
Cons
  • Concerns about biomarkers in saliva being as accurate as plasma samples
  • Expensive to replace cartridges



Used in research studies to monitor levels of specific biomarker(s) in saliva

Pros
  • Could replace disruptive method of salivary collection
  • Could reveal critical information missed in current studies
  • Easier to complete studies with young children and infants
Cons
  • Would need different designs that don’t interrupt the studies and are less noticeable
  • Would need different designs to use in studies with people of all ages
  • Must be incredibly sensitive and specific for the desired biomarker