<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/42810?offset=130</link>
	<atom:link href="https://bioinformaticsonline.com/related/42810?offset=130" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/5946/bioinformatics-tata-memorial-centre-navi-mumbai</guid>
  <pubDate>Mon, 28 Oct 2013 10:40:25 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics @ TATA MEMORIAL CENTRE, NAVI MUMBAI]]></title>
  <description><![CDATA[
<p>TATA MEMORIAL CENTRE<br />ADVANCED CENTRE FOR TREATMENT, RESEARCH AND EDUCATION IN CANCER<br />KHARGHAR, NAVI MUMBAI – 410210</p>

<p>No. ACTREC/Advt./ 72 /2013</p>

<p>WALK IN INTERVIEW</p>

<p>1. JRF*<br />Genome-wide RNAi screen with human pooled tyrosine kinase shRNA libraries in head and neck squamous call carcinoma (HNSCC) cell lines<br />DBT A/C No. 3071, Dr. Amit Dutt</p>

<p>2. JRF<br />IRB Project ACTREC Funds<br />Dr. Amit Dutt</p>

<p>3. RA<br />Defining the cancer genome of Head and Neck Squamous Cell Carcinoma (HNSCC) with SNP arrays and next generation sequencing technology<br />A/C No. 2895, Dr. Amit Dutt</p>

<p>Duration of the Project: One year from the date of appointment, or as and when project terminates.</p>

<p>Consolidated Salary: RA : Rs. 40,000/- p.m.<br />JRF* (DBT): Rs. 20,800/- p.m.<br />JRF: Rs. 16,000/- p.m.<br />Date &amp; Time: 6th November, 2013, at 10.00 a.m.</p>

<p>Venue: Conference Room</p>

<p>Minimum Qualifications and Experience:</p>

<p>RA: The ideal applicant should have a PhD in a relevant field. He/she should have a strong computational biology background, with demonstrated experience in coding using Perl, Python, Java or C++. He/she should be familiar with working in unix enviromnent, devising computational algorithms for data analysis, statistical data analysis in R and matlab and database programming using MySQL. Hands on experience in analyzing high throughput data would be an added advantage.</p>

<p>JRF* (DBT project): M.Sc. in Life Sciences or M.Tech in Biotechnology with good academic record (Minimum of 60% aggregate). Valid UGC-CSIR/DBT/ICMR JRF qualification and laboratory experience in molecular biology. Previous experience in molecular biology and animal tissue culture with high throughput platforms and ability to work with a large team would be desirable.</p>

<p>JRF (ACTREC project): M.Sc. in Life Sciences or M.Tech in Biotechnology with good academic record (Minimum of 60% aggregate). Minimum 2 yrs experience in molecular biology and animal tissue culture with high throughput platforms and ability to work with a large team is essential.</p>

<p>*M.Sc. degree obtained after a one year course will not be considered.</p>

<p>Candidates fulfilling above requirements should send their application by e-mail to<br />‘careers.duttlab@gmail.com. in the format given below so as to reach on or before<br />4th November, 2013.</p>

<p>Advertisement:</p>

<p>http://www.actrec.gov.in/data%20files/2013/AD-RA-JR-TECHN-6-NOV.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44762/stay-connected-and-productive-unlock-the-power-of-screen-tmux-and-mosh-for-bioinformatics</guid>
	<pubDate>Wed, 22 Jan 2025 00:29:52 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44762/stay-connected-and-productive-unlock-the-power-of-screen-tmux-and-mosh-for-bioinformatics</link>
	<title><![CDATA[Stay Connected and Productive: Unlock the Power of Screen, Tmux, and Mosh for Bioinformatics]]></title>
	<description><![CDATA[<p>If you are a bioinformatician, chances are you have spent hours running long, complex analyses on remote servers only to lose your session because of an unstable connection. Frustrating, isnt it? Fear not! With tools like <strong>screen</strong>, <strong>tmux</strong>, and <strong>mosh</strong>, you can safeguard your workflow and stay productive, no matter where you are.</p><h4>Why Remote Session Management is a Must-Have</h4><p>In bioinformatics, tasks like genome assembly, RNA-seq analyses, and phylogenetic computations often take hours or days. A dropped SSH connection can result in:</p><ul>
<li><strong>Lost Progress:</strong> Restarting a job from scratch wastes valuable time.</li>
<li><strong>Workflow Interruptions:</strong> Disruptions can derail your focus and productivity.</li>
<li><strong>Corrupted Data:</strong> Interrupted processes may lead to incomplete or corrupted outputs.</li>
</ul><p>By integrating <strong>screen</strong>, <strong>tmux</strong>, or <strong>mosh</strong> into your workflow, you can avoid these setbacks and ensure a seamless experience.</p><h4>Screen: The Classic Workhorse</h4><p><strong>Screen</strong> is a terminal multiplexer that comes pre-installed on most Linux systems. It allows you to manage multiple terminal sessions and reconnect to them even after being disconnected.</p><p><strong>Getting Started with Screen:</strong></p><ol>
<li><strong>Start a Session:</strong>
<div>
<div>
<div>
<div>screen</div>
</div>
</div>
</div>
</li>
<li><strong>Detach from a Session:</strong><br />Press <code>Ctrl+A</code>, then <code>D</code>.</li>
<li><strong>Reattach to a Session:</strong>
<div>
<div>
<div>
<div>screen -r</div>
</div>
</div>
</div>
</li>
</ol><p><strong>Pro Tip:</strong> Enhance your screen experience with a customized <code>.screenrc</code> configuration file. Download one here: <a href="https://lnkd.in/es8vhcEH" target="_new">Get .screenrc</a>.</p><h4>Tmux: A Modern Alternative</h4><p><strong>Tmux</strong> takes everything great about screen and adds modern features, including better key bindings and intuitive session management. It\u2019s perfect for bioinformaticians who want more control over their workflow.</p><p><strong>Getting Started with Tmux:</strong></p><ol>
<li><strong>Start a Session:</strong>
<div>
<div>
<div>
<div>tmux</div>
</div>
</div>
</div>
</li>
<li><strong>Detach from a Session:</strong><br />Press <code>Ctrl+B</code>, then <code>D</code>.</li>
<li><strong>Reattach to a Session:</strong>
<div>
<div>
<div>
<div>tmux attach</div>
</div>
</div>
</div>
</li>
</ol><p><strong>Customize Your Tmux Experience:</strong><br />Use a <code>.tmux.conf</code> file to personalize your setup. Grab one here: <a href="https://lnkd.in/eZZfxmq7" target="_new">Download .tmux.conf</a>.</p><h4>Mosh: The Mobile Shell for Unreliable Connections</h4><p>SSH works well for stable networks, but it struggles in areas with spotty connectivity. Enter <strong>Mosh</strong>, the Mobile Shell. Designed for intermittent networks, Mosh keeps your session alive even when the connection drops temporarily.</p><p><strong>Why Mosh is a Game-Changer:</strong></p><ul>
<li>No lag over high-latency networks.</li>
<li>Automatically reconnects when the network is restored.</li>
<li>Ideal for working on the go, from cafes to trains.</li>
</ul><p><strong>Getting Started with Mosh:</strong></p><ol>
<li><strong>Install Mosh:</strong>
<div>
<div>
<div>
<div>sudo apt install mosh # For Debian/Ubuntu</div>
</div>
</div>
</div>
</li>
<li><strong>Connect to a Server:</strong>
<div>
<div>
<div>
<div>mosh username@server</div>
</div>
</div>
</div>
</li>
</ol><p>Learn more at <a href="https://mosh.org" target="_new">mosh.org</a>.</p><h4>Why This Matters for Bioinformatics</h4><p>Every bioinformatician knows the value of time and data integrity. Tools like screen, tmux, and mosh provide a lifeline when running long analyses, enabling you to:</p><ul>
<li>Safeguard your work against disconnections.</li>
<li>Easily manage multiple workflows in parallel.</li>
<li>Stay productive, even in challenging environments.</li>
</ul><h4>Quickstart Cheat Sheet</h4><ul>
<li>
<p><strong>Screen:</strong></p>
<div>
<div>
<div>
<div>screen # Start a session Ctrl+A, D # Detach screen -r # Reattach</div>
</div>
</div>
</div>
</li>
<li>
<p><strong>Tmux:</strong></p>
<div>
<div>tmux <span># Start a session </span> Ctrl+B, D <span># Detach </span> tmux attach <span># Reattach</span></div>
</div>
</li>
<li>
<p><strong>Mosh:</strong></p>
<div>
<div>mosh username@server</div>
</div>
</li>
</ul><h4>Final Thoughts</h4><p>As a bioinformatician, your time is too valuable to spend restarting analyses due to technical hiccups. With screen, tmux, and mosh in your toolkit, you can work smarter, protect your progress, and stay productive no matter where you are. Start using these tools today and transform the way you work with remote systems.</p><p>Let me know how these tools work for you, and don\u2019t forget to follow for more bioinformatics tips!</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6012/project-junior-research-fellow-ccmb</guid>
  <pubDate>Fri, 01 Nov 2013 10:38:22 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Junior Research Fellow @ CCMB]]></title>
  <description><![CDATA[
<p>Temporary Project positions available purely on temporary basis - Oct/2013</p>

<p>1. Project Junior Research Fellow / Project Assistant</p>

<p>Last Date: 11th Nov 2013</p>

<p>Qualification B.Tech (Comp. Sci.), B.Tech/M.Tech (Bioinformatics), MCA,  M.Sc. (Mathematics/Statistics)</p>

<p>Desirable Qualifications: Programming in FORTRAN/ C /PERL, Web application technologies</p>

<p>Upper Age limit 28</p>

<p>Rs.12000 / Rs.16000 (as sanctioned by the funding agency)</p>

<p>General terms and conditions:</p>

<p>    Positions are purely temporary and co-terminus with the project.</p>

<p>    HRDG (CSIR) prevailing guidelines are applicable these positions.</p>

<p>    All categories of applicants are required to submit online application.</p>

<p>    Enhancement of stipend to Project JRF to Project SRF will be with the due recommendation of Principal Investigator and approval of the Director on the evaluation of the 3 member Standing Committee consisting of Chairperson at the level of Chief Scientist, Coordinator of the JRFs/RAs/PDFs and the Principal Investigator of the Project.</p>

<p>    The age relaxation as per HRDG (CSIR) norms: SC/ST/OBC/Women/Physically Handicapped persons – five years.</p>

<p>    The Stipend normally be fixed at Rs.22000/- for Research Associates/Post Doc. Fellows. However, a selected RA/PDF may be placed in the higher start of stipend if there is ample justification and such recommendation is made by the Selection Committee. Based on the recommendation with justification by the PI and approval of the Director, person getting stipend at lower rate may be elevated to higher rate subject to availability of the funds in the project.</p>

<p>    Recruitment will be based on initial screening based on qualifications and experience criteria and also based on suitability of the candidates to the nature of research project. This screening will be followed by written test followed / interview. After completing this process, candidates will be shortlisted and appointed in specific project subjects as and when appropriate positions become available. The pool of selected candidates will be valid for six months.</p>

<p>    Remunerations indicate are maximum admissible and will depend upon the availability of funds and subject to conditions applicable to projects from different funding agencies at the time of recruitment.</p>

<p>Apply : http://www.ccmb.res.in/positions/projects/temp_positions.php</p>

<p>Form download : http://www.ccmb.res.in/positions/projects/oct-2013/pdf_download.php</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44908/top-journals-in-bioinformatics-how-to-choose-where-to-publish-why-it-matters</guid>
	<pubDate>Fri, 26 Sep 2025 06:49:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44908/top-journals-in-bioinformatics-how-to-choose-where-to-publish-why-it-matters</link>
	<title><![CDATA[Top Journals in Bioinformatics: How to Choose Where to Publish &amp; Why It Matters]]></title>
	<description><![CDATA[<div><p>Bioinformatics is a rapidly growing field at the intersection of biology, computer science, mathematics, and statistics. As data volumes increase, as well as the diversity of data types (genomics, proteomics, metabolomics, imaging, single‑cell data, etc.), the need for robust computational methods, rigorous models, and reproducible tools has never been greater.</p></div><p><br /> A key decision for researchers is: Where should I publish my work? The choice of journal impacts visibility, peer recognition, and long‑term influence of your research. Below I provide a guide to leading journals in bioinformatics, criteria for selecting the journal that best fits your work, and why these considerations matter.</p><p><strong>Leading Journals in Bioinformatics</strong></p><table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p>Journal</p>
</td>
<td valign="top">
<p>What it&rsquo;s Known For / Strengths</p>
</td>
<td valign="top">
<p>Best Fit for What Kind of Work</p>
</td>
</tr>
<tr>
<td valign="top">
<p>Bioinformatics (Oxford Journals)</p>
</td>
<td valign="top">
<p>Strong for methods, computational biology, database papers, algorithm development.</p>
</td>
<td valign="top">
<p>New computational methods; tools with broad applicability; databases; methodological advances.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>Briefings in Bioinformatics</p>
</td>
<td valign="top">
<p>High impact reviews, overviews, and synthesis articles.</p>
</td>
<td valign="top">
<p>Review‑style articles; comparative studies; widely used tools.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>PLOS Computational Biology</p>
</td>
<td valign="top">
<p>Emphasis on method development plus biological insight; open access.</p>
</td>
<td valign="top">
<p>Interdisciplinary work; computational method with biological applications.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>BMC Bioinformatics</p>
</td>
<td valign="top">
<p>Broad scope; good for software, pipelines, resources; open access.</p>
</td>
<td valign="top">
<p>Software development; pipelines; data resources; benchmarking.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>IEEE Transactions on Computational Biology and Bioinformatics (TCBB)</p>
</td>
<td valign="top">
<p>Rigor in computation, algorithms, performance.</p>
</td>
<td valign="top">
<p>Algorithmic innovations; statistical/computational method work.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>BioData Mining</p>
</td>
<td valign="top">
<p>Focused on data mining / ML in biology.</p>
</td>
<td valign="top">
<p>Machine learning / AI applied to biological datasets; predictive models.</p>
</td>
</tr>
</tbody>
</table><p><strong>Criteria to Use When Choosing a Journal</strong></p><ul>
<li>Scope &amp; Audience</li>
<li>Impact &amp; Visibility</li>
<li>Review Time &amp; Speed</li>
<li>Open Access</li>
<li>Cost / APCs</li>
<li>Reputation vs Practical Fit</li>
<li>Reproducibility, Data &amp; Code Sharing Policies</li>
<li>Indexing &amp; Reach</li>
<li>Quality of the field</li>
<li>Accelerating discovery</li>
<li>Fair access</li>
<li>Credibility &amp; trust</li>
<li>Read recent papers in the journal</li>
<li>Tailor the manuscript</li>
<li>Check the author guidelines</li>
<li>Have backup journals ready</li>
<li>More emphasis on machine learning / AI</li>
<li>Single‑cell, spatial omics, multimodal data</li>
<li>Cloud workflows, reproducible pipelines</li>
<li>Preprints / open peer review</li>
<li>Alternative metrics (software use, downloads, community adoption)</li>
</ul><p>Selecting where to publish in bioinformatics isn&rsquo;t just about prestige; it&rsquo;s about reaching the right audience, ensuring your work is usable, and contributing to the field responsibly.</p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/6233/edwards-lab</guid>
  <pubDate>Sun, 10 Nov 2013 15:07:08 -0600</pubDate>
  <link></link>
  <title><![CDATA[Edwards Lab]]></title>
  <description><![CDATA[
<p>We study the evolutionary biology of birds and relatives, combining field, museum and genomics approaches to understand the basis of avian diversity, evolution and behavior. Our guiding approaches include population genetics, which provides a quantitative framework for studying speciation, geographic variation and genome evolution; systematics, which acknowledges that the focal species of any study has relatives that are behaviorally and ecologically no less interesting; and natural history, which gives meaning to the genes and genomic patterns we study.</p>

<p>Lab page: http://www.oeb.harvard.edu/faculty/edwards/index.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/45115/postdoctoral-fellow-in-genomics-and-comparative-genomics</guid>
  <pubDate>Thu, 09 Apr 2026 02:12:32 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Fellow in Genomics and Comparative Genomics]]></title>
  <description><![CDATA[
<p>Environnement de travail (Work environment):<br />The successful candidate will join a dynamic research group working<br />on the ecology and evolution of host'parasite'environment<br />interactions in non-model organisms, particularly snail vectors and<br />its trematode parasites. She/He will conduct genomic analyses aimed at<br />understanding host'parasite coevolution and the genetic architecture<br />of resistance in the invasive snail Pseudosuccinea columella to the<br />zoonotic parasite Fasciola hepatica. This thematic line is embedded<br />within the regional scientific project InvaSnail financed by the<br />ExposUM initiative from the Montpellier. The position is based in<br />Montpellier, a vibrant scientific hub in Southern France internationally<br />recognized for excellence in ecology and evolutionary biology. The IHPE<br />laboratory provides a collaborative research environment with access<br />to high-performance computing facilities, sequencing platforms, and<br />strong interdisciplinary interactions across research institutions in<br />the Montpellier area. University</p>

<p>Main mission:</p>

<p>Develop and implement strategies for whole-genome sequencing of non-model<br />species<br />Generate high-quality de novo genome assemblies using short- and long-read<br />sequencing technologies<br />Perform genome annotation and structural/functional characterization<br />Conduct comparative genomic analyses across related species or populations<br />Design and implement genome-wide association studies (GWAS) to identify<br />loci associated with phenotypic or adaptive traits<br />Integrate genomic, phenotypic, and environmental datasets<br />Contribute to the development of reproducible bioinformatics pipelines</p>

<p>ActivitÃ©s (Activities):</p>

<p>Lead the genomic component of the research project<br />High-molecular-weight DNA extraction optimization<br />Long-read genome assembly (PacBio HiFi / ONT)<br />Genome polishing and quality assessment (BUSCO, QUAST)<br />Structural and functional annotation<br />Variant discovery (SNPs, indels, SVs)<br />Population genomic analyses (FST, demographic inference)<br />Mixed-model GWAS accounting for structure<br />Workflow development (Snakemake/Nextflow)<br />HPC-based pipeline implementation<br />Publish results in peer-reviewed journals<br />Present findings at international conferences<br />Collaborate with experimental and computational team members<br />Contribute to project development<br />Mentor graduate students when appropriate</p>

<p>More at https://evol.mcmaster.ca/brian/evoldir/PostDocs//MontpellierU.ComparativeGenomics</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6559/ai-cadd-project-kerela-university</guid>
  <pubDate>Tue, 19 Nov 2013 17:48:15 -0600</pubDate>
  <link></link>
  <title><![CDATA[Ai-CADD Project @ Kerela University]]></title>
  <description><![CDATA[
<p>Applications are invited for the following Positions in the AiCADD project funded by MHRD Govt of India</p>

<p>Last Date for Submitting Application: 25th November 2013</p>

<p>1. Senior Scientist: (01 position)<br />Pay Scale: Rs.40, 000/-<br />Qualifications:  PhD/ Post Doctoral with Experience in CADD</p>

<p>2. Junior Scientist (10 positions)<br />Pay Scale: Rs. 22,000/-<br />Qualifications: MPhil / Masters Degree in Bioinformatics / Computational Biology / CADD / Ayurveda</p>

<p>3. Technical Assistant (01+01 positions)<br />Pay Scale: Rs.12,000/-<br />Qualifications: 1. BSc Computer Science/ MCA<br />Qualifications: 2. MSc Biotechnology / MSc Microbiology </p>

<p>4. Programmer (01 position)<br />Pay Scale: Rs.20,000/-<br />Qualifications: MSc Computer Science/ MCA / B Tech (Experience in MATLAB, C, C++) Industrial experience is desirable</p>

<p>5. Teaching Assistant (03 positions)<br />Pay Scale: Rs.10,000/-<br />Qualifications: MSc in Bioinformatics </p>

<p>6. Administration Assistant (02 positions)<br />Pay Scale: Rs.8,000/-<br />Qualifications: Degree + PGDCA</p>

<p>The Selection process comprises of written test and interview. Positions are purely temporary (initially for the period of one year) and co-terminus with the project. For more details mail to: cbi.uok [at] gmail.com</p>

<p>More detail @ https://sites.google.com/site/centreforbioinformatics/announcements/applicationsinvitedforapplicationforai-caddproject</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/fun/view/4196/chemical-elements-of-bioinformatics</guid>
	<pubDate>Tue, 03 Sep 2013 16:35:39 -0500</pubDate>
	<link>https://bioinformaticsonline.com/fun/view/4196/chemical-elements-of-bioinformatics</link>
	<title><![CDATA[Chemical Elements of Bioinformatics]]></title>
	<description><![CDATA[<p>You must be familiar with periodic table and colour pattern, but this time you are going to amaze by new elements table by Eagle genomics. Just check it out and have fun :)</p><p><a href="http://elements.eaglegenomics.com/">http://elements.eaglegenomics.com/</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6577/scientist-b-vector-control-research-centre</guid>
  <pubDate>Tue, 19 Nov 2013 21:19:15 -0600</pubDate>
  <link></link>
  <title><![CDATA[Scientist-B @ VECTOR CONTROL RESEARCH CENTRE]]></title>
  <description><![CDATA[
<p>VECTOR CONTROL RESEARCH CENTRE<br />(Indian Council of Medical Research)<br />Indira Nagar Medical Complex<br />Puducherry-605006</p>

<p>WALK-IN-INTERVIEW</p>

<p>The following vacancies shall be filled purely on adhoc basis under Non-Institutional adhoc project “Bioinformatics in ICMR Institutes” funded by Indian Council of Medical Research at Vector Control Research Centre, Puducherry, to be renewed annually and filled through Walk-in-Interview as indicated below. Candidates who wish to appear for the Walk-in-Interview can download the application format given in the website of Vector Control Research Centre (www.vcrc.res.in). Duly filled in application along with attested copies of certificate should be submitted at time of interview.</p>

<p>Date &amp; Time : 05.12.2013 at 9.00 AM – Scientist-C (Non-Medical)</p>

<p>05.12.2013 at 1.30 PM – Scientist-B (Non-Medical)<br />06.12.2013 at 9.00 AM – Technical Assistant (Research Assistant)<br />06.12.2013 at 1.30 PM – Multi Tasking Staff (General)</p>

<p>Place : Vector Control Research Centre, Puducherry</p>

<p>Project entitled : Biomedical Informatics Centres of ICMR</p>

<p>1. Scientist - C (Non-Medical) Number of post – ONE</p>

<p>Essential qualification</p>

<p>B.E./ B. Tech. Degree in Bioinformatics/ Computational Biology from a recognized University with 6 years experience in the relevant field  OR</p>

<p>First class Master’s Degree and Ph.D. Degree in Bioinformatics/ Computational Biology from a recognized University OR</p>

<p>First class Master’s Degree in Bioinformatics/ Computational Biology from a recognized University with 4 years R &amp; D experience in the related subjects as mentioned above OR</p>

<p>Second class Master’s Degree + Ph.D. in Bioinformatics/ Computational Biology from a recognized University with 4 years research experience in bio-medical subjects</p>

<p>Age: Not exceeding 40 years Consolidated Salary – Rs.39,960/- p.m. + HRA as<br />admissible </p>

<p>Desirable qualification (i) Post-doctorate in Bioinformatics/ Computational Biology or M.E. / M. Tech. Degree in Bioinformatics/ Computational Biology from a recognized University for candidates with First Class relevant degree.</p>

<p>(ii) Additional post-doctoral research / teaching experience in Bioinformatics/Computational Biology in recognized Institute(s).</p>

<p>(iii) Knowledge of computer applications or data management</p>

<p>Job requirements i) To apply Bioinformatics / Computational Biology tools in understanding interactions between vectors and parasites/ pathogens and target based development of drug / insecticides.</p>

<p>ii) To assist the investigators to carry out genomic studies on parasites/pathogens/vectors of vector borne diseases</p>

<p>Advertisement: http://vcrc.res.in/Adv_Bio13.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/3889/bioinformatics-and-sequencing-courses-and-workshops</guid>
	<pubDate>Sat, 24 Aug 2013 16:41:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/3889/bioinformatics-and-sequencing-courses-and-workshops</link>
	<title><![CDATA[Bioinformatics and Sequencing Courses and Workshops]]></title>
	<description><![CDATA[<p>Swiss Institute of Bioinformatics (SIB) organises lots of bioinformatics courses covering wide range of topics:</p><p><a href="http://www.isb-sib.ch/education/training-courses.html">http://www.isb-sib.ch/education/training-courses.html</a></p><p>Canadian bioinformatics also organises various bioinformatics and sequencing courses:</p><p><a href="http://bioinformatics.ca/workshops">http://bioinformatics.ca/workshops</a></p><p>In addition to above two, EMBI&nbsp;Europe, EMBO Europe, Cold Spring Harbour USA, Wellcome Trust UK and NOVA&nbsp;Europe&nbsp;also organise bioinformatics and sequencing courses annually:</p><p><a href="http://www.embl.de/training/events/index.php?p_outstation=ALL">http://www.embl.de/training/events/index.php?p_outstation=ALL</a></p><p><a href="http://www.embo.org/funding-awards/courses-workshops">http://www.embo.org/funding-awards/courses-workshops</a></p><p><a href="http://meetings.cshl.edu/courses.html">http://meetings.cshl.edu/courses.html</a></p><p><a href="http://www.wellcome.ac.uk/Education-resources/Courses-and-conferences/Advanced-Courses-and-Scientific-Conferences/Advanced-Courses/index.htm">http://www.wellcome.ac.uk/Education-resources/Courses-and-conferences/Advanced-Courses-and-Scientific-Conferences/Advanced-Courses/index.htm</a></p><p><a href="http://www.nova-university.org/pagetop.cfm?MenySidorTop_id=2&amp;open=7">http://www.nova-university.org/pagetop.cfm?MenySidorTop_id=2&amp;open=7</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

</channel>
</rss>