<?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/27461?offset=530</link>
	<atom:link href="https://bioinformaticsonline.com/related/27461?offset=530" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42164/postdoctoral-researcher-in-statistical-bioinformatics-at-orebro-university</guid>
  <pubDate>Wed, 26 Aug 2020 10:20:11 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Researcher in Statistical Bioinformatics at Örebro University]]></title>
  <description><![CDATA[
<p>The position is in Medical Sciences, with special focus on Statistical Bioinformatics.</p>

<p>The position is a full-time position for a fixed term of two years. The salary depends on the successful candidate’s qualifications and experience.</p>

<p>For more information, please contact Prof. Dirk Repsilber,This is an email address, Prof. Hugo Hesser, This is an email addressor Prof. Allan Sirsjö, allan.This is an email address, or Prof. Robert Brummer,This is an email address.</p>

<p>Örebro University actively pursues an equal work environment and values the qualities that diversity adds to our operations.</p>

<p>More detail at https://www.oru.se/english/working-at-orebro-university/jobs-and-vacancies/job/?jid=20200286/</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/researchlabs/view/42206/pollard-lab</guid>
  <pubDate>Fri, 25 Sep 2020 20:20:50 -0500</pubDate>
  <link></link>
  <title><![CDATA[Pollard Lab]]></title>
  <description><![CDATA[
<p>We are a bioinformatics research lab focused on developing novel methods and using them to study genome evolution, organization, and regulation. Our mission is to decode biomedical knowledge that is missed without rigorous statistical approaches.</p>

<p>http://docpollard.org/</p>

<p>Tools</p>

<p>http://docpollard.org/resources/software/</p>
]]></description>
</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/42308/icmr-scientist-jobs-for-biotechlife-sciencebiology-bioinformatics</guid>
  <pubDate>Tue, 10 Nov 2020 18:45:49 -0600</pubDate>
  <link></link>
  <title><![CDATA[ICMR Scientist Jobs For Biotech/Life Science/Biology &amp; Bioinformatics]]></title>
  <description><![CDATA[
<p>CMR welcomes on-line applications up to 5th December 2020 till 5:30 PM to fill out the vacancies of 42 Scientist’ E’ (Medical), 01 Scientist ‘E’ (Non-Medical), 16 Scientist ‘D’ (Medical) and also 06 Scientist ‘D’ (Non-Medical) from Indian Citizens for appointment on regular basis under Direct Recruitment with all India transfer liability under the Council.</p>

<p>Post I</p>

<p>Name of the Post: Scientist-E (Non-Medical)</p>

<p>Number of positions: One</p>

<p>Upper Age limit: 50 years</p>

<p>Post II</p>

<p>Name of the Post: Scientist-D (Non-Medical)</p>

<p>Number of positions: Six</p>

<p>Upper Age limit: 45 years</p>

<p>Fee:</p>

<p>Application Fee of Rs. 1500/- (Rupees one thousand five hundred only) is needed. SC / ST / Women/ PWD/ EWS applicants are exempted from application fee. Application Fee is to be paid by candidates through online web link given up the application. Application fees when paid will certainly not be reimbursed under any situations.</p>

<p>How to apply:</p>

<p>i) Candidates should apply online on https://recruit.icmr.org.in. A separate application needs to be submitted for every post, with the required application fee.</p>

<p>ii) Following self-attested documents are required to be uploaded together with the application:<br />a) Proof of Date of Birth.<br />b) Educational qualifications.<br />c) Experience.</p>

<p>More at https://recruit.icmr.org.in/assets/uploads/advertisement/ICMR_Advertisement_06112020.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/4081/csir-institute-of-genomics-integrative-biology</guid>
  <pubDate>Thu, 29 Aug 2013 05:22:03 -0500</pubDate>
  <link></link>
  <title><![CDATA[CSIR-INSTITUTE OF GENOMICS &amp; INTEGRATIVE BIOLOGY]]></title>
  <description><![CDATA[
<p>CSIR-INSTITUTE OF GENOMICS &amp; INTEGRATIVE BIOLOGY, Mall Road, Delhi 110007</p>

<p>POSITIONS OPEN FOR TEMPORARY RESEARCH PROJECT POSTS</p>

<p>(Date of interview 23rd September 2013 at 10:30 AM)</p>

<p>CSIR-Institute of Genomics &amp; Integrative Biology (IGIB), desires to engage qualified incumbents on purely temporary basis as detailed below:</p>

<p>Project Code/Title (Project Code BSC0123)</p>

<p>Genome dynamics in Cellular Organization, Differentiation and Enantiostasis (GENCODE)</p>

<p>Project Fellow<br />	<br />First Class M.Sc./M.Tech in bioinformatics/Human Genetics/Genomics</p>

<p>Rs. 16,000/- + 30 % HRA per month</p>

<p>Sr. Project Fellow	</p>

<p>First Class M.Sc./M.Tech in bioinformatics/Human Genetics/Genomics</p>

<p>With two years of experience in NGS data analysis.</p>

<p>Rs. 18,000/- + 30 % HRA per month</p>

<p>Age relaxation as per Govt. of India instructions.</p>

<p>Engagement is for the project and on behalf of the funding agency and the tenure shall be as mentioned above. The duration of the post is initially for One year or till the closing date of the project, whichever is earlier. Tenure may be extendable up to project duration. Contract may be terminated at any time by giving one-month notice by either side. The applicants will have no claim implicit or explicit for consideration against any CSIR/IGIB post.</p>

<p>How to Apply:</p>

<p>It is mandatory for eligible applicants to apply by both the processes as given below:</p>

<p>1.    Sending the resume in MS Word format directly to hrd@igib.res.in (Mentioning the Project Code-Post Code in the Subject Line of the email example:GAP0059-1)</p>

<p>2.    They also need to fill up proforma by clicking on the following link HR Online Form.</p>

<p>3.    Candidate cannot apply for more than two posts.</p>

<p>Last date of receiving application is 02-09-2013.</p>

<p>No application would be entertained with result awaited status or after due date.</p>

<p>The email will be sent to the short listed candidates.</p>

<p>No TA/DA will be paid to the candidates to attend the interview. The engagement shall be as per guidelines of CSIR/Funding agency. Candidates will have an option to give reply in Hindi.</p>

<p>Note: The shortlisted candidates, who will receive the email for interview, have to report at 09:00 AM on the day of interview along with any Photo ID card and original certificates for entry purpose. Entry will be closed by 10:00 AM.</p>

<p>More @ http://www.igib.res.in/sites/default/files/23092013.htm</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/42499/galaxy-training-resources</guid>
	<pubDate>Sun, 27 Dec 2020 05:28:07 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/42499/galaxy-training-resources</link>
	<title><![CDATA[Galaxy Training Resources !]]></title>
	<description><![CDATA[<p>Welcome to Galaxy Training!</p>
<p>Collection of tutorials developed and maintained by the worldwide Galaxy community</p>
<table>
<thead>
<tr><th>Topic</th><th>Tutorials</th></tr>
</thead>
<tbody>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/introduction/">Introduction to Galaxy Analyses</a></td>
<td>10</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/assembly/">Assembly</a></td>
<td>6</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/climate/">Climate</a></td>
<td>3</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/computational-chemistry/">Computational chemistry</a></td>
<td>6</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/ecology/">Ecology</a></td>
<td>6</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/epigenetics/">Epigenetics</a></td>
<td>6</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/genome-annotation/">Genome Annotation</a></td>
<td>3</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/imaging/">Imaging</a></td>
<td>3</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/metabolomics/">Metabolomics</a></td>
<td>4</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/metagenomics/">Metagenomics</a></td>
<td>7</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/proteomics/">Proteomics</a></td>
<td>18</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/sequence-analysis/">Sequence analysis</a></td>
<td>2</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/statistics/">Statistics and machine learning</a></td>
<td>8</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/transcriptomics/">Transcriptomics</a></td>
<td>23</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/variant-analysis/">Variant Analysis</a></td>
<td>8</td>
</tr>
<tr>
<td><a href="https://training.galaxyproject.org/training-material/topics/visualisation/">Visualisation</a></td>
<td>2</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p><p>Address of the bookmark: <a href="https://training.galaxyproject.org/training-material/" rel="nofollow">https://training.galaxyproject.org/training-material/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/3013/python-and-biopython-tutorial</guid>
	<pubDate>Fri, 23 Aug 2013 06:47:40 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/3013/python-and-biopython-tutorial</link>
	<title><![CDATA[Python and BioPython Tutorial]]></title>
	<description><![CDATA[<p>A quickstart tutorial that allows to become familiar with the Python language. The exercises expect knowledge of basic concepts of programming. A group of 2nd year computer science students with no previous Python knowledge required 60'-90' to complete the exercises. With about 3 hours time, the exercise is suitable for non-programmers as well.</p><p>Address of the bookmark: <a href="http://www.biotnet.org/training-materials/python-programmers" rel="nofollow">http://www.biotnet.org/training-materials/python-programmers</a></p>]]></description>
	<dc:creator>Manshi Raghubanshi</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42801/scientist-position-in-structural-bioinformatics-at-lonza</guid>
  <pubDate>Wed, 03 Feb 2021 21:38:06 -0600</pubDate>
  <link></link>
  <title><![CDATA[Scientist position in Structural Bioinformatics at Lonza]]></title>
  <description><![CDATA[
<p>Lonza (https://www.lonza.com/) are seeking a highly motivated and skilled (Senior) Scientist with experience in Structure-based Protein Engineering and Bioinformatics to join Lonza's Applied Protein Services (APS) Bioinformatics team based in Cambridge, UK.</p>

<p>More at https://instruct-eric.eu/jobs/scientist-position-in-structural-bioinformatics-at-lonza-cambridge-uk/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/3967/research-project-posts-for-csir-project-delhi</guid>
  <pubDate>Tue, 27 Aug 2013 04:31:41 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Project Posts for CSIR Project, Delhi]]></title>
  <description><![CDATA[
<p>Positions Open For Temporary Research Project Posts for CSIR Project, Delhi<br />CSIR is looking for bright young candidates to get involved in building algorithms and platforms for large biological data analyses in the areas of comparative genomics, computational workflows, disease association studies, simulating virtual organelles, etc. Anyone who fulfills the eligibility criteria mentioned below may appear for a walk-in interview on 3rd September 2013 at CSIR Headquarters, Anusandhan Bhawan, 2 Rafi Marg, Delhi – 110001.<br />you can go to link for details or download PDF</p>

<p>http://www.csir.res.in/External/Heads/aboutcsir/announcements/ProjectPost_130813.pdf</p>
]]></description>
</item>

</channel>
</rss>