<?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/26573?offset=320</link>
	<atom:link href="https://bioinformaticsonline.com/related/26573?offset=320" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22779/research-associate-at-international-centre-for-genetic-engineering-and-biotechnology-icgeb</guid>
  <pubDate>Wed, 17 Jun 2015 18:49:05 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate at International Centre for Genetic Engineering and Biotechnology (ICGEB)]]></title>
  <description><![CDATA[
<p>Research Associate<br />International Centre for Genetic Engineering and Biotechnology (ICGEB)<br />Address: Aruna Asaf Ali Marg, Jawaharlal Nehru University, New Delhi<br />Postal Code: 110067<br />City: New Delhi<br />State: Delhi<br />Qualifications: Experience in many docking softwares and operating systems is essential. Additional experience in bioinformatics and computational biology tools will be useful.<br />Details will be available at: http://www.icgeb.org/vacancies.html<br /> <br />How To Apply: Submit curriculum vitae to: sb.icgeb@gmail.com<br />Last Date: 5 July 2015</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38385/decipher-a-software-toolset-for-deciphering-and-managing-biological-sequences-efficiently-using-the-r</guid>
	<pubDate>Sun, 09 Dec 2018 19:06:17 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38385/decipher-a-software-toolset-for-deciphering-and-managing-biological-sequences-efficiently-using-the-r</link>
	<title><![CDATA[DECIPHER; a software toolset for deciphering and managing biological sequences efficiently using the R]]></title>
	<description><![CDATA[<p><span>DECIPHER is a software toolset that can be used for deciphering and managing biological sequences efficiently using the&nbsp;</span><a href="http://www.r-project.org/">R</a><span>&nbsp;programming language. The&nbsp;</span><a href="http://www.r-project.org/">R</a><span>&nbsp;package is distributed as platform independent source code under the&nbsp;</span><a href="http://www.gnu.org/copyleft/gpl.html">GPL version 3 license</a><span>. Some functionality of the program is accessible online through web tools.</span></p>
<p><span style="font-size: medium; text-align: justify;">&nbsp;</span></p><p>Address of the bookmark: <a href="http://www2.decipher.codes/" rel="nofollow">http://www2.decipher.codes/</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22788/research-associate-bioinformatics-job-position-in-indian-agricultural-statistics-research-institute-iasri-pusa-new-delhi</guid>
  <pubDate>Wed, 17 Jun 2015 20:48:40 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics job position in Indian Agricultural Statistics Research Institute (IASRI), Pusa, New Delhi]]></title>
  <description><![CDATA[
<p>Research Associate Statistics</p>

<p>Eligibility : M Phil / Phd, MSc</p>

<p>Location : Delhi</p>

<p>Last Date : 27 Jun 2015</p>

<p>Hiring Process : Walk - In<br />Indian Agricultural Statistics Research Institute (IASRI) - Job DetailsDate of posting:03 Jun 15</p>

<p>Research Associate Statisticsjob position in Indian Agricultural Statistics Research Institute (IASRI)<br />on purely contractual temporary basis</p>

<p>Project : “ICAR-Network Project of Transgenic in Crops”</p>

<p>Qualification : Ph.D. in Bioinformatics/ Agricultural Statistics/ Statistics/ Computer Science/ Computer Application/ Life Science/ Biotechnology/ Agricultural Science or equivalent OR Post-Graduation in Bioinformatics/ Agricultural Statistics/ Statistics/ Computer Science/ Computer Application/ Life Science/ Biotechnology/ Agricultural Science or equivalent with 1st Division or 60% marks or equivalent with at least two years of research experience.</p>

<p>No.of Post: 01</p>

<p>Emoluments for RA: Consolidated Rs. 24000/- per month + 30% HRA for Ph.D holders and consolidated Rs. 23000/- per month + 30% HRA for Master Degree.</p>

<p>Age Limit : 40 years<br />How to apply</p>

<p>Walk-in-interview will be held on 27th June 2015, 10.30 A.M at IASRI, Pusa, New Delhi</p>

<p>More at http://iasri.res.in/employment/employment.htm</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39114/plumberan-r-package-that-converts-your-existing-r-code-to-a-web-api</guid>
	<pubDate>Wed, 13 Mar 2019 19:20:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39114/plumberan-r-package-that-converts-your-existing-r-code-to-a-web-api</link>
	<title><![CDATA[plumber:An R package that converts your existing R code to a web API]]></title>
	<description><![CDATA[<p>plumber allows you to create a REST API by merely decorating your existing R source code with special comments. Take a look at an example.</p>
<pre><code><span># plumber.R
</span><span>
</span><span>#* Echo back the input
#* @param msg The message to echo
#* @get /echo
</span><span>function</span><span>(</span><span>msg</span><span>=</span><span>""</span><span>){</span><span>
  </span><span>list</span><span>(</span><span>msg</span><span> </span><span>=</span><span> </span><span>paste0</span><span>(</span><span>"The message is: '"</span><span>,</span><span> </span><span>msg</span><span>,</span><span> </span><span>"'"</span><span>))</span><span>
</span><span>}</span><span>

</span><span>#* Plot a histogram
#* @png
#* @get /plot
</span><span>function</span><span>(){</span><span>
  </span><span>rand</span><span> </span><span>&lt;-</span><span> </span><span>rnorm</span><span>(</span><span>100</span><span>)</span><span>
  </span><span>hist</span><span>(</span><span>rand</span><span>)</span><span>
</span><span>}</span><span>

</span><span>#* Return the sum of two numbers
#* @param a The first number to add
#* @param b The second number to add
#* @post /sum
</span><span>function</span><span>(</span><span>a</span><span>,</span><span> </span><span>b</span><span>){</span><span>
  </span><span>as.numeric</span><span>(</span><span>a</span><span>)</span><span> </span><span>+</span><span> </span><span>as.numeric</span><span>(</span><span>b</span><span>)</span><span>
</span><span>}</span></code></pre><p>Address of the bookmark: <a href="https://www.rplumber.io/" rel="nofollow">https://www.rplumber.io/</a></p>]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22944/icgeb-bioinformatics-research-associate-vacancy</guid>
  <pubDate>Thu, 25 Jun 2015 20:41:00 -0500</pubDate>
  <link></link>
  <title><![CDATA[ICGEB Bioinformatics Research Associate Vacancy]]></title>
  <description><![CDATA[
<p>Research Associate Position at ICGEB, New Delhi with Dr. Amit Sharma</p>

<p>Starting 15th July 2015, the position relates to a project specifically for in silico drug docking, screening, design, optimisation and linkage with active chemists. </p>

<p>Experience in many docking softwares and operating systems is essential. </p>

<p>Additional experience in bioinformatics and computational biology tools will be useful. </p>

<p>Submit curriculum vitae to: sb.icgeb@gmail.com</p>

<p>Closing date: 5 July 2015</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39947/radar-charts-with-ggplot2</guid>
	<pubDate>Tue, 17 Sep 2019 23:01:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39947/radar-charts-with-ggplot2</link>
	<title><![CDATA[radar charts with ggplot2]]></title>
	<description><![CDATA[<p><code>ggradar</code>&nbsp;allows you to build radar charts with ggplot2. This package is based on&nbsp;<a href="http://rstudio-pubs-static.s3.amazonaws.com/5795_e6e6411731bb4f1b9cc7eb49499c2082.html">Paul Williamson&rsquo;s</a>&nbsp;code, with new aesthetics and compatibility with ggplot2 2.0.</p>
<p>It was inspired by&nbsp;<a href="http://www.buildingwidgets.com/blog/2015/12/9/week-49-d3radarr">d3radaR</a>, an htmlwidget built by&nbsp;<a href="https://github.com/timelyportfolio">timelyportfolio</a>.</p><p>Address of the bookmark: <a href="https://github.com/ricardo-bion/ggradar" rel="nofollow">https://github.com/ricardo-bion/ggradar</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23384/research-scientist-at-dupont</guid>
  <pubDate>Fri, 17 Jul 2015 20:36:17 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Scientist at DuPONT]]></title>
  <description><![CDATA[
<p>Research Scientist<br />Hyderabad, Telangana<br />Job Description</p>

<p>Job Description</p>

<p>The Global Trait Discovery Informatics (GTDI) group located at the DuPont Knowledge Centre (DKC), Hyderabad, India is currently seeking applications for a highly motivated computational biologist. The GTDI group contributes to research programs in plant biotechnology at the DKC as well as across research centers located in DuPont Pioneer, Johnston, Iowa and at the DuPont Experimental Station in Wilmington, Delaware.</p>

<p>We are looking for candidates who have experience in analysis of high-throughput -omics datasets. The researcher will be primarily responsible for analyzing diverse -omics datatypes, such as transcriptomics, proteomics and metabolomics and actively contribute towards building streamlined solutions.</p>

<p>The candidate will be part of a diverse team of experimental biologists, computational biologists and software developers. A critical aspect of this position involves working with global teams across multiple locations and will require effective project coordination and communication skills. This is an exciting opportunity for candidates with strong data driven skills, who want to work at the interface of computational and experimental biology and contribute towards scientific discovery.</p>

<p>Responsibilities</p>

<p>·Integrate and analyze multiple datatypes in the context of experimental observations with a goal towards formulating testable hypothesis.</p>

<p>·Understanding the research questions from experimental biologists and formulate relevant in silico analyses.</p>

<p>·Establish and implement systematic analysis workflows starting from processing of raw data to biological interpretation.</p>

<p>·Critically analyze a wide variety of experimental data with a view to solving the underlying research questions.</p>

<p>·Identify and generate datasets for scientific testing and evaluation of algorithms.</p>

<p>Qualifications</p>

<p>PhD in computational biology, bioinformatics, population genetics, complex systems, computer sciences or any relevant physical or mathematical sciences, with experience in analyzing diverse -omics datasets.</p>

<p>Job Qualifications</p>

<p>Qualifications</p>

<p>PhD in computational biology, bioinformatics, population genetics, complex systems, computer sciences or any relevant physical or mathematical sciences, with experience in analyzing diverse -omics datasets.</p>

<p>More at http://careers.dupont.com/jobsearch/job-details/research-scientist/006077W-01/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40583/trelliscope-flexibly-visualize-large-complex-data-in-great-detail-from-within-the-r-statistical-programming-environment</guid>
	<pubDate>Tue, 21 Jan 2020 04:22:49 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40583/trelliscope-flexibly-visualize-large-complex-data-in-great-detail-from-within-the-r-statistical-programming-environment</link>
	<title><![CDATA[Trelliscope: flexibly visualize large, complex data in great detail from within the R statistical programming environment.]]></title>
	<description><![CDATA[<p>Trelliscope provides a way to flexibly visualize large, complex data in great detail from within the R statistical programming environment. Trelliscope is a component in the<span>&nbsp;</span><a href="http://deltarho.org/docs-trelliscope/deltarho.org">DeltaRho</a><span>&nbsp;</span>environment.</p>
<p>For those familiar with<span>&nbsp;</span><a href="http://cm.bell-labs.com/cm/ms/departments/sia/project/trellis/">Trellis Display</a>,<span>&nbsp;</span><a href="http://docs.ggplot2.org/0.9.3.1/facet_wrap.html">faceting in ggplot</a>, or the notion of<span>&nbsp;</span><a href="http://en.wikipedia.org/wiki/Small_multiple">small multiples</a>, Trelliscope provides a scalable way to break a set of data into pieces, apply a plot method to each piece, and then arrange those plots in a grid and interactively sort, filter, and query panels of the display based on metrics of interest. With Trelliscope, we are able to create multipanel displays on data with a very large number of subsets and view them in an interactive and meaningful way.</p><p>Address of the bookmark: <a href="http://deltarho.org/docs-trelliscope/#introduction" rel="nofollow">http://deltarho.org/docs-trelliscope/#introduction</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23247/ra-at-csir-urdip</guid>
  <pubDate>Fri, 10 Jul 2015 18:34:03 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA at CSIR-URDIP]]></title>
  <description><![CDATA[
<p>CSIR - UNIT FOR RESEARCH AND DEVELOPMENT OF INFORMATION PRODUCTS (CSIR- URDIP)</p>

<p>Adv. No. URDIP/ 15/2015</p>

<p>Opportunity for young Bioinformatics Professionals to make a career in the area of Intellectual Property</p>

<p>CSIR has set up a Unit for Research and Development of Information Products (CSIRURDIP) at Pune to work in the area of scientific informatics. One of the major focus areas of research work at CSIR-URDIP is PATENT INFORMATICS. With the increasing applications of Bioinformatics in the areas of life sciences industry such as Agriculture and Health Care (Diagnostics and Drugs), the output of research in these area is being protected by different forms of Intellectual Property rights. Realizing the importance of IP in the Bioinformatics field, Department of Biotechnology (DBT) has sanctioned a project on “Development, Facilitation and Harvesting of Bioinformatics related Intellectual Property” at CSIR-URDIP.</p>

<p>The project will involve application of Patent Informatics tools and techniques to Bioinformatics (including creation of patent landscapes, preparation of techno-legal reports of patentability, freedom to operate studies) to help protect IPRs and develop and conduct training programmes on IPRs related to Bioinformatics.</p>

<p>CSIR-URDIP invites applications from young Bioinformatics professionals to work on this emerging area which offers challenging opportunities and attractive career possibilities in future.</p>

<p>Position I: Research Associate</p>

<p>No of Positions: One</p>

<p>Consolidated amount Payable: = Rs 26,400.00</p>

<p>Qualification: PhD in Bioinformatics. In exceptional cases, candidature of M. Tech. candidates with First class in Bioinformatics with three years of relevant work experience will also be considered.</p>

<p>Job requirement: The prospective candidate will be expected to identify patents/scientific literature in field of Bioinformatics, evaluate them Vis a Vis other patents in fields and come up landscape / FTO / Patentability reports.</p>

<p>Age Limit: 35 years. </p>

<p>The candidates meeting the above criteria may appear for walk in interview at their cost on Monday 13th July 2015 at 02:00 p.m. with the CV and supporting documents (original plus copies) at the following address: CSIR Unit or Research and Development of Information Products (URDIP), "Tapovan" S.No. 113 &amp; 114, Near NCL Colony Baner Side Gate, NCL Estate, Pashan Road, Pune-411008, Maharashtra, India</p>

<p>Advertisement: www.urdip.res.in/download/DBT_RA_Advt_July%202015.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/41043/postdoctoral-scientist-genome-analytics-genome-bioinformatics-mf</guid>
  <pubDate>Sun, 16 Feb 2020 02:57:40 -0600</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral scientist genome analytics/ genome bioinformatics (m/f/*)]]></title>
  <description><![CDATA[
<p>https://www.uksh.de/jobs/Stellenangebote-nr-20190570-p-8.html<br />Your profile:<br />Degree in bioinformatics, biostatistics, or equivalent<br />Experience in the processing and analysis of large-scale genomics data using compute clusters / high-performance computing<br />Strong competence in working in Unix/Linux environments (shell)<br />Strong programming skills (in particular: Python, R, Perl)<br />Experience with using git and snakemake<br />Fluent English language skills, both spoken and written<br />Strong communication skills and motivation to work in a young, interdisciplinary, dynamic team</p>

<p>Additional Information:</p>

<p>If you have any questions about scientific aspects of this position, please contact Prof. Lars Bertram, head of LIGA (lars.bertram@uni-luebeck.de).</p>

<p>Please contact Ms. Anna Wolbert for further questions about administrative details (recruiting@uksh.de).</p>

<p>Weitere Informationen erhalten Sie auch unter www.uksh.de/karriere.</p>

<p>Wir freuen uns auf Ihre Bewerbung bis zum 15.03.2020 unter Angabe unserer Ausschreibungsnummer 20190570.119.CL.</p>
]]></description>
</item>

</channel>
</rss>