<?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/27035?offset=1060</link>
	<atom:link href="https://bioinformaticsonline.com/related/27035?offset=1060" 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/30825/open-positions-in-pasini%E2%80%99s-lab</guid>
  <pubDate>Sat, 04 Feb 2017 08:17:18 -0600</pubDate>
  <link></link>
  <title><![CDATA[Open Positions in Pasini’s lab]]></title>
  <description><![CDATA[
<p>Computational Biologists<br />Open to PhD-student and Post-doc candidates<br />We are looking for wet and computational biologists to work on an ERC funded project in our<br />laboratory located at the Department of Experimental Oncology of the European Institute of<br />Oncology in Milan (Italy). The project will focus on different aspects of the function of Polycomb<br />Group proteins and other chromatin modifying activities in relation to their role in regulating cellular<br />identity in the development of adult tissues.<br />The candidates will be in charge of computational analysis and data management related to the<br />project. She/he will directly interact with the wet scientists working in our laboratory while working<br />embedded in the community of computational biologists present at our institution. The work will<br />involve the analysis of sequencing data produced with cutting edge technologies to study gene<br />expression and chromatin environment including data produced on rare cell populations and single<br />cells. The applicants must have a good knowledge of programming in python/perl/java along with<br />strong statistical background and performing analysis in R platform. A biological background is<br />also recommended however it’s not mandatory for application.<br />Each applicant should submit a full CV (with a detailed description of her/his background,<br />expertise, achievements and publication records) together with a letter of intent and at least two<br />contacts for recommendations (for a post-doc position). Competitive salary will be offered based<br />on the experience of the candidate. Non Italian as well as Italian applicants that have been working<br />outside Italy (&gt;3yrs.) will have the opportunity to benefit of a full tax deduction for the first three<br />years of contract.<br />Applications should be submitted as single PDF to diego.pasini@ieo.it</p>

<p>Lab https://www.ieo.it/en/RESEARCH/People/Researchers/Pasini-Diego/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/30874/important-journals-blogs-and-forums-for-bioinformaticians</guid>
	<pubDate>Wed, 08 Feb 2017 09:15:31 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/30874/important-journals-blogs-and-forums-for-bioinformaticians</link>
	<title><![CDATA[Important Journals, Blogs and Forums for Bioinformaticians]]></title>
	<description><![CDATA[<p><em>Journals</em>. Most journals have RSS feeds for their current updates.</p><ul>
<li><a href="http://bioinformatics.oxfordjournals.org/rss/" target="_blank">Bioinformatics - RSS feed of current and advance online publications</a></li>
<li><a href="http://genome.cshlp.org/rss/" target="_blank">Genome Research - current &amp; advance</a></li>
<li><a href="http://genomebiology.com/" target="_blank">Genome Biology - editors picks, latest, most viewed, most forwarded</a>. (Hit the RSS icon under each tab).</li>
<li><a href="http://www.plosgenetics.org/static/rssFeeds.action" target="_blank">PLoS Genetics - new articles</a></li>
<li><a href="http://www.ploscompbiol.org/static/rssFeeds.action" target="_blank">PLoS Computational Biology - new articles</a></li>
<li><a href="http://www.nature.com/ng/newsfeeds.html" target="_blank">Nature Genetics - current TOC and AOP</a></li>
<li><a href="http://www.nature.com/nrg/info/newsfeeds.html" target="_blank">Nature Reviews Genetics - current TOC and AOP</a></li>
</ul><ul>
<li><a href="https://academic.oup.com/bioinformatics" target="_blank">Bioinformatics</a></li>
<li><a href="https://bmcbioinformatics.biomedcentral.com/" target="_blank">BMC Bioinformatics</a></li>
<li><a href="https://academic.oup.com/bib" target="_blank">Briefings in Bioinformatics</a></li>
<li><a href="http://genomebiology.biomedcentral.com/" target="_blank">Genome Biology</a></li>
<li><a href="http://genome.cshlp.org/rss/" target="_blank">Genome Research: current and AOP</a></li>
<li><a href="http://microbiomejournal.biomedcentral.com/" target="_blank">Microbiome</a></li>
<li><a href="http://www.nature.com/ng/newsfeeds.html" target="_blank">Nature Genetics, current &amp; AOP</a></li>
<li><a href="http://www.nature.com/nrg/info/newsfeeds.html" target="_blank">Nature Reviews Genetics, current &amp; AOP</a></li>
<li><a href="https://academic.oup.com/nar" target="_blank">Nucleic Acids Research</a></li>
<li><a href="http://journals.plos.org/ploscompbiol/s/help-using-this-site#loc-article-feeds" target="_blank">PLOS Computational Biology</a></li>
<li><a href="http://journals.plos.org/plosgenetics/s/help-using-this-site#loc-article-feeds" target="_blank">PLOS Genetics</a></li>
</ul><p><em>Blogs</em><span>. Some of these blogs are very relevant to bioinfo jobs. Others are more personal interest.</span></p><ul>
<li><a href="http://blog.openhelix.eu/" target="_blank">The OpenHelix Blog</a></li>
<li><a href="http://www.ensembl.info/" target="_blank">Ensembl blog</a></li>
<li><a href="http://wiki.g2.bx.psu.edu/News" target="_blank">Galaxy News</a></li>
<li><a href="http://bcbio.wordpress.com/" target="_blank">Blue Collar Bioinformatics</a></li>
<li><a href="http://www.homolog.us/blogs/" target="_blank">Homologus</a></li>
<li><a href="http://blog.goldenhelix.com/" target="_blank">Golden Helix - our 2 SNPs</a></li>
<li><a href="http://genomicslawreport.com/" target="_blank">Genomics Law Report</a></li>
<li><a href="http://www.r-bloggers.com/" target="_blank">R-bloggers</a>&nbsp;(aggregates feeds from &gt;350 blogs about R)</li>
<li><a href="http://genomesunzipped.org/" target="_blank">Genomes Unzipped</a></li>
<li><a href="http://compgen.blogspot.com/" target="_blank">Jason Moore's Epistasis Blog</a></li>
<li><a href="http://spittoon.23andme.com/" target="_blank">23andMe - the Spitoon</a></li>
</ul><ul>
<li><a href="http://varianceexplained.org/" target="_blank">Variance Explained</a>: David Robinson&rsquo;s blog (Data Scientist at Stack Overflow, works in R and Python).</li>
<li><a href="https://globalbiodefense.com/" target="_blank">Global Biodefense</a>: News on pathogens, outbreaks, and preparedness, with periodic posts on genomics and bioinformatics-related developments and funding opportunities.</li>
<li><a href="https://flxlexblog.wordpress.com/" target="_blank">In between lines of code</a>: Lex Nederbragt&rsquo;s blog on biology, sequencing, bioinformatics, &hellip;</li>
<li><a href="http://simplystatistics.org/" target="_blank">Simply Statistics</a>: A statistics blog by Rafa Irizarry, Roger Peng, and Jeff Leek.</li>
<li><a href="https://liorpachter.wordpress.com/" target="_blank">Bits of DNA</a>: Reviews and commentary on computational biology by Lior Pachter (fair warning: dialogue here can get a bit heated!).</li>
<li><a href="http://bcb.io/articles/" target="_blank">Blue Collar Bioinformatics</a>: articles related tool validation and the open source bioinformatics community.</li>
<li><a href="https://microbiomedigest.com/" target="_blank">Microbiome Digest &ndash; Bik&rsquo;s Picks</a>: A daily digest of scientific microbiome papers, by Elisabeth Bik, Science Editor at uBiome.</li>
<li><a href="http://ivory.idyll.org/blog/" target="_blank">Living in an Ivory Basement</a>: Titus Brown&rsquo;s blog on metagenomics, open science, testing, reproducibility, and programming.</li>
<li><a href="http://enseqlopedia.com/" target="_blank">Enseqlopedia</a>: James Hadfield&rsquo;s blog on all things NGS.</li>
<li><a href="http://www.epistasisblog.org/" target="_blank">Epistasis Blog</a>: Jason Moore&rsquo;s computational biology blog.</li>
<li><a href="https://blog.rstudio.org/" target="_blank">RStudio Blog</a>: announcements about new RStudio functionality, updates about the&nbsp;<a href="http://tidyverse.org/" target="_blank">tidyverse</a>, and more.</li>
<li><a href="http://nextgenseek.com/" target="_blank">nextgenseek.com</a>: Next-Gen Sequencing Blog covering new developments in NGS data &amp; analysis.</li>
<li><a href="http://www.rna-seqblog.com/" target="_blank">RNA-Seq Blog</a>: Transcriptome Research &amp; Industry News.</li>
<li><a href="http://www.theallium.com/" target="_blank">The Allium</a>: We all need a little humor in our lives. Like&nbsp;<em>The Onion</em>, but for science.</li>
</ul><p><em>Forums.</em></p><ul>
<li><a href="http://seqanswers.com/forums/forumdisplay.php?f=18" target="_blank">Seqanswers - bioinformatics forum</a></li>
<li><a href="http://seqanswers.com/forums/forumdisplay.php?f=26" target="_blank">Seqanswers - RNA-Seq forum</a></li>
<li><a href="http://www.biostars.org/rss/" target="_blank">BioStar</a></li>
<li><a href="http://bioinformaticsonline.com/">BOL</a></li>
</ul>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/30928/jrf-bioinformatics-job-vacancies-in-tezpur-university</guid>
  <pubDate>Tue, 14 Feb 2017 16:40:26 -0600</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics job vacancies in Tezpur University]]></title>
  <description><![CDATA[
<p>Memo No. DoRD/CSE/SSS/20-295/112-A Date: 01/02/2017</p>

<p>Project Title : Integrating genome scale metabolic analysis of model plant pathogen Ralstonia solanacearum with RNAseq and fluxomics</p>

<p>Essential qualification : M.Tech. in CSE/IT (With specialization in Computational Biology/Bioinformatics) or M.Sc. in Bioinformatics/Biosciences/Molecular Biology Biotechnology preferably with NET/GATE/BET. Candidates should have minimum 55 % mark both in 10th and 10+2 Science examinations and mathematics at 10+2 Science. Desirable: Preference will be given to the candidates having experience in computational analysis of genome sequences or similar projects.</p>

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

<p>Remuneration : Rs. 25,000/- for the 1st two years and Rs. 28,000/- for the 3rd year for SRF and applicable to the candidate having post graduate degree in Basic Science with NET/GATE/BET qualification or post graduate degree in professional course. Rs. 12,000/- for the 1st two years and Rs. 14,000/- for the 3 rd year for SRF, </p>

<p>Age : 28 years</p>

<p>Duration : Three (03) years or till completion of the project or until further order, whichever is earlier.</p>

<p>Hiring Process : Walk - In<br />Job Role: Research/JRF/SRF</p>

<p>Walk-in-interview will be held on 17th February, 2017, 11.15 a.m. at the office of the Head, Department of Computer Science and Engineering, Tezpur University.</p>

<p>Interested candidates may appear before the interview board with original documents from 10th standard onwards and photocopies of mark sheets, certificates, testimonials, caste certificate (if applicable), experience certificate certificates of NET/GATE/BET or similar examination qualifications, any other testimonials and a copy of recent curriculum vitae (CV) on the day of interview.</p>

<p>More at http://www.tezu.ernet.in/ProjectWalkin/Advt-DoRD-CSE-SSS-20-295-112-A.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/32227/postdoctoral-research-position-in-bioinformatics-in-milan</guid>
  <pubDate>Thu, 20 Apr 2017 12:53:12 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Research Position in Bioinformatics in Milan]]></title>
  <description><![CDATA[
<p>The lab of Immunobiology of Neurological Disorders has a main interest in the biological processes associated with multiple sclerosis, an inflammatory disorder of the central nervous system. The projects of interest for this application involve research on translational bioinformatics in complex human neurological disorders.</p>

<p>You have a  PhD in Computational Science, Bioinformatics,  or equivalent, and expertise in analysis and modeling of human RNA-seq data, statistics, data mining and machine learning. Excellent communication skills in English (written and oral) is a must. Flexibility and willingness to work across multiple projects and technologies in a rapidly evolving scientific context is required.<br />Salary will depend on qualification and experience. Starting date: immediate.</p>

<p>Interested candidates should send to farina.cinthia@hsr.it:</p>

<p>1. CV (please show evidences of relevant titles, projects, courses, references, etc.)           <br />2. One page with a list of research topics (i.e. ongoing projects)     <br />3. earliest availability</p>

<p>4. 2-3 contact names</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/31300/clgenomics</guid>
	<pubDate>Fri, 03 Mar 2017 09:57:28 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/31300/clgenomics</link>
	<title><![CDATA[CLgenomics]]></title>
	<description><![CDATA[<p>CLgenomics is a standalone desktop software specifically designed for bacterial genome analysis. This program has a powerful multi-genome browser, which enables rapid and responsive exploration of bacterial genomes.</p>
<p>To use CLgenomics, individual genome data (genome sequences + annotation details) are compiled and saved in a specially formatted file called CLG (ChunLab Genomics).&nbsp;Each CLG file corresponds with one bacterial genome. If multiple genomes are being considered and compared, multiple CLG files are needed. ChunLab offers &gt;40,000 CLG files of publicly available Bacterial and Archaeal genomes.</p><p>Address of the bookmark: <a href="https://chunlab.wordpress.com/clgenomics-software/" rel="nofollow">https://chunlab.wordpress.com/clgenomics-software/</a></p>]]></description>
	<dc:creator>Radha Agarkar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/31976/snpgenie</guid>
	<pubDate>Thu, 30 Mar 2017 17:38:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/31976/snpgenie</link>
	<title><![CDATA[SNPGenie]]></title>
	<description><![CDATA[<p>SNPGenie is a Perl script for estimating evolutionary parameters, mainly from pooled next-generation sequencing (NGS) single-nucleotide polymorphism (SNP) variant data. SNP reports (acceptable in a variety of formats) much each correspond to a single population, with variants called relative to a single reference sequence (one sequence in one FASTA file). Just run the main script, <strong>snpgenie.pl</strong>, in a directory containing the necessary <a href="https://github.com/hugheslab/snpgenie#snpgenie-input">input files</a>, and we take care of the rest! For the earlier version, see <a href="http://ww2.biol.sc.edu/~austin/">Hughes Lab Bioinformatics Resource</a>.</p><p>Address of the bookmark: <a href="https://github.com/hugheslab/snpgenie" rel="nofollow">https://github.com/hugheslab/snpgenie</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/32154/decostar-detection-of-co-evolution</guid>
	<pubDate>Fri, 14 Apr 2017 06:27:25 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/32154/decostar-detection-of-co-evolution</link>
	<title><![CDATA[DeCoSTAR - Detection of Co-evolution]]></title>
	<description><![CDATA[<p><span>DeCoSTAR is a software which aims at reconstructing ancestral gene or genome organizations, in the form of sets of neighborhood relations -adjacencies- between pairs of ancestral genes or gene domains.</span><br><span>Ancestral genes or domains are deduced from reconciled gene trees in a context of birth, speciation, duplication, loss, transfer, which are either given as input or computed with the&nbsp;</span><a href="http://mbb.univ-montp2.fr/MBB/download_sources/16__TERA">ecceTERA package</a><span>, to which DeCoSTAR is integrated. DeCoSTAR constructs parsimonious scenarios of gains and breakages of adjacencies, and contains in particular all the features of previous software DeCo, DeCoLT, ArtDeCo and DeClone. It provides statistical supports on ancestral adjacencies, or the possibility to handle badly assembled genomes.&nbsp;</span><br><span>DeCoSTAR is able to reconstruct the histories of domains inside genes, including gene fusion and fission events, as well as ancestral genome structures for dozens of whole genomes from all kingdoms of life in a few minutes.</span></p><p>Address of the bookmark: <a href="http://pbil.univ-lyon1.fr/software/DeCoSTAR/" rel="nofollow">http://pbil.univ-lyon1.fr/software/DeCoSTAR/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/32358/list-of-goi-approved-peer-reviewed-bioinformatics-and-computational-biology-journals</guid>
	<pubDate>Tue, 25 Apr 2017 05:03:27 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/32358/list-of-goi-approved-peer-reviewed-bioinformatics-and-computational-biology-journals</link>
	<title><![CDATA[List of GOI approved peer reviewed bioinformatics and computational biology journals]]></title>
	<description><![CDATA[<p>Unfortunately, we now live in a world where the integrity of peer-reviewed journals is being threatened by the rise of the academic version of fake news &ndash; something many call &ldquo;predatory publishing". &nbsp;Mostly in academic publishing world, "predatory open access publishing" is an exploitative open-access publishing business model that involves charging publication fees to authors without providing the editorial and publishing services associated with legitimate journals (open access or not).</p><p>Nearly 20% of the such journals have a flashy impact factor and quick publication time, which are quick give-aways. Interestingly, under contact address, some journal websites do not even provide any address to contact. All of this has led to the emergence of a new and dark market of deceptive publishers that exploit the concept of open access and provide channels for &ldquo;scientific journal&rdquo; publication with little or no peer review. For a fee, they will publish almost anything &ndash; even if the study was fatally flawed. And these journals provide a forum that can be used as a channel to publish fraudulent &ldquo;advocacy research.&rdquo; You can find list of certain such publishers at "Beall's List" http://beallslist.weebly.com/</p><p>Keeping all these in mind, Government of India (GOI) decided to approved certain bioinformatics and computational biology journals for your research publication.<br /> <br />Following are the list of GOI validated and peer reviewed bioinformatics and computational biology journals:</p><p><strong>NOTE:Each journal details are in following order Tittle\nSource\nSubject. </strong><br /><strong>Point to remember: The list of journals are NOT sorted in any ascending or descending order.</strong></p><p><em>If I missed any other GOI validated bioinformatics journal, then please report me in comment section.</em></p><p><strong>Open Bioinformatics Journal</strong> <br />Scopus <br />Computer Science; Engineering; Medicine</p><p><strong>PROTEINS-STRUCTURE FUNCTION AND BIOINFORMATICS</strong> <br />WoS <br />BIOLOGY &amp; BIOCHEMISTRY</p><p><strong>Advances and Applications in Bioinformatics and Chemistry</strong><br />Scopus<br />Biochemistry, Genetics and Molecular Biology Chemistry; Computer Science</p><p><strong>Advances in Bioinformatics</strong><br />Scopus<br />Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering</p><p><strong>Applied Bioinformatics</strong><br />Scopus<br />Agricultural and Biological Sciences; Computer Science</p><p><strong>BIOINFORMATICS</strong> <br />WoS &amp; Scopus <br />COMPUTER SCIENCE</p><p><strong>Bioinformatics and Biology Insights</strong> <br />Scopus<br />Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics</p><p><strong>BMC BIOINFORMATICS</strong> <br />WoS &amp; Scopus <br />COMPUTER SCIENCE</p><p><strong>BRIEFINGS IN BIOINFORMATICS</strong> <br />WoS &amp; Scopus <br />COMPUTER SCIENCE</p><p><strong>Computational systems bioinformatics / Life Sciences Society. Computational Systems Bioinformatics Conference</strong> <br />Scopus <br />Medicine</p><p><strong>Current Bioinformatics</strong> <br />WoS &amp; Scopus <br />COMPUTER SCIENCE</p><p><strong>Current Protocols in Bioinformatics</strong> <br />Scopus <br />Biochemistry, Genetics and Molecular Biology</p><p><strong>JOURNAL OF COMPUTATIONAL INTELLIGENCE IN BIOINFORMATICS</strong> <br />ICI <br />BIOLOGICAL SCIENCE</p><p><strong>Journal of integrative bioinformatics</strong> <br />Scopus <br />Medicine</p><p><strong>Journal of Proteomics and Bioinformatics</strong> <br />Scopus<br />Biochemistry, Genetics and Molecular Biology; Computer Science</p><p><strong>Mathematical Biology and Bioinformatics</strong> <br />Scopus <br />Engineering; Mathematics</p><p><strong>Trends in Bioinfprmatics</strong><br />Scopus <br />Computer Science</p><p><strong>Eurasip Journal on Bioinformatics and Systems Biology</strong> <br />Scopus<br />General; Computer Science; Mathematics; Medicine</p><p><strong>Evolutionary Bioinformatics</strong> <br />WoS &amp; Scopus <br />COMPUTER SCIENCE</p><p><strong>Genomics, Proteomics and Bioinformatics</strong> <br />Scopus<br />Biochemistry, Genetics and Molecular Biology;Mathematics</p><p><strong>IEEE/ACM Transactions on Computational Biology and Bioinformatics</strong> <br />Scopus<br />Biochemistry, Genetics and Molecular Biology;Mathematics</p><p><strong>IEEE-ACM Transactions on Computational Biology and Bioinformatics</strong> <br />WoS <br />COMPUTER SCIENCE</p><p><strong>International Journal of Bioinformatics Research and Application</strong><br />Scopus<br />Biochemistry, Genetics and Molecular Biology; Medicine, Health</p><p><strong>International Journal o f Data M ining and Bioinformatics</strong> <br />WoS &amp; Scopus <br />COMPUTER SCIENCE</p><p><strong>IPSJ Transactions on Bioinformatics</strong> <br />Scopus <br />Biochemistry, Genetics and Molecular Biology;Computer Science</p><p><strong>Journal of Bioinformatics and Computational Biology</strong> <br />WoS &amp; Scopus<br />COMPUTER SCIENCE</p><p><strong>Journal of Clinical Bioinformatics</strong> <br />Scopus <br />Medicine</p><p><strong>PLoS Computational Biology</strong> <br />WoS &amp; Scopus <br />BIOLOGY &amp; BIOCHEMISTRY</p><p><strong>Reviews in Computational Chemistry</strong> <br />WoS &amp; Scopus <br />CHEMISTRY</p><p><strong>RSC Theoretical and Computational Chemistry Series</strong><br />Scopus <br />Chemistry; Computer Science</p><p><strong>Annual Reports in Computational Chemistry</strong> <br />Scopus <br />Chemistry; Mathematics</p><p><strong>Computational and Structural Biotechnology Journal</strong> <br />Scopus<br />Biochemistry, Genetics and Molecular Biology; Computer Science</p><p><strong>Computational and Theoretical Chemistry</strong> <br />WoS &amp; Scopus <br />CHEMISTRY</p><p><strong>COMPUTATIONAL BIOLOGY AND CHEMISTRY</strong> <br />WoS &amp; Scopus<br />COMPUTER SCIENCE</p><p><strong>COMPUTATIONAL CHEMISTRY</strong> <br />WoS <br />CHEMISTRY</p><p><strong>Journal of Theoretical and Computational Chemistry</strong> <br />Scopus<br />Chemistry; Computer Science</p><p><strong>Theoretical and Computational Chemistry</strong> <br />Scopus <br />Chemistry</p><p><strong>Wiley Interdisciplinary Reviews: Computational Molecular Science</strong> <br />Scopus<br />Biochemistry, Genetics and Molecular Biology;Chemistry; Computer Science; Materials Science; Mathematics</p><p><strong>Wiley Interdisciplinary Reviews- Computational Molecular Science</strong> <br />WoS <br />CHEMISTRY</p><p><strong>Interdisciplinary sciences, computational life sciences</strong><br />Scopus<br />Medicine</p><p><strong>Interdisciplinary Sciences-Computational Life Science</strong><br />WoS<br />Biology and Biochemistry</p><p><strong>International Journal of Computational Biology and Drug Design</strong><br />Scopus<br />Computer Science; Pharmacology, Toxicology and Pharmaceutics</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/32496/bioinformatician-at-23andme</guid>
  <pubDate>Sat, 06 May 2017 17:57:39 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatician at 23andMe]]></title>
  <description><![CDATA[
<p>23andMe’s mission is to help people access, understand, and benefit<br />from the human genome. We are a group of passionate individuals excited<br />to push the boundaries of what’s possible to help turn genetic insight<br />into better health and personal understanding.</p>

<p>Our Research Team prides itself on driving cutting edge, industrial-scale<br />science to make an impact that belies the team’s size, in an environment<br />and culture that fosters creativity, innovation, collaboration, and fun.</p>

<p>More than 80% of our customers consent to participate in research, and as<br />a result of their participation, we have one of the largest recontactable,<br />genotyped, and phenotyped research cohorts in the world. The scope and<br />breadth of our vision means that most of the methods and tools necessary<br />to unlock the potential of this unique resource for discovery have yet<br />to be developed.</p>

<p>Our science has garnered the respect of many members of the<br />broader scientific community. For a list of our publications, see<br />www.23andme.com/publications/for-scientists/.</p>

<p>Join us! Visit our Careers page (www.23andMe.com/careers) to learn more<br />about these open positions:</p>

<p>•	Scientist, Research Communications<br />•	Bioinformaticist<br />•	Computational Biologist, Ancestry R&amp;D<br />•	Scientist/Senior Scientist, Statistical Genetics<br />•	Scientist/Senior Scientist, Survey Methodology<br />•	Scientist/Senior Scientist, Health R&amp;D<br />•	Senior Computational Biologist<br />•	Biostatistician</p>

<p>pfontanillas@23andme.com</p>
]]></description>
</item>

</channel>
</rss>