<?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/29479?offset=30</link>
	<atom:link href="https://bioinformaticsonline.com/related/29479?offset=30" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<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/fun/view/39329/you-cant-install-david-brownlee</guid>
	<pubDate>Wed, 01 May 2019 21:47:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/fun/view/39329/you-cant-install-david-brownlee</link>
	<title><![CDATA[You can't install David Brownlee ;-)]]></title>
	<description><![CDATA[<p>By mistake I ask cpan to install abs, and it return this message.</p><blockquote><p>jitendra@jitendra-Aspire-S3-391[parallelLastz] sudo cpan install abs&nbsp; [ 4:43AM]<br />Going to read '/home/jitendra/.cpan/Metadata'<br />&nbsp; Database was generated on Thu, 02 May 2019 00:08:06 GMT<br />Don't be silly, you can't install David Brownlee ;-)</p></blockquote>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/19792/irishgrid-irish-grid-mapping-system</guid>
	<pubDate>Fri, 26 Dec 2014 07:53:24 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/19792/irishgrid-irish-grid-mapping-system</link>
	<title><![CDATA[irishgrid: Irish Grid Mapping System]]></title>
	<description><![CDATA[<p>Perl module for creating geographic 10km-square maps using either SVG or PNG (with GD library) output format.</p>
<p>Originally design to map the location of objects in a 10 km map IrishGrid includes:</p>
<ul>
<li>native support of the Irish Grid System (see <a href="http://www.osi.ie/">http://www.osi.ie/</a>)</li>
<li>optimize for speed (there's as less as possible data to conversion)</li>
<li>customized color functions</li>
</ul>
<p>https://code.google.com/p/irishgrid/downloads/detail?name=irishgrid.pl</p><p>Address of the bookmark: <a href="https://code.google.com/p/irishgrid/" rel="nofollow">https://code.google.com/p/irishgrid/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22285/project-associate-bioinformatics-iit-mandi</guid>
  <pubDate>Wed, 06 May 2015 06:18:47 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Associate Bioinformatics @ IIT Mandi]]></title>
  <description><![CDATA[
<p>Eligibility : MSc(Bio-Informatics, Bio-Tech), BSc, BE/B.Tech(Bio-Medical /Bio-Technology Engg, CSE)</p>

<p>Location : Kulu</p>

<p>Job Category : Govt Jobs, Research</p>

<p>Last Date : 20 May 2015</p>

<p>Job Type : Full Time</p>

<p>Hiring Process : Walk - In<br />IIT Mandi - Job Details<br />IIT Mandi</p>

<p>Project Associate Bioinformatics Job vacancies in IIT Mandi on purely temporary</p>

<p>Project: “Exploring the Human Microbiome: A hunt for the candidates for Pre- and Pro-biotics.”</p>

<p>Minimum Qualification and Experience: M.Sc. in Bioinformatics OR B.Tech / BE in Bioinformatics OR M. Sc. in Biotechnology / Life sciences or related areas with Diploma or relevant experience in Bioinformatics OR B.Tech in Biotechnology / Computer Science or MCA or B. Sc. in Life Sciences or related areas with PG diploma in Bioinformatics. Candidates with experience in NGS data handling and analysis will be preferred. Tenure: Initially for one year, extendable based upon performance.</p>

<p>No of Posts: 01</p>

<p>Salary: Rs. 12000- 18000/- per month.</p>

<p>How to apply</p>

<p>Interested candidates can come for a Walk-in-Interview on 20th May 2015 starting at 8:30 AM at the Academic Block, Indian Institute of Technology (IIT), Mandi, Vallabh College Campus, Near Bus Stand, Mandi, HP. The candidates should bring along their curriculum vitae (CV) and copies of educational and experience certificates. In case of any queries please contact: Dr. Tulika Prakash Srivastava (Principal Investigator), Indian Institute of Technology Mandi, Near Bus Stand Mandi - 175 001, Himachal Pradesh.</p>

<p>More at</p>

<p>http://www.iitmandi.ac.in/administration/advrt/Walk-in-interview_Ad.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22317/project-associate-bioinformatics-central-food-technological-research-institute-cftri</guid>
  <pubDate>Tue, 19 May 2015 07:01:12 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Associate Bioinformatics @ Central Food Technological Research Institute (CFTRI)]]></title>
  <description><![CDATA[
<p>Central Food Technological Research Institute (CFTRI)</p>

<p>Project Assistant (Level-II) job position in Central Food Technological Research Institute (CFTRI) on a temporary contractual basis in the research project (GAP 0469) funded by Science &amp; Engineering Research Board (SERB), Government of India, New Delhi tenable at the Lipidomics Centre, CSIR-CFTRI, Mysore, Karnataka</p>

<p>Name of the Position : </p>

<p>Qualification : First class M. Sc. in Biochemistry/Microbiology/Genetics/ Bioinformatics with good academic record and preferably with experience in molecular biology techniques and basic knowledge of molecular biology and biological chemistry</p>

<p>Emoluments : Rs. 12,000/- per month (Consolidated)</p>

<p>Age Limit : The upper age limit for applying shall be 28 years (as on 22-5-2015), which is relaxed for candidates belonging to Scheduled Castes/Schedule Tribes, Women, Persons with Disabilities (PWD) and OBCs as per GoI norms. <br /> <br />How to apply</p>

<p>Eligible candidates may send their complete Bio-data with e-mail address/contact phone number along with attested copies of the necessary certificates through post to Prof. Ram Rajasekharan, Lipidomics Centre, Department of Lipid Science, CSIR-CFTRI, Mysore-570 020, Karnataka (email: ram@cftri.res.in) on or before 22.05.2015</p>

<p>More at http://www.cftri.com/pa_gap0469.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22430/nrco-vacancies-for-junior-research-fellow-%E2%80%93-pakyong-sikkim</guid>
  <pubDate>Thu, 28 May 2015 19:10:07 -0500</pubDate>
  <link></link>
  <title><![CDATA[NRCO Vacancies For Junior Research Fellow – Pakyong, Sikkim]]></title>
  <description><![CDATA[
<p>Junior Research Fellow<br />Pay Scale:Rs 25,000/-<br />Educational Requirements:MSc (with NET qualification) / M.Tech degree (with or without NET) with minimum 55% marks in Biotechnology/ Bioinformatics/ Molecular Biology or any other related field.<br />Other Qualification:Computer Skills (Linux, Perl, Java, MySQL) with experience in advanced molecular Biology techniques.<br />No of Post: 01<br />How To Apply: Walk-in-Interviews will be held at ICAR-National Research Centre for Orchids,Pakyong 737106, Sikkim for the post of 01 (One) Junior Research Fellow and 01 (One) Project Attendant under Project ‘DBT’s Twinning programme for the NE’ titled “Assessment of chemical and genetic divergence of some fragrant orchids of north-east India for sustainable improvement of community livelihood” as indicated below. The appointment will be on contractual basis and the incumbents shall not have any claim for regular appointment in ICAR.</p>

<p>Details will be available at: http://nrcorchids.nic.in/Employments/Vacancy%20-%20JRF.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/22410/nicolas-corradi-lab</guid>
  <pubDate>Tue, 26 May 2015 16:19:02 -0500</pubDate>
  <link></link>
  <title><![CDATA[Nicolas Corradi Lab]]></title>
  <description><![CDATA[
<p>The goal of our research is to better understand the biology of microbial organisms of significant ecological, veterinary and medical importance.<br />To achieve this goal, our team combines the power of next generation DNA sequencing and  bioinformatics with molecular biology and experimental procedures.</p>

<p>Main research topics:<br />- Comparative and Population Genomics of Plant Symbionts<br />- Parasite Genome Evolution<br />- Experimental Evolution of Microbial Symbionts and Parasites<br />- Phylogenomics of Early Branching Fungi</p>

<p>More at http://corradilab.weebly.com/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22435/assistant-professor-central-university-of-himachal-pradesh-india</guid>
  <pubDate>Thu, 28 May 2015 19:22:49 -0500</pubDate>
  <link></link>
  <title><![CDATA[Assistant Professor, Central University of Himachal Pradesh, India]]></title>
  <description><![CDATA[
<p>Central University of Himachal Pradesh</p>

<p>PO Box: 21</p>

<p>DHARAMSHALA, DISTRICT KANGRA, HIMACHAL PRADESH – 176215</p>

<p>EMPLOYMENT NOTICE NO.: 02 / 2015</p>

<p>APPOINTMENT TO VARIOUS TEACHING, NON-TEACHING AND OTHER ACADEMIC STAFF POSITIONS</p>

<p>Applications in the prescribed form are invited from the eligible candidates for the following Teaching, Non-Teaching and other Academic Staff positions to be filled up on regular basis: Details of teaching positions:</p>

<p>15. School of Life Sciences</p>

<p>Computational Biology &amp; Bioinformatics</p>

<p>1 (ST - 1) 2 (UR - 2)</p>

<p>Last Date of receipt of applications: 22ND JUNE, 2015</p>

<p>Advertisement:</p>

<p>http://www.cuhimachal.ac.in/download/2015/may-2015/emp-notice-eng/1.%20Employment%20Notice%20No.%2002-2015%20dated%2019.05.2015_for%20Website.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22520/recruitment-for-6-positions-of-jrf-junior-research-fellow</guid>
  <pubDate>Thu, 04 Jun 2015 15:22:54 -0500</pubDate>
  <link></link>
  <title><![CDATA[RECRUITMENT FOR 6 POSITIONS OF JRF (Junior Research Fellow)]]></title>
  <description><![CDATA[
<p>Institute of Bioresources and Sustainable Development (IBSD), a National Institute of the Department of Biotechnology, Government of India invites applications for 6 positions of JRF for 2015. The main mandate of IBSD is Conservation and Sustainable Utilization of Bioresources for the Socio-economic Development of the North East Region of India, which is a genetic treasure trove of plants, animals and microbial resources. This region falls among the World’s top 10 Biodiversity Hotspots. The broad areas of research are in Plant Bioresources, Microbial Resources, Natural Product Chemistry, Animal Bioresources and Bioinformatics and Database Management. </p>

<p>Minimum qualifications: M.Sc. with minimum 55% for general and OBD Category (55% for SC/St/PH) in the above-mentioned subject areas (viz. Biotechnology, Life Sciences, Microbiology, Botany, Plant Sciences, Chemistry, Zoology, Animal Sciences, Fishery Sciences and any other relevant branches). </p>

<p>Preference will be given to those holding valid CSIR-UGC NET JRF. DBT-JRF, ICAR-JRF, ICMR-JRF and DST-INSPIRE Fellowship while NET/SLET/SET qualified and GATE qualified candidates (90 or above percentile) are also encouraged to apply. Reservations of seats: 15% for SC, 7.5% for ST, 27% for OBC (noncreamy layer) and 3% for Physically Handicapped as per statutory norms. </p>

<p>Selection Procedure: If the number of JRF and INSPIRE qualified candidates is more, selection will be based on interview of the JRF and INSPIRE qualified candidates only. The selected candidates may be registered for Ph.D. in any of the recognized Universities in India. </p>

<p>Application Procedure: Application should be sent in the prescribed application form (available on the IBSD website). The candidate should send the completed and signed form along with self attested copies of all supporting certificates and marksheets along with an application fee of Rs.300/- (For GEN/OBC/PH) &amp; Rs.150/- for (SC/ST), for which a Demand Draft in favour of ‘Institute of Bioresources and Sustainable Development, payable at Imphal, Manipur, should be attached with the application form. Candidates are advised to provide their email ID and mobile number as they would be contacted electronically by the Institute. Duly filled applications (with ‘Application for IBSD PhD Programme’ super scribed on the envelope) should be sent to ‘The Director, Institute of Bioresources and Sustainable Development, Takyelpat, Imphal-795001, Manipur so as to reach on or before 6th of July, 2015. Applications send by email with scan copy of required enclosures will also be accepted and can be sent to director.ibsd@nic.in. However, in such instances, the application will be processed only after the receipt of the mailed hard copies. </p>

<p>Advertisement: http://ibsd.gov.in/jobs/phd_2015/IBSD_JRF_2015.pdf</p>

<p>Application Form : http://ibsd.gov.in/jobs/phd_2015/APPLICATION_FORM.pdf</p>
]]></description>
</item>

</channel>
</rss>