<?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/396?offset=40</link>
	<atom:link href="https://bioinformaticsonline.com/related/396?offset=40" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/27463/bpipe-a-tool-for-running-and-managing-bioinformatics-pipelines</guid>
	<pubDate>Sat, 21 May 2016 22:42:16 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/27463/bpipe-a-tool-for-running-and-managing-bioinformatics-pipelines</link>
	<title><![CDATA[Bpipe - a tool for running and managing bioinformatics pipelines]]></title>
	<description><![CDATA[<p>Bpipe provides a platform for running big bioinformatics jobs that consist of a series of processing stages - known as 'pipelines'.</p>
<ul>
<li>January 20th, 2016 - New! Bpipe 0.9.9 released!</li>
<li>Download <a href="http://download.bpipe.org/versions/bpipe-0.9.9.tar.gz">latest</a>, <a href="http://download.bpipe.org">all</a></li>
<li><a href="http://docs.bpipe.org">Documentation</a></li>
<li><a href="https://groups.google.com/forum/#%21forum/bpipe-discuss">Mailing List</a> (Google Group)</li>
</ul>
<p>Bpipe has been published in <a href="http://bioinformatics.oxfordjournals.org/content/early/2012/04/11/bioinformatics.bts167.abstract">Bioinformatics</a>! If you use Bpipe, please cite:</p>
<p><em>Sadedin S, Pope B &amp; Oshlack A, Bpipe: A Tool for Running and Managing Bioinformatics Pipelines, Bioinformatics</em></p><p>Address of the bookmark: <a href="http://docs.bpipe.org/" rel="nofollow">http://docs.bpipe.org/</a></p>]]></description>
	<dc:creator>Radha Agarkar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30696/many-core-engine-mce-for-perl-example</guid>
	<pubDate>Tue, 31 Jan 2017 05:37:50 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30696/many-core-engine-mce-for-perl-example</link>
	<title><![CDATA[Many-Core Engine (MCE) for Perl example]]></title>
	<description><![CDATA[<p><span>MCE spawns a pool of workers and therefore does not fork a new process per each element of data. Instead, MCE follows a bank queuing model. Imagine the line being the data and bank-tellers the parallel workers. MCE enhances that model by adding the ability to chunk the next n elements from the input stream to the next available worker.</span></p>
<p>CORE MODULES</p>
<p>Three modules make up the core engine for MCE.</p>
<dl><dt id="MCE::Core"><a href="https://metacpan.org/pod/MCE#MCE::Core"><span></span></a><a></a><a href="https://metacpan.org/pod/distribution/MCE/lib/MCE/Core.pod">MCE::Core</a></dt><dd>
<p>Provides the Core API for Many-Core Engine. The various MCE options are described here.</p>
</dd><dt id="MCE::Signal"><a href="https://metacpan.org/pod/MCE#MCE::Signal"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Signal">MCE::Signal</a></dt><dd>
<p>Temporary directory creation, cleanup, and signal handling.</p>
</dd><dt id="MCE::Util"><a href="https://metacpan.org/pod/MCE#MCE::Util"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Util">MCE::Util</a></dt><dd>
<p>Utility functions for Many-Core Engine.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#MCE-EXTRAS"><span></span></a><a></a>MCE EXTRAS</p>
<p>There are 4 add-on modules for use with MCE.</p>
<dl><dt id="MCE::Candy"><a href="https://metacpan.org/pod/MCE#MCE::Candy"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Candy">MCE::Candy</a></dt><dd>
<p>Provides a collection of sugar methods and output iterators for preserving output order.</p>
</dd><dt id="MCE::Mutex"><a href="https://metacpan.org/pod/MCE#MCE::Mutex"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Mutex">MCE::Mutex</a></dt><dd>
<p>Provides a simple semaphore implementation supporting threads and processes.</p>
</dd><dt id="MCE::Queue"><a href="https://metacpan.org/pod/MCE#MCE::Queue"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Queue">MCE::Queue</a></dt><dd>
<p>Provides a hybrid queuing implementation for MCE supporting normal queues and priority queues from a single module. MCE::Queue exchanges data via the core engine to enable queuing to work for both children (spawned from fork) and threads.</p>
</dd><dt id="MCE::Relay"><a href="https://metacpan.org/pod/MCE#MCE::Relay"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Relay">MCE::Relay</a></dt><dd>
<p>Enables workers to receive and pass on information orderly with zero involvement by the manager process while running.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#MCE-MODELS"><span></span></a><a></a>MCE MODELS</p>
<p>The models take Many-Core Engine to a new level for ease of use. Two options (chunk_size and max_workers) are configured automatically as well as spawning and shutdown.</p>
<dl><dt id="MCE::Loop"><a href="https://metacpan.org/pod/MCE#MCE::Loop"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Loop">MCE::Loop</a></dt><dd>
<p>Provides a parallel loop utilizing MCE for building creative loops.</p>
</dd><dt id="MCE::Flow"><a href="https://metacpan.org/pod/MCE#MCE::Flow"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Flow">MCE::Flow</a></dt><dd>
<p>A parallel flow model for building creative applications. This makes use of user_tasks in MCE. The author has full control when utilizing this model. MCE::Flow is similar to MCE::Loop, but allows for multiple code blocks to run in parallel with a slight change to syntax.</p>
</dd><dt id="MCE::Grep"><a href="https://metacpan.org/pod/MCE#MCE::Grep"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Grep">MCE::Grep</a></dt><dd>
<p>Provides a parallel grep implementation similar to the native grep function.</p>
</dd><dt id="MCE::Map"><a href="https://metacpan.org/pod/MCE#MCE::Map"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Map">MCE::Map</a></dt><dd>
<p>Provides a parallel map model similar to the native map function.</p>
</dd><dt id="MCE::Step"><a href="https://metacpan.org/pod/MCE#MCE::Step"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Step">MCE::Step</a></dt><dd>
<p>Provides a parallel step implementation utilizing MCE::Queue between user tasks. MCE::Step is a spin off from MCE::Flow with a touch of MCE::Stream. This model, introduced in 1.506, allows one to pass data from one sub-task into the next transparently.</p>
</dd><dt id="MCE::Stream"><a href="https://metacpan.org/pod/MCE#MCE::Stream"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Stream">MCE::Stream</a></dt><dd>
<p>Provides an efficient parallel implementation for chaining multiple maps and greps together through user_tasks and MCE::Queue. Like with MCE::Flow, MCE::Stream can run multiple code blocks in parallel with a slight change to syntax from MCE::Map and MCE::Grep.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#MISCELLANEOUS"><span></span></a>MISCELLANEOUS</p>
<p>Miscellaneous additions included with the distribution.</p>
<dl><dt id="MCE::Examples"><a href="https://metacpan.org/pod/MCE#MCE::Examples"><span></span></a><a></a><a href="https://metacpan.org/pod/distribution/MCE/lib/MCE/Examples.pod">MCE::Examples</a></dt><dd>
<p>Describes various demonstrations for MCE including a Monte Carlo simulation.</p>
</dd><dt id="MCE::Subs"><a href="https://metacpan.org/pod/MCE#MCE::Subs"><span></span></a><a></a><a href="https://metacpan.org/pod/MCE::Subs">MCE::Subs</a></dt><dd>
<p>Exports functions mapped directly to MCE methods; e.g. mce_wid. The module allows 3 options; :manager, :worker, and :getter.</p>
</dd></dl>
<p><a href="https://metacpan.org/pod/MCE#REQUIREMENTS"><span></span></a>REQUIREMENTS</p>
<p>Perl 5.8.0 or later. PDL::IO::Storable is required in scripts running PDL.</p>
<p><a href="https://metacpan.org/pod/MCE#SOURCE-AND-FURTHER-READING"><span></span></a><a></a>SOURCE AND FURTHER READING</p>
<p>The source, cookbook, and examples are hosted at GitHub.</p>
<ul>
<li>
<p><a href="https://github.com/marioroy/mce-perl">https://github.com/marioroy/mce-perl</a></p>
</li>
<li>
<p><a href="https://github.com/marioroy/mce-cookbook">https://github.com/marioroy/mce-cookbook</a></p>
</li>
<li>
<p><a href="https://github.com/marioroy/mce-examples">https://github.com/marioroy/mce-examples</a></p>
</li>
</ul>
<p><a href="https://metacpan.org/pod/MCE#SEE-ALSO"><span></span></a><a></a>SEE ALSO</p>
<p><code>MCE::Shared</code>&nbsp;provides data sharing capabilities for&nbsp;<code>MCE</code>. It includes&nbsp;<code>MCE::Hobo</code>&nbsp;for running code asynchronously.</p>
<ul>
<li>
<p><a href="https://metacpan.org/pod/MCE::Shared">MCE::Shared</a></p>
</li>
<li>
<p><a href="https://metacpan.org/pod/MCE::Hobo">MCE::Hobo</a></p>
</li>
</ul><p>Address of the bookmark: <a href="https://github.com/marioroy/mce-examples" rel="nofollow">https://github.com/marioroy/mce-examples</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/43272/bioinformatics-head-bioinformatics-manager-iii-cancer-genomics-research-laboratory-at-frederick-national-laboratory</guid>
  <pubDate>Wed, 18 Aug 2021 00:19:48 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics Head (Bioinformatics Manager III), Cancer Genomics Research Laboratory at  Frederick National Laboratory]]></title>
  <description><![CDATA[
<p>Frederick National Laboratory seeking an enthusiastic, creative, and seasoned bioinformatics professional to join our leadership team and direct the exceptional Bioinformatics Group at the Cancer Genomics Research Laboratory (CGR).  CGR has a diverse team of bioinformatics and computational scientists that support all areas of bioinformatics and data analysis (infrastructure, data QC, pipeline development and maintenance, data curation and sharing, methodology development, statistical analyses, machine learning approaches, and scientific interpretation).</p>

<p>More at https://leidosbiomed.csod.com/ats/careersite/jobdetails.aspx?site=4&amp;c=leidosbiomed&amp;id=2040</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/7813/research-associate-indian-institute-of-spices-research</guid>
  <pubDate>Wed, 08 Jan 2014 10:10:03 -0600</pubDate>
  <link></link>
  <title><![CDATA[Research Associate @ INDIAN INSTITUTE OF SPICES RESEARCH]]></title>
  <description><![CDATA[
<p>INDIAN INSTITUTE OF SPICES RESEARCH<br />(Indian Council of Agricultural Research)<br />Marikunnu P.O., Kozhikode – 673 012, Kerala</p>

<p>Phone No. 0495 2731 410</p>

<p>WALK -IN- TEST CUM INTERVIEW<br />Walk- in- Test cum Interview (based on test) for the selection of Research Associate (Bioinformatics) &amp; Bioinformatic Trainees under the scheme ‘Distributed Information Sub Centre- DISC’ will be held at this Institute as per details indicated below.</p>

<p>Research Associate<br />Date of Interview : 21 -01-2014 at 10.00 A.M<br />Qualifications :<br />a) Essential: Doctorate degree in Bioinformatics or Biotechnology/Life Sciences/Biochemistry with expertise in  Bioinformatics as evidenced by publications.<br />OR Three years research experience after  MVSc/MPharm/ME/MTech with Bioinformatics Specialization.<br />b Desirable: Experience in handling NGS data  Programming skills in Python/Bioperl<br />Emoluments : Rs:22000/- per month + HRA  (higher pay upto Rs.24000/- can be paid depending on the qualifications and experience.<br />Upper age limit : 40 years for Men &amp; 45 years for Women as on date of Interview (Upper Age limits are relaxable for SC, ST and OBC candidates as per Govt. of India norms (at present 5 years for SC/ST and 3 years for OBC)<br />Duration of Project : Till the closure of the project.</p>

<p>General Terms and conditions<br />1. The above positions are purely on temporary basis and is co-terminus with the closure of the project. There is no provision of re-employment after termination of project.<br />The selected candidate will not have any right for claiming pay scale or absorption<br />against any regular post being vacant on a later date at this Institute.<br />2 . No TA/DA will be paid for attending the Interview.<br />3. Canvassing in any form will lead to cancellation of candidate.<br />4. The decision of Director, IISR would be final and binding in all aspects.<br />5. Candidates will not be permitted to enter the Examination Hall after 10.00 A.M.<br />6. Candidates who secure the minimum marks prescribed by the Institute in written test  only will be eligible for calling for the interview. The number of candidates to be  called for the interview will be decided by the Director of the Institute.<br />7 Those who do not possess original Degree/PG certificate or Provisional certificate will not be allowed to attend the Test/Interview.</p>

<p>Note: All relevant certificates (in original) and bio data, No objection certificate in case he/she is employed elsewhere and experience certificate in original (if any) need to be produced at the time of interview.<br />Advertisement: http://spicebioinfo.res.in/downloads/DISC-Website.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43943/bioinformatics-tutorial</guid>
	<pubDate>Mon, 22 Aug 2022 23:56:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43943/bioinformatics-tutorial</link>
	<title><![CDATA[Bioinformatics Tutorial !]]></title>
	<description><![CDATA[<p>This site aims to be a useful resource for bioinformatics beginners. Feel free to jump right in with the section most relevant to you, and if you're not sure, then the place to start is definitely Unix <p>Address of the bookmark: <a href="https://astrobiomike.github.io/" rel="nofollow">https://astrobiomike.github.io/</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/4947/experimental-scientific-officer-bioinformatics</guid>
  <pubDate>Fri, 27 Sep 2013 11:09:44 -0500</pubDate>
  <link></link>
  <title><![CDATA[Experimental Scientific Officer (Bioinformatics)]]></title>
  <description><![CDATA[
<p>Closing Date:  8 October 2013</p>

<p>Salary:   £27,854 - £29,541, with progression to £36,298</p>

<p>You will perform cutting edge computational biology within the Faculty of Medical Sciences, with a particular focus on the Northern Institute for Cancer Research (NICR), and contribute to the delivery of Faculty wide programmes of training, analytical services and skill transfer between Faculty Institutes.</p>

<p>You will have a relevant first degree or equivalent qualifications and/or experience in a relevant scientific/technical role, together with previous specialist experience at a senior level in bioinformatics. A PhD is desirable.</p>

<p>This position is part of the Bioinformatics Support Unit but physically located for the majority of the time in the NICR buildings.</p>

<p>Tenable for three years.</p>

<p>Informal enquiries to unit head Dr Simon Cockell: 0191 222 7253; simon.cockell@ncl.ac.uk</p>

<p>For more information visit @ https://www15.i-grasp.com/fe/tpl_newcastle02.asp?s=4A515F4E5A565B1A&amp;jobid=50667,2552984041&amp;key=70203469&amp;c=725434237887&amp;pagestamp=sepghtjhowdqpsxuyn</p>

<p>You can also find several other jobs @http://bsu.ncl.ac.uk/support/recruitment/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/44226/rotifers-lab</guid>
  <pubDate>Wed, 08 Mar 2023 23:23:14 -0600</pubDate>
  <link></link>
  <title><![CDATA[Rotifers Lab]]></title>
  <description><![CDATA[
<p>For scientists in the MBL’s Gribble Lab, the rotifer (Brachionus manjavacas) is used as a model organism to study evolution, stress responses, the biology of aging, and maternal effects. Rotifers are small, easy to grow in the lab, have a short lifespan, and share many of their genes with humans. That makes them ideal specimens in which to address questions relevant to human health as well as understand basic biological and evolutionary processes. Brachionus rotifers produces eggs that can be completely dried and frozen for decades, then hatch within a day when exposed to water and light.</p>

<p>https://www.mbl.edu/research/research-organisms/rotifer<br />https://gribblebiolab.org/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/5220/paolo-ruggerone-lab</guid>
  <pubDate>Tue, 01 Oct 2013 14:15:53 -0500</pubDate>
  <link></link>
  <title><![CDATA[Paolo Ruggerone Lab]]></title>
  <description><![CDATA[
<p>Efflux pumps (RND family)</p>

<p>Functioning of efflux systems in Gram-negative bacteria<br />Determinants of the compound-efflux system interactions<br />Action of inhibitors on efflux systems<br />Structural and dynamical features of the efflux systems</p>

<p>TatA<br />Assembly of the TatA system<br />Study of the dynamical features of the charge zipper</p>

<p>Methods<br />Setup of a kinetic Monte Carlo (KMC) scheme to study the flux of antibiotics through porins and efflux systems<br />Setup of protocol to integrate MD results in a ligand-based approach</p>

<p>Viral inhibitors<br />Interactions of selected compounds with RNA-dependent RNA polymerases (RdRps) of HCV and BVDV<br />Assessment of the role of mutations in RdRps<br />Antimicrobial peptides</p>

<p>Interactions of antimicrobial peptides with membranes: structure and dynamics<br />Interactions between antimicrobial peptides in the presence of different membranes<br />Protein-protein interactions<br />Effects of mutations</p>

<p>Lab Page<br />http://www.dsf.unica.it/~paolo/Site/Home.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44518/virus-bioinformatics-tools</guid>
	<pubDate>Wed, 24 Apr 2024 06:19:55 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44518/virus-bioinformatics-tools</link>
	<title><![CDATA[Virus Bioinformatics Tools]]></title>
	<description><![CDATA[<p><span>Bioinformatics tools play a crucial role in studying viruses, enabling researchers to analyze their genetic makeup, structure, function, and evolution. Here are some commonly used bioinformatics tools for virus research</span></p>
<p>https://evirusbioinfc.notion.site/18e21bc49827484b8a2f84463cb40b8d?v=92e7eb6703be4720abf17a901bc9a947</p><p>Address of the bookmark: <a href="https://evirusbioinfc.notion.site/18e21bc49827484b8a2f84463cb40b8d?v=92e7eb6703be4720abf17a901bc9a947" rel="nofollow">https://evirusbioinfc.notion.site/18e21bc49827484b8a2f84463cb40b8d?v=92e7eb6703be4720abf17a901bc9a947</a></p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/5310/bergman-lab</guid>
  <pubDate>Thu, 03 Oct 2013 17:20:09 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bergman Lab]]></title>
  <description><![CDATA[
<p>Broad area of research:</p>

<p>Genome Annotation and Functional Genomics</p>

<p>Bergman Lab is actively engaged in the development and application of computational methods to improve the annotation of functional biological features in genome sequences.  Bergman Lab work focuses on improving annotation of non-protein-coding regions of the genome including conserved noncoding sequences (CNSs), cis-regulatory modules (CRMs), transcription factor binding sites (TFBSs), transposable elements (TEs) and noncoding RNA (ncRNA) genes. Current projects include improving the (i) annotation of TEs in the fly and yeast genomes, (ii) annotation of CRMs and TFBSs in the fly genome, and (iii) analysis of transposon knockout collections in flies. Research in this area is supported by the EC FP7 programme.</p>

<p>Genome and Molecular Evolution<br />Text and Data Mining</p>

<p>More @ http://bergmanlab.smith.man.ac.uk/</p>
]]></description>
</item>

</channel>
</rss>