<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>Swansea students' placement at one of America's top medical schools</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2017/swanseastudentsplacementatoneofamericastopmedicalschools.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="112621">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Swansea students' placement at one of America's top medical schools</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Swansea students' placement at one of America's top medical schools</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">Ten Swansea University students are beginning a six-week placement at one of America’s top medical schools, as part of the University’s Texas partnership.</p>

    <div class="news-item-content">
        <p>The students, who follow the <strong><a href="http://www.swansea.ac.uk/undergraduate/courses/medicine/bscappliedmedicalsciences/">BSc Applied Medical Sciences</a></strong> degree at <strong><a href="/the-university/colleges/medicine/">Swansea University Medical School</a></strong>, are participating in a summer &lsquo;hackathon&rsquo; at <strong><a href="https://www.bcm.edu/">Baylor College of Medicine</a> </strong>(BCM) in Houston, Texas from 17<sup>th</sup> June to 29<sup>th</sup> July.</p>
<p>BCM is a health sciences university located in the Texas Medical Center in Houston, Texas, which is the largest medical complex in the world, containing 21 hospitals.&nbsp; BCM has been ranked as one of the top medical schools for research in the US.&nbsp;</p>
<p>Swansea University has a strategic partnership with BCM, as part of its flourishing&nbsp;<strong><a href="http://www.swansea.ac.uk/texas/">Texas links</a></strong>, which are bringing benefits to students and researchers.</p>
<p>&nbsp;<img src="/media/t4_6411309232070121117.jpg"
alt="600 x 372" title="Ten Swansea University medical students are beginning a six-week placement at one of America&rsquo;s top medical schools, as part of the University&rsquo;s Texas partnership. 

The students, who follow the BSc Applied Medical Sciences degree in Swansea, will be participating in a summer &lsquo;hackathon&rsquo; at Baylor College of Medicine (BCM) in Houston, Texas from 17th June to 29th July.
" /></p>
<p><em>Picture:&nbsp; Houston here we come!&nbsp; The Swansea medical students taking part in the Baylor College of Medicine programme</em></p>
<p>During their 6 weeks on the programme, the Swansea students will be undertaking a group task and individual task:</p>
<ul>
<li>Group task: students will work in teams on BCM Department of Surgery Incubator's (DoSI) <strong><a href="http://www.dosichallenge.com">innovation challenge,</a></strong> which focuses on pressure ulcers such as bed sores and diabetic foot ulcers.&nbsp; They will need to come up with innovative solutions to this problem and will submit their idea into the competition. As this is part of the annual challenge they will have the opportunity to win up to $25,000 in research funding.</li>
<li>Individual task: Students will focus on a current problem in medicine and the clinic and be asked to come up with an innovative solution.</li>
</ul>
<p>The Swansea students will be guided and supported by leading researchers and have access to state-of-the-art facilities.</p>
<p>The programme is run by BCM&rsquo;s DoSI, led by Dr Stuart Corr, BCM&rsquo;s Director of Technology Development for the Department of Surgery.</p>
<p>Dr Corr&rsquo;s research focuses on the development of medical devices and prototypes, as well as nano-assisted electric field interactions with biological systems.&nbsp; He collaborates closely with a number of academics at Swansea, including Alvin Orbaek White in the Energy Safety Research Institute, and Huw Summers and Paul Rees in the Centre for Nanohealth.</p>
<p>This opportunity arose through Dr Matt Ware, a member of Stuart Corr&rsquo;s team who is a Swansea graduate and was the first graduate of our joint PhD with Houston Methodist Research Institute.</p>
<p><img src="/media/t4_3834501345334406423.jpg"
alt="600 x 298" title="prof Stuart Corr giving seminar to Swansea medical students on exchange" /><em>Picture: Dr Stuart Corr, BCM's Director of Technology Development, teaching the Swansea students</em></p>
<h2>What the students said:</h2>
<p><strong>Maanasy Nadarajah</strong>: <em>This is an amazing opportunity to work on a life-changing project and actually make a difference in the world, before even obtaining a degree.</em></p>
<p><strong>Jemima Jones</strong>: <em>It&rsquo;s an amazing opportunity to have the chance to experience one of the leading healthcare institutions in the U.S. and be part of the work that goes on there.</em></p>
<p><strong>Poornima Ramesh</strong>: <em>I thought &lsquo;when will I ever get to do a surgical related internship in my life?&rsquo; The chance to be able to see an awe-inspiring path to my future is why I wanted to go.</em></p>
<p><strong>Gloria Prince</strong>: <em>The possibility has become a reality - to make a positive and wider impact beyond myself. </em></p>
<p><strong>Alex Fish</strong>:<em> This is a fantastic opportunity that I simply could not miss out on.</em></p>
<p><strong>Tiffany Nduke</strong>: <em>I really hope to experience a new aspect of medicine outside the conventional hospital setting. </em></p>
<p><strong>Rukshikah Loganathan</strong>: <em>It is a productive way to spend the summer!</em></p>
<p><strong>Julie Dababneh</strong>:<em> I hope it will enhance my knowledge further in the medical field and help me recognise the potential problems physicians face in clinics. </em></p>
<p><strong>Katerina Klimankova</strong>: &nbsp;T<em>he surgical Hackathon is the perfect opportunity for me &ndash; to use what I&rsquo;ve learned so far and build on it to learn something completely new. </em></p>
<p><strong>Chloe Johnson</strong>: <em>a fantastic opportunity that will allow us to experience medical research in the field, applying our own knowledge in a working environment while experiencing a different culture, building working relationships and developing an array of skills to take forward into our further study and careers.</em></p>
<p><em><strong><img src="/media/t4_2423200782046418573.jpg"
alt="600 x 298" title="Exchange students in Texas at Baylor college" /></strong></em></p>
<p><em>Picture: the Swansea students, just arrived in Texas<strong>&zwnj;</strong></em></p>
<p><strong>Dr. Stuart J. Corr, Director of Technology Development, Department of Surgery, BCM</strong>, said:</p>
<p>"The DoSI is absolutely delighted to have representatives of&nbsp;Swansea University take part in our Summer Innovation Program. Their primary task is to come up with&nbsp;unique and innovative solutions in the field of pressure ulcers, a challenge that is also available for open participation through <a href="http://dosichallenge.com">dosichallenge.com</a>.&nbsp;We are very excited in anticipation of what&nbsp;the students will come up with and look&nbsp;forward to working with them over the next six weeks.</p>
<p><strong>Dr Lisa Wallace, Programme Director, BSc Applied Medical Sciences, at Swansea University Medical Schoo</strong>l, said:</p>
<p>&ldquo;This is a fantastic opportunity for our students which will allow them to spend an extended period working at the cutting-edge of modern medicine alongside world-leading experts in Texas. We have selected some of our brightest and best students to participate in this 6 week programme which will, I believe, prove to be an extremely rewarding and potentially life changing experience for them.&rdquo;</p>
<p><strong>Dr Caroline Coleman-Davies, Administrative Head, International Strategic Partnerships</strong>, added:</p>
<p>&ldquo;We are delighted to be working with Baylor College of Medicine on this exciting programme. Through our Texas Strategic Partnership we have had strong research relationships with the College for a number of years, and we are extremely grateful to them for offering our students the opportunity to work on innovative projects in state-of-the-art facilities in the world&rsquo;s largest medical centre.&rdquo;&nbsp;<em> <br /></em></p>
<p><em><img src="/media/15461814087_6b14f57c97_z.jpg"
alt="Matthew Ware with joint Swansea-Houston Phd supervisors" title="Matt Ware, centre, with Prof Paul Rees, Swansea, and Prof Biana Godin, Houston Methodist Research Institute, joint supervisors for his PhD in nanohealth" />Picture:&nbsp; Swansea-Texas medicine links:&nbsp; Dr Matt Ware, centre, who works with Dr Stuart Corr of BCM, who is co-ordinating the Swansea students' visit.&nbsp; Dr Ware, from Swansea, researches the use of nanotechnology in cancer treatment.&nbsp; He was the first graduate of the joint PhD between Swansea University and Houston Methodist Research Institute (HMRI).&nbsp; He is pictured with Prof Paul Rees of Swansea University and Prof Biana Godin of HMRI, his co-supervisors.</em></p>
<p><strong><a href="/the-university/colleges/medicine/">Find out more about Swansea University Medical School</a></strong></p>
<p><strong><a href="http://www.swansea.ac.uk/texas/">Swansea University Texas Partnership</a><br /></strong></p>
<p><em>&nbsp;</em></p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Kevin Sullivan</span>
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2017/swanseastudentsplacementatoneofamericastopmedicalschools.php" rel="bookmark">
                <abbr class="published" title="2017-06-22T14:56:00+01:00">Thursday 22 June 2017 14.56 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2017-06-22T15:57:07+01:00">Thursday 22 June 2017 15.57 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Public Relations Office</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
