<?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/41991?offset=420</link>
	<atom:link href="https://bioinformaticsonline.com/related/41991?offset=420" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22891/17-marie-curie-phd-position-available-immediately</guid>
  <pubDate>Tue, 23 Jun 2015 06:52:06 -0500</pubDate>
  <link></link>
  <title><![CDATA[17 Marie Curie PhD position available immediately]]></title>
  <description><![CDATA[
<p>Kindly look into following webpage:<br />http://medhealth.leeds.ac.uk/info/1450/scholarships/1795/marie_curie_phd_training_network</p>

<p>The closing date for application will be 26 June 2015.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/2573/most-commonly-used-awk-by-bioinformatician</guid>
	<pubDate>Mon, 19 Aug 2013 01:12:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/2573/most-commonly-used-awk-by-bioinformatician</link>
	<title><![CDATA[Most Commonly used Awk by Bioinformatician]]></title>
	<description><![CDATA[<p style="text-align: center;">&nbsp;</p><p>Awk is a programming language that is specifically designed for quickly manipulating space delimited data. Although you can achieve all its functionality with Perl, awk is simpler in many practical cases.</p><p>Why awk? You can replace a pipeline of 'stuff | grep | sed | cut...' with a single call to awk. For a simple script, most of the timelag is in loading these apps into memory, and it's much faster to do it all with one. This is ideal for something like an openbox pipe menu where you want to generate something on the fly. You can use awk to make a neat one-liner for some quick job in the terminal, or build an awk section into a shell script. You can find a lot of online tutorials, but here I will only show a few examples which cover most of bioinformatician daily uses of awk.</p><p>choose rows where column 3 is larger than column 5:</p><p>awk '$3&gt;$5' input.txt &gt; output.txt</p><p>extract column 2,4,5:</p><p>awk '{print $2,$4,$5}' input.txt &gt; output.txt</p><p>awk 'BEGIN{OFS="\t"}{print $2,$4,$5}' input.txt</p><p>show rows between 20th and 80th:</p><p>awk 'NR&gt;=20&amp;&amp;NR&lt;=80' input.txt &gt; output.txt</p><p>calculate the average of column 2:</p><p>awk '{x+=$2}END{print x/NR}' input.txt</p><p>regex (egrep):</p><p>awk '/^test[0-9]+/' input.txt</p><p>calculate the sum of column 2 and 3 and put it at the end of a row or replace the first column:</p><p>awk '{print $0,$2+$3}' input.txt</p><p>awk '{$1=$2+$3;print}' input.txt</p><p>join two files on column 1:</p><p>awk 'BEGIN{while((getline&lt;"file1.txt")&gt;0)l[$1]=$0}$1 in l{print $0"\t"l[$1]}' file2.txt &gt; output.txt</p><p>count number of occurrence of column 2 (uniq -c):</p><p>awk '{l[$2]++}END{for (x in l) print x,l[x]}' input.txt</p><p>apply "uniq" on column 2, only printing the first occurrence (uniq):</p><p>awk '!($2 in l){print;l[$2]=1}' input.txt</p><p>count different words (wc):</p><p>awk '{for(i=1;i!=NF;++i)c[$i]++}END{for (x in c) print x,c[x]}' input.txt</p><p>deal with simple CSV:</p><p>awk -F, '{print $1,$2}'</p><p>substitution (sed is simpler in this case):</p><p>awk '{sub(/test/, "no", $0);print}' input.txt</p><p>&nbsp;</p><p>OK now here's where to read this stuff properly explained. roll</p><p>Two thorough tutorials:</p><p>http://www.gnu.org/software/gawk/manual/gawk.html</p><p>http://www.grymoire.com/Unix/Awk.html</p><p>A famous list of useful one-liners - though they're short, many are quite tricky:</p><p>http://www.pement.org/awk/awk1line.txt</p><p>And some nice explanations of those one-liners. After reading this you'll have a pretty good grasp!</p><p>http://www.catonmat.net/blog/awk-one-li &hellip; -part-one/</p><p>http://www.catonmat.net/blog/ten-awk-ti &hellip; -pitfalls/</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/34727/letter-of-motivation-for-bioinformatics-applicants</guid>
	<pubDate>Thu, 21 Dec 2017 03:43:04 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/34727/letter-of-motivation-for-bioinformatics-applicants</link>
	<title><![CDATA[Letter of motivation for bioinformatics applicants !]]></title>
	<description><![CDATA[<p>A motivation letter, or sometimes called letter of motivation or motivational letter, is actually a letter being send together with your professional resume to support your application for job, University admission or internship. The motivational letter is actually a personal statement which should persuade selection panel, or human resource clerk that you are perfect candidate for a position. Writing a impressive &lsquo;Letter of Motivation&rsquo; might help you to get the post with an ease.&nbsp;</p><p>Usually when you apply anywhere you need to fulfill some specific kind of requirements which usually include writing a formal application, letter of motivation, research proposal etc. Usually it is hard for grad students to write a crisp, clean and clear letter of motivation. To be honest, you may find several posts on the internet which do tell you how to write professionally. They are good enough to clearly tell you what points should be included, what not and many other things to learn about professional writing. Still, when I look back at my graduation days, I know even after reading many instructions I was not able to write &lsquo;to-the-point&rsquo;. According to me , writing skill is not something that you can part in binary like- &lsquo;I write perfectly&rsquo; or &lsquo;I can not write even a word&rsquo;. It is something that you learn and get better with the the time. So, I am not going to pin-point the suggestions because you can get it many where but some &lsquo;to-the-point&rsquo; things which you may use directly in your letter.</p><h5>Ideas and main points</h5><p>Start with writing down some of the main ideas, important points you would like to approach in your letter and later build around them, enrich their content; an example would be :</p><ol>
<li>Make your goal clear; provide a short preview of the rest of the letter;</li>
<li>Why do you think that the university and the Master's program are interesting and suitable for you? ;</li>
<li>Focus on some of your strongest qualifications, past experiences (international experiences are always relevant) and qualities; organise the middle paragraphs in terms of the qualifications most relevant to the programme, you can also refer to your CV for more details;</li>
<li>Conclude by restating your interest and show appreciation for the chance to prove yourself in the letter (in some cases you can ask for a personal interview)</li>
</ol><p>How to start- <br />Your very first line should not be just a line but an impression and reference. None would want to read you unless he knows what it is about. Just like this post. If I would not have written that it is about writing a motivation-letter, you probably would not get annoyed. So start by writing what your letter is about. It could seem like this-</p><h5>Letter Of Application</h5><p>Your Address And Contact Details</p><p>Receiver&rsquo;s Address</p><p>Dear XYZ</p><p>I would like to apply for the&hellip;..</p><p>or</p><p>I am writing here to apply for the&hellip;</p><p>or</p><p>This is regarding your advert. published&hellip;.</p><p>Then Tell Background like-<br />As my resume reveals, I have Bachelor`s degree from XYZ University and currently, I am&hellip;..</p><p>Be sure to signify your institution/University like-<br />I am privileged to obtain my postgraduate education in Bioinformatics at XXX which is known for its enriching academic ambiance where learning and research complement each other.</p><p>Then tell about your professional experience like-<br />Being taught by eminent faculty, I have developed a big interest and passion towards Bioinformatics and managed to have a strong foundation in &hellip;&hellip;</p><p>After that tell how this position would help you, like-<br />The opportunity to participate in this study would foster&hellip;.</p><p>Assure them that you will make use of whatever you learn there, like-<br />I plan to ensure the further dissemination of the knowledge and experience gained by this opportunity in&hellip;</p><p>Close the letter with usual formality, like-<br />I, hereby enclose a copy of my CV/Resume (whatever it is, there is a difference we all know it) with the hope of consideration. Looking forward to hearing from you.</p><p><br />All the things written above is just my view. You still should see and learn which can be done by one thing and that is -reading about it. Then , please try to write yourself, do not copy /paste. Whatever is written in the post is just to have an idea about the things that should be included in the letter of motivation. You need to write accordingly with a wise choice of words.<br />Hope this was helpful. You may comment or ask anything if you want to.</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/4106/phd-at-national-institute-for-research-in-reproductive-health</guid>
  <pubDate>Fri, 30 Aug 2013 04:50:35 -0500</pubDate>
  <link></link>
  <title><![CDATA[PhD at National Institute for Research in Reproductive Health]]></title>
  <description><![CDATA[
<p>National Institute for Research in Reproductive Health</p>

<p>(Indian Council of Medical Research )<br />Jehangir Merwanji Street, Parel, Mumbai 400 012</p>

<p>Advertisement No. 1/NIRRH/Ph.D. 2013<br />Admission to Ph.D. Programme – 2013</p>

<p>National Institute for Research in Reproductive Health, Mumbai, a premier institute of the Indian Council of Medical Research, conducts basic, clinical and operational research in different areas of reproductive health. The thrust areas of research include: Fertility Regulation, Infertility and Reproductive Disorders, Reproductive Tract Infections, Maternal and Child Health, Osteoporosis, Genetic Disorders, Stem Cell Biology, Structural Biology, Bioinformatics and Reproductive Toxicology. Institute is affiliated to the University of Mumbai for the award of Ph.D. degree in Applied Biology, Biochemistry, Life Sciences and Biotechnology. The institute invites applications from young and bright students for enrollment in Ph.D. programme.</p>

<p>More at http://www.nirrh.res.in/announcements/phd_program_2013.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/35423/jrf-at-jaypee-institute-of-information-technology-jiit-noida-department-of-biotechnology</guid>
  <pubDate>Fri, 02 Feb 2018 11:26:14 -0600</pubDate>
  <link></link>
  <title><![CDATA[JRF at Jaypee Institute of Information Technology (JIIT), Noida Department of Biotechnology]]></title>
  <description><![CDATA[
<p>Lab of Dr. Rawal is supported by generous grants to build advanced applications in emerging areas of cancer genomics, network sciences, vaccine development and epidemiology. The lab has dedicated high end Xeon servers, desktops, &amp; laptops for research purpose. Currently, there are several researchers (JRFs, B. Techs, M. Tech and PhDs) working on several challenging bioinformatics projects. In addition, Dr. Rawal has collaborations with reputed national and international research teams.</p>

<p>Dr. Rawal and his US based collaborators have recently secured grant for development of vaccine against an infectious disease agent. For this project, applications are invited for the posts of Junior Research Fellow (two positions) for the following time-bound sponsored projects as per the details given below:</p>

<p>PI: Dr. Kamal Rawal, Biotechnology Department, JIIT, Noida.</p>

<p>Post: JRF (Two)</p>

<p>Job Description: Bioinformatics analysis, Software development, Programming, Text Mining, Deep Curation</p>

<p>Duration: The post is valid upto duration of the project. Continuation is subject to satisfactory performance.</p>

<p>Emoluments depends upon experience and skill sets. We will hire them on following scale:</p>

<p>Junior Scale- Level 1: Rs 22000 per month.</p>

<p>Senior Scale - Level 2: Rs 30000 per month.</p>

<p>Essential Qualification(s) for JRF post:</p>

<p>(A) A Master degree (MSc or MTech or equivalent with minimum of 55% marks) in Bioinformatics/Computer Sciences, IT, Life Sciences, Physical Sciences, Chemical Sciences, Mathematical Sciences or Statistics, Agriculture, Veterinary, Medicine, Pharmacy, Engineering &amp; Technology from a recognized University/Institute and having some experience/skills in bioinformatics, programming, computational or software development work.</p>

<p>(B) In exceptional cases, we can also consider candidates with B. Tech or equivalent with right skill sets and experience for the post of JRFs.</p>

<p>Desirable:</p>

<p>A) Preference will be given to BINC (Bioinformatics National Certification)/DBT-BET/ICMR/ CSIR /UGC/ JRF/ NET qualified candidates. However, Non- NET qualified candidates can also apply.<br />B) Candidates who have worked with programing, text mining, NGS data analysis etc are encouraged to apply.<br />Updated resume including a cover letter (preferably by E. mail) should be mailed to bioinfocvatgmaildotcom, and Dr. Kamal Rawal at kamaldotrawalatgmaildotcom. Short listed candidates would be called for interview. No TA/DA will be paid to the candidates called for interview.</p>

<p>Candidate may also fill the following form:</p>

<p>https://docs.google.com/…/1FAIpQLSdZoZ21ZoNRStEeL5…/viewform</p>

<p>Or</p>

<p>http://tinyurl.com/bioinfocv2017</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/2742/baumbach-lab</guid>
  <pubDate>Wed, 21 Aug 2013 10:56:35 -0500</pubDate>
  <link></link>
  <title><![CDATA[Baumbach Lab]]></title>
  <description><![CDATA[
<p>The Computational Biology research group was established in October 2012 at the Department of Mathematics and Computer Science (IMADA) at the University of Southern Denmark (SDU). It emerged from the Computational Systems Biology group, founded in March 2010 at the Max Planck Institute for Informatics (MPII) and the Cluster of Excellence for Multimodel Computing and Interaction (MMCI) at Saarland University, Saarbrücken, Germany.<br />​<br />The group is headed by Prof. Dr. Jan Baumbach and currently hosts nine PhD students and one postdoctoral fellow at both, IMADA/SDU and MMCI/MPII.</p>

<p>More at &gt;&gt; http://www.baumbachlab.net/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/35868/simpson-lab</guid>
  <pubDate>Tue, 06 Mar 2018 08:59:09 -0600</pubDate>
  <link></link>
  <title><![CDATA[Simpson Lab]]></title>
  <description><![CDATA[
<p>We are the Statistical Bioinformatics group in the Institute for Adaptive and Neural Computation in the School of Informatics at the University of Edinburgh. The group is led by Dr. Ian Simpson who is a Lecturer in Biological Informatics in the School of Informatics at Edinburgh University. Details to follow....</p>

<p>http://statbio.github.io</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/2839/look-up-a-biological-numbers</guid>
	<pubDate>Fri, 23 Aug 2013 03:27:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/2839/look-up-a-biological-numbers</link>
	<title><![CDATA[Look up a biological numbers]]></title>
	<description><![CDATA[<p><strong>Did you ever need to look up a number</strong><span>&nbsp;like the volume of a cell or the cellular concentration of ATP, only to find yourself spending much more time than you wanted on the Internet or flipping through textbooks - all without much success?&nbsp;</span><br><br><span>Well, it didn&rsquo;t happen only to you. It is often surprising how difficult it can be to find concrete biological numbers, even for properties that have been measured numerous times. To help solve this for one and all, BioNumbers (</span><strong>the database of key numbers in molecular biology</strong><span>) was created. Along with the numbers, you'll find the relevant&nbsp;</span><strong>references to the original literature</strong><span>, useful comments, and related numbers.&nbsp;</span></p>
<p><span><span>To cite BioNumbers please refer to: Milo et al. Nucl. Acids Res. (2010) 38: D750-D753. When using a specific entry from the database it is highly recommended that you also specify the BioNumbers 6 digit ID, e.g. "BNID 100986, Milo et al 2010".&nbsp;</span></span></p><p>Address of the bookmark: <a href="http://bionumbers.hms.harvard.edu/" rel="nofollow">http://bionumbers.hms.harvard.edu/</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/37618/snakemake%E2%80%94a-scalable-bioinformatics-workflow-engine</guid>
	<pubDate>Sun, 02 Sep 2018 16:32:42 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/37618/snakemake%E2%80%94a-scalable-bioinformatics-workflow-engine</link>
	<title><![CDATA[Snakemake—a scalable bioinformatics workflow engine]]></title>
	<description><![CDATA[<p><span>Snakemake is a workflow engine that provides a readable Python-based workflow definition language and a powerful execution environment that scales from single-core workstations to compute clusters without modifying the workflow.&nbsp;</span></p><p>Address of the bookmark: <a href="https://bioconda.github.io/recipes/snakemake/README.html" rel="nofollow">https://bioconda.github.io/recipes/snakemake/README.html</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/3952/ancestor-at-work</guid>
	<pubDate>Sun, 25 Aug 2013 19:45:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/3952/ancestor-at-work</link>
	<title><![CDATA[Ancestor at work !!!]]></title>
	<description><![CDATA[<p>When they will learn Bioinformatics :)</p>]]></description>
	<dc:creator>Jit</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/3952" length="10064" type="image/gif" />
</item>

</channel>
</rss>