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

<p>Yau Group develops statistical and computational methods for the analysis of genomic datasets with a particular interest in cancer sequencing applications and the use of Bayesian Statistics.</p>

<p>Yau Group are currently have projects in somatic mutation analysis of heterogeneous cancers, data fusion or integration techniques and single cell genomics.</p>

<p>More @ http://www.well.ox.ac.uk/~cyau/index.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44908/top-journals-in-bioinformatics-how-to-choose-where-to-publish-why-it-matters</guid>
	<pubDate>Fri, 26 Sep 2025 06:49:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44908/top-journals-in-bioinformatics-how-to-choose-where-to-publish-why-it-matters</link>
	<title><![CDATA[Top Journals in Bioinformatics: How to Choose Where to Publish &amp; Why It Matters]]></title>
	<description><![CDATA[<div><p>Bioinformatics is a rapidly growing field at the intersection of biology, computer science, mathematics, and statistics. As data volumes increase, as well as the diversity of data types (genomics, proteomics, metabolomics, imaging, single‑cell data, etc.), the need for robust computational methods, rigorous models, and reproducible tools has never been greater.</p></div><p><br /> A key decision for researchers is: Where should I publish my work? The choice of journal impacts visibility, peer recognition, and long‑term influence of your research. Below I provide a guide to leading journals in bioinformatics, criteria for selecting the journal that best fits your work, and why these considerations matter.</p><p><strong>Leading Journals in Bioinformatics</strong></p><table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p>Journal</p>
</td>
<td valign="top">
<p>What it&rsquo;s Known For / Strengths</p>
</td>
<td valign="top">
<p>Best Fit for What Kind of Work</p>
</td>
</tr>
<tr>
<td valign="top">
<p>Bioinformatics (Oxford Journals)</p>
</td>
<td valign="top">
<p>Strong for methods, computational biology, database papers, algorithm development.</p>
</td>
<td valign="top">
<p>New computational methods; tools with broad applicability; databases; methodological advances.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>Briefings in Bioinformatics</p>
</td>
<td valign="top">
<p>High impact reviews, overviews, and synthesis articles.</p>
</td>
<td valign="top">
<p>Review‑style articles; comparative studies; widely used tools.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>PLOS Computational Biology</p>
</td>
<td valign="top">
<p>Emphasis on method development plus biological insight; open access.</p>
</td>
<td valign="top">
<p>Interdisciplinary work; computational method with biological applications.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>BMC Bioinformatics</p>
</td>
<td valign="top">
<p>Broad scope; good for software, pipelines, resources; open access.</p>
</td>
<td valign="top">
<p>Software development; pipelines; data resources; benchmarking.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>IEEE Transactions on Computational Biology and Bioinformatics (TCBB)</p>
</td>
<td valign="top">
<p>Rigor in computation, algorithms, performance.</p>
</td>
<td valign="top">
<p>Algorithmic innovations; statistical/computational method work.</p>
</td>
</tr>
<tr>
<td valign="top">
<p>BioData Mining</p>
</td>
<td valign="top">
<p>Focused on data mining / ML in biology.</p>
</td>
<td valign="top">
<p>Machine learning / AI applied to biological datasets; predictive models.</p>
</td>
</tr>
</tbody>
</table><p><strong>Criteria to Use When Choosing a Journal</strong></p><ul>
<li>Scope &amp; Audience</li>
<li>Impact &amp; Visibility</li>
<li>Review Time &amp; Speed</li>
<li>Open Access</li>
<li>Cost / APCs</li>
<li>Reputation vs Practical Fit</li>
<li>Reproducibility, Data &amp; Code Sharing Policies</li>
<li>Indexing &amp; Reach</li>
<li>Quality of the field</li>
<li>Accelerating discovery</li>
<li>Fair access</li>
<li>Credibility &amp; trust</li>
<li>Read recent papers in the journal</li>
<li>Tailor the manuscript</li>
<li>Check the author guidelines</li>
<li>Have backup journals ready</li>
<li>More emphasis on machine learning / AI</li>
<li>Single‑cell, spatial omics, multimodal data</li>
<li>Cloud workflows, reproducible pipelines</li>
<li>Preprints / open peer review</li>
<li>Alternative metrics (software use, downloads, community adoption)</li>
</ul><p>Selecting where to publish in bioinformatics isn&rsquo;t just about prestige; it&rsquo;s about reaching the right audience, ensuring your work is usable, and contributing to the field responsibly.</p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/7218/associate-professor-centre-for-bioinformatics-at-maharshi-dayanand-university-rohtak</guid>
  <pubDate>Thu, 12 Dec 2013 20:49:59 -0600</pubDate>
  <link></link>
  <title><![CDATA[Associate Professor - Centre for Bioinformatics at Maharshi Dayanand University, Rohtak]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT No. PR-54/2013</p>

<p>No. of Posts and Specialization: 1(UR)</p>

<p>Educational Qualification:</p>

<p>(i) Good academic record with a Ph.D. Degree in the concerned /allied /relevant disciplines.</p>

<p>(ii) The Ph.D. Degree shall be a mandatory qualification for all candidates to be appointed as Associate Professor through direct recruitment.</p>

<p>(iii) A Master‟s Degree with at least 55% marks (or an equivalent grade in a point scale wherever grading system is followed).</p>

<p>(iv) A minimum of eight years of experience of teaching and /or research in an academic /research position equivalent to that of Assistant Professor in a University, College or Accredited Research Institution/Industry excluding the period of Ph.D research with evidence of published work and a minimum of 5 publications as books and /or research papers in refereed journals only/policy papers.</p>

<p>(v) Contribution to educations innovation, design of new curricula and courses and technology-mediated teaching learning process with evidence of having guided doctoral candidates and research students.</p>

<p>(vi) A minimum score as stipulated in the Academic Performance Indicator (API) based performance Based Appraisal System (PBAS), set out in this notification in as mentioned in the advertisement.</p>

<p>Send your application to the A.R (Estt.Teaching), M.D.University, Rohtak on or before December 23, 2013.</p>

<p>For more details: http://www.mdurohtak.ac.in/pdf/Notices_Pdf/new_notice/Teaching%20Vacancy%20%28ADVT.%20No.%20PR-54%20of%202013%29.pdf</p>

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

<p>Main mission:</p>

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

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

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

<p>More at https://evol.mcmaster.ca/brian/evoldir/PostDocs//MontpellierU.ComparativeGenomics</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/fun/view/4196/chemical-elements-of-bioinformatics</guid>
	<pubDate>Tue, 03 Sep 2013 16:35:39 -0500</pubDate>
	<link>https://bioinformaticsonline.com/fun/view/4196/chemical-elements-of-bioinformatics</link>
	<title><![CDATA[Chemical Elements of Bioinformatics]]></title>
	<description><![CDATA[<p>You must be familiar with periodic table and colour pattern, but this time you are going to amaze by new elements table by Eagle genomics. Just check it out and have fun :)</p><p><a href="http://elements.eaglegenomics.com/">http://elements.eaglegenomics.com/</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/3889/bioinformatics-and-sequencing-courses-and-workshops</guid>
	<pubDate>Sat, 24 Aug 2013 16:41:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/3889/bioinformatics-and-sequencing-courses-and-workshops</link>
	<title><![CDATA[Bioinformatics and Sequencing Courses and Workshops]]></title>
	<description><![CDATA[<p>Swiss Institute of Bioinformatics (SIB) organises lots of bioinformatics courses covering wide range of topics:</p><p><a href="http://www.isb-sib.ch/education/training-courses.html">http://www.isb-sib.ch/education/training-courses.html</a></p><p>Canadian bioinformatics also organises various bioinformatics and sequencing courses:</p><p><a href="http://bioinformatics.ca/workshops">http://bioinformatics.ca/workshops</a></p><p>In addition to above two, EMBI&nbsp;Europe, EMBO Europe, Cold Spring Harbour USA, Wellcome Trust UK and NOVA&nbsp;Europe&nbsp;also organise bioinformatics and sequencing courses annually:</p><p><a href="http://www.embl.de/training/events/index.php?p_outstation=ALL">http://www.embl.de/training/events/index.php?p_outstation=ALL</a></p><p><a href="http://www.embo.org/funding-awards/courses-workshops">http://www.embo.org/funding-awards/courses-workshops</a></p><p><a href="http://meetings.cshl.edu/courses.html">http://meetings.cshl.edu/courses.html</a></p><p><a href="http://www.wellcome.ac.uk/Education-resources/Courses-and-conferences/Advanced-Courses-and-Scientific-Conferences/Advanced-Courses/index.htm">http://www.wellcome.ac.uk/Education-resources/Courses-and-conferences/Advanced-Courses-and-Scientific-Conferences/Advanced-Courses/index.htm</a></p><p><a href="http://www.nova-university.org/pagetop.cfm?MenySidorTop_id=2&amp;open=7">http://www.nova-university.org/pagetop.cfm?MenySidorTop_id=2&amp;open=7</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6104/incob-2014</guid>
  <pubDate>Thu, 07 Nov 2013 17:53:36 -0600</pubDate>
  <link></link>
  <title><![CDATA[InCoB 2014]]></title>
  <description><![CDATA[
<p>The 13th International Conference on Bioinformatics (InCoB 2014) will be held in Novotel Sydney Brighton Beach, Sydney, New South Wales, Australia. This year, the InCoB will be held earlier from 31st July to 2nd August 2014 to run back-to-back with the International Biophysics Congress 2014 at the Brisbane Convention and Exhibition Centre, Queensland (3-7 Aug).</p>

<p>More at http://incob2014.org/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/4210/uni-computing-bergen-norway</guid>
  <pubDate>Tue, 03 Sep 2013 18:40:50 -0500</pubDate>
  <link></link>
  <title><![CDATA[Uni Computing Bergen Norway]]></title>
  <description><![CDATA[
<p>Info on Uni Computing (Webpage: http://www.bccs.uni.no/) :</p>

<p>Uni Computing (formerly Uni BCCS) is a department of Uni Research, affiliated with the University of Bergen.</p>

<p>5 groups in this lab works on computational resources, methods, algorithms, and software.</p>

<p>Following two bioinformatics groups are:</p>

<p>The Computational Biology Unit (CBU) provides education and research in bioinformatics focused on functional genomics.</p>

<p>The Computational Ecology Unit (CEU) is basically deal with population fluctuations, behavioural patterns and the ways life cycles emerge.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/6300/list-of-bioinformatics-vacancy-jobs-opportunity-websites</guid>
	<pubDate>Tue, 12 Nov 2013 20:04:28 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/6300/list-of-bioinformatics-vacancy-jobs-opportunity-websites</link>
	<title><![CDATA[List of Bioinformatics Vacancy, Jobs, Opportunity websites]]></title>
	<description><![CDATA[<p>Bioinformatics cover wide area of biology, and indulge in almost all sort of science related work. Bioinformatician give strong emphasis on open access to biological information as well as Free and Open Source software!!</p>
<p>There are several jobs opening in bioinformatics all around the world, but many of them do not get proper attention due to lack of advertisements, or social connectivity. This bookmark is created for an academic, non-academic, scientists and budding researchers to help and updates the bioinformatics/computational biology jobs links of all know websites around the world.</p>
<p><strong>I also love to stream the live <strong>bioinformatics or Computational biology jobs</strong> updates using Twitter https://twitter.com/search?q=bioinformatics%20jobs&amp;src=typd</strong></p>
<p>Find out here about exciting job opportunities in the life sciences.</p>
<blockquote>
<p>Please add well known bioinformatics jobs websites below in comment section.</p>
</blockquote><p>Address of the bookmark: <a href="http://www.nature.com/naturejobs/science/jobs?utf8=%E2%9C%93&amp;q=bioinformatics&amp;where=&amp;commit=Find+Jobs" rel="nofollow">http://www.nature.com/naturejobs/science/jobs?utf8=%E2%9C%93&amp;q=bioinformatics&amp;where=&amp;commit=Find+Jobs</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

</channel>
</rss>