<?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/32719?offset=370</link>
	<atom:link href="https://bioinformaticsonline.com/related/32719?offset=370" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/8943/roth-lab</guid>
  <pubDate>Tue, 11 Mar 2014 17:43:45 -0500</pubDate>
  <link></link>
  <title><![CDATA[Roth Lab]]></title>
  <description><![CDATA[
<p>The Roth Lab seeks insight into biological systems through genome- and proteome-scale experimentation and analysis.</p>

<p>Current computational interests:</p>

<p>Systematic analysis of genetic epistasis to identify redundant or compensatory systems and to reveal order of action in genetic pathways.<br />Using knockout, knockdown, or overexpression, or other perturbation experiments in combinations of genes in S. cerevisiae, C. elegans or mouse.<br />Using genome-scale genotyping of natural polymorphisms in S. cerevisiae and human populations.<br />Alternative splicing and its relationship to protein interaction networks.<br />Integrating large-scale studies including phenotype, genetic epistasis, protein-protein and transcription-regulatory interactions and sequence patterns to quantitatively assign function to genes and guide experimentation.</p>

<p>More at http://llama.mshri.on.ca/index.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/11181/perl-one-liner-for-bioinformatician</guid>
	<pubDate>Fri, 30 May 2014 05:49:07 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/11181/perl-one-liner-for-bioinformatician</link>
	<title><![CDATA[Perl one-liner for bioinformatician !!!]]></title>
	<description><![CDATA[<p>With the emergence of NGS technologies, and sequencing data most of the bioinformaticians mung and wrangle around massive amounts of genomics text. There are several "standardized" file formats (FASTQ, SAM, VCF, etc.) and some tools for manipulating them (fastx toolkit, samtools, vcftools, etc.), there are still times where knowing a little bit of Perl onliner is extremely helpful.</p><p>Perl one-liners are small and awesome Perl programs that fit in a single line of code and they do one thing really well. These things include changing line spacing, numbering lines, doing calculations, converting and substituting text, deleting and printing certain lines, parsing logs, editing files in-place, doing statistics, carrying out system administration tasks, updating a bunch of files at once, and many more. Perl one-liners will make you the shell warrior. Anything that took you minutes to solve, will now take you seconds!<br /><br />perl -pe '$\="\n"'&nbsp; &nbsp;<br />#double space a file<br /><br />perl -pe '$_ .= "\n" unless /^$/' <br />#double space a file except blank lines<br /><br />perl -pe '$_.="\n"x7' <br />#7 space in a line.<br /><br />perl -ne 'print unless /^$/' <br />#remove all blank lines<br /><br />perl -lne 'print if length($_) &lt; 20' <br />#print all lines with length less than 20.<br /><br />perl -00 -pe '' <br />#If there are multiple spaces, delete all leaving one(make the file a single spaced file).<br /><br />perl -00 -pe '$_.="\n"x4' <br />#Expand single blank lines into 4 consecutive blank lines<br /><br />perl -pe '$_ = "$. $_"'<br />#Number all lines in a file<br /><br />perl -pe '$_ = ++$a." $_" if /./' <br />#Number only non-empty lines in a file<br /><br />perl -ne 'print ++$a." $_" if /./' <br />#Number and print only non-empty lines in a file<br /><br />perl -pe '$_ = ++$a." $_" if /regex/' <br />#Number only lines that match a pattern<br /><br />perl -ne 'print ++$a." $_" if /regex/' <br />#Number and print only lines that match a pattern<br /><br />perl -ne 'printf "%-5d %s", $., $_ if /regex/' <br />#Left align lines with 5 white spaces if matches a pattern (perl -ne 'printf "%-5d %s", $., $_' : for all the lines)<br /><br />perl -le 'print scalar(grep{/./}&lt;&gt;)' <br />#prints the total number of non-empty lines in a file<br /><br />perl -lne '$a++ if /regex/; END {print $a+0}' <br />#print the total number of lines that matches the pattern<br /><br />perl -alne 'print scalar @F' <br />#print the total number fields(words) in each line.<br /><br />perl -alne '$t += @F; END { print $t}' <br />#Find total number of words in the file<br /><br />perl -alne 'map { /regex/ &amp;&amp; $t++ } @F; END { print $t }' <br />#find total number of fields that match the pattern<br /><br />perl -lne '/regex/ &amp;&amp; $t++; END { print $t }' <br />#Find total number of lines that match a pattern<br /><br />perl -le '$n = 20; $m = 35; ($m,$n) = ($n,$m%$n) while $n; print $m' <br />#will calculate the GCD of two numbers.<br /><br />perl -le '$a = $n = 20; $b = $m = 35; ($m,$n) = ($n,$m%$n) while $n; print $a*$b/$m' <br />#will calculate lcd of 20 and 35.<br /><br />perl -le '$n=10; $min=5; $max=15; $, = " "; print map { int(rand($max-$min))+$min } 1..$n' <br />#Generates 10 random numbers between 5 and 15.<br /><br />perl -le 'print map { ("a".."z",&rdquo;0&rdquo;..&rdquo;9&rdquo;)[rand 36] } 1..8'<br />#Generates a 8 character password from a to z and number 0 &ndash; 9.<br /><br />perl -le 'print map { ("a",&rdquo;t&rdquo;,&rdquo;g&rdquo;,&rdquo;c&rdquo;)[rand 4] } 1..20'<br />#Generates a 20 nucleotide long random residue.<br /><br />perl -le 'print "a"x50'<br />#generate a string of &lsquo;x&rsquo; 50 character long<br /><br />perl -le 'print join ", ", map { ord } split //, "hello world"'<br />#Will print the ascii value of the string hello world.<br /><br />perl -le '@ascii = (99, 111, 100, 105, 110, 103); print pack("C*", @ascii)'<br />#converts ascii values into character strings.<br /><br />perl -le '@odd = grep {$_ % 2 == 1} 1..100; print "@odd"'<br />#Generates an array of odd numbers.<br /><br />perl -le '@even = grep {$_ % 2 == 0} 1..100; print "@even"'<br />#Generate an array of even numbers<br /><br />perl -lpe 'y/A-Za-z/N-ZA-Mn-za-m/' file <br />#Convert the entire file into 13 characters offset(ROT13)<br /><br />perl -nle 'print uc' <br />#Convert all text to uppercase:<br /><br />perl -nle 'print lc' <br />#Convert text to lowercase:<br /><br />perl -nle 'print ucfirst lc' <br />#Convert only first letter of first word to uppercas<br /><br />perl -ple 'y/A-Za-z/a-zA-Z/' <br />#Convert upper case to lower case and vice versa<br /><br />perl -ple 's/(\w+)/\u$1/g' <br />#Camel Casing<br /><br />perl -pe 's|\n|\r\n|' <br />#Convert unix new lines into DOS new lines:<br /><br />perl -pe 's|\r\n|\n|' <br />#Convert DOS newlines into unix new line<br /><br />perl -pe 's|\n|\r|' <br />#Convert unix newlines into MAC newlines:<br /><br />perl -pe '/regexp/ &amp;&amp; s/foo/bar/' <br />#Substitute a foo with a bar in a line with a regexp.</p><p>Reference/Sources:</p><p>http://genomics-array.blogspot.in/2010/11/some-unixperl-oneliners-for.html</p><p><a href="http://genomespot.blogspot.com/2013/08/a-selection-of-useful-bash-one-liners.html">http://genomespot.blogspot.com/2013/08/a-selection-of-useful-bash-one-liners.html</a></p><p><a href="http://biowize.wordpress.com/2012/06/15/command-line-magic-for-your-gene-annotations/">http://biowize.wordpress.com/2012/06/15/command-line-magic-for-your-gene-annotations/</a></p><p><a href="http://genomics-array.blogspot.com/2010/11/some-unixperl-oneliners-for.html">http://genomics-array.blogspot.com/2010/11/some-unixperl-oneliners-for.html</a></p><p><a href="http://bioexpressblog.wordpress.com/2013/04/05/split-multi-fasta-sequence-file/">http://bioexpressblog.wordpress.com/2013/04/05/split-multi-fasta-sequence-file/</a></p>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/19636/google-genomics</guid>
	<pubDate>Thu, 18 Dec 2014 11:05:42 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/19636/google-genomics</link>
	<title><![CDATA[Google Genomics]]></title>
	<description><![CDATA[<ul>
<li>
<p><strong>Explore genetic variation interactively.</strong> Compare entire cohorts in seconds with SQL-like queries. Compute transition/transversion ratios, genome-wide association, allelic frequency and more.</p>
</li>
<li>
<p><strong>Process big genomic data easily.</strong> Run batch analyses like principal component analysis and Hardy-Weinberg equilibrium on as many samples as you like, in minutes or hours, with just a little code.</p>
</li>
<li>
<p><strong>Use Google's infrastructure and big data expertise.</strong> Store one genome or a million using Google Genomics and take advantage of the same infrastructure that powers Search, Maps, YouTube, Gmail and Drive.</p>
</li>
<li>
<p><strong>Support emerging global standards.</strong> Google Genomics is implementing the API defined by the Global Alliance for Genomics and Health for visualization, analysis and more. Compliant software can access Google Genomics, local servers, or any other implementation.</p>
</li>
</ul><p>Address of the bookmark: <a href="https://cloud.google.com/genomics/" rel="nofollow">https://cloud.google.com/genomics/</a></p>]]></description>
	<dc:creator>Tenzin Paul</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/19980/seqloc-06</guid>
	<pubDate>Sun, 28 Dec 2014 12:51:29 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/19980/seqloc-06</link>
	<title><![CDATA[seqloc 0.6]]></title>
	<description><![CDATA[<p>The <code>Bio.SeqLoc</code> modules in <code>seqloc</code> are designed to represent positions and locations (ranges of positions) on sequences, particularly nucleotide sequences. My original motivation for writing these packages was handing the locations of genes in eukaryotic genomes.</p>
<p>Handle sequence locations for bioinformatics http://www.ingolia-lab.org/seqloc-tutorial.html</p><p>Address of the bookmark: <a href="http://www.stackage.org/snapshot/nightly-2014-12-28/package/seqloc-0.6" rel="nofollow">http://www.stackage.org/snapshot/nightly-2014-12-28/package/seqloc-0.6</a></p>]]></description>
	<dc:creator>Gudiya Pal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22028/walk-in-for-research-asst-programmer-enterovirus-research-centre-mumbai-india</guid>
  <pubDate>Tue, 14 Apr 2015 12:36:51 -0500</pubDate>
  <link></link>
  <title><![CDATA[Walk in for Research Asst &amp; Programmer Enterovirus Research Centre Mumbai - India]]></title>
  <description><![CDATA[
<p>Enterovirus Research Centre Mumbai Jobs 2015 –</p>

<p>Walk in for Research Asst &amp; Programmer Posts: Enterovirus Research Centre, Mumbai, Indian Council of Medical Research has issued notification for the recruitment of Research Asst &amp; Programmer vacancies on temporary basis for the project entitled “An Atlas of Non-Polio Enterovirus Types Isolated from Cases of Acute Flaccid Paralysis in India”. Eligible candidates may walk in on 20-04-2015 from 10:00 AM to 12:00 Noon. Other details like age limit, educational qualification, how to apply are given below…</p>

<p>Enterovirus Research Centre Mumbai Vacancy Details:<br />Total No. of Posts: 04<br />Name of the Posts:<br />1. Research Assistant: 03 Posts<br />2. Programmer: 01 Post</p>

<p>Age Limit: Candidates age should below 28 years. Age relaxations are applicable as per rules.</p>

<p>Educational Qualification: Candidates should have M.Sc (1st Class) in Microbiology/ Bioinformatics/ Biotechnology/ Life Science for post 1, BE/ B.Tech/ MCA for post 2.</p>

<p>Selection Process: Candidates are selected based on their performance in interview.</p>

<p>How to Apply: Eligible candidates may attend for interview along with original certificates, CV, attested copies of relevant certificates, one recent passport size photograph duly affixed on right side of application at Enterovirus Research Centre, Mumbai, Indian Council of Medical Research, Haffkine Institute Cmpound, Acharya Donde Marg, Parel, Mumbai-400012 on 20-04-2015 from 10:00 AM to 12:00 Noon.</p>

<p>Important Dates:<br />Date &amp; Time of Interview: 20-04-2015 from 10:00 AM to 12:00 Noon.<br />Registration Time: 12:00 Noon.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/22050/binc-sample-question-paper</guid>
	<pubDate>Thu, 16 Apr 2015 09:15:09 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/22050/binc-sample-question-paper</link>
	<title><![CDATA[BINC Sample Question Paper !!!]]></title>
	<description><![CDATA[<p>BINC sample question paper round THREE ...</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/22050" length="316" type="text/plain" />
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22130/senior-research-fellow-srf-bioinformatics-at-central-institute-for-research-on-buffaloes</guid>
  <pubDate>Sat, 18 Apr 2015 04:30:47 -0500</pubDate>
  <link></link>
  <title><![CDATA[Senior Research Fellow (SRF) Bioinformatics at Central Institute for Research on Buffaloes]]></title>
  <description><![CDATA[
<p>Senior Research Fellow (SRF) Bioinformatics at Central Institute for Research on Buffaloes<br />Address: Central Institute for Research on Buffaloes, Sirsa Road, Hisar<br />State: Haryana<br />Pay Scale: Post Graduate in subjects other than Veterinary Science Rs. 16000/- per month for 1st and 2nd year and Rs. 18000/- per month for 3rd year. Post Graduate in Veterinary Science Rs. 18000/- per month for 1st and 2nd Year and Rs. 20000/- per month for 3rd year.<br />Educational Requirements: Master’s degree in biotechnology/animal biotechnology, veterinary/animal biochemistry, veterinary microbiology or veterinary/animal physiology/Nano Technology/Bioinformatics or related area.<br />Qualifications: Ph.D in relevant field/experience of working in any research project<br />Details will be available at: http://www.cirb.res.in/attachments/195_Walk-in-Interview%20for%20Senior%20Research%20Fellow%20%28SRF%29%20%28On%20Dated%2020.4.2015%29.pdf<br />How To Apply: Interested candidates who fulfill the above conditions should report for interview with a copy of their bio-data, photocopy and original certificates and testimonials, other related material i.e. reports, documents, articles, etc., if any.<br />Date &amp; Time of Interview: 20.04.2015 at 11.00 hrs<br />Venue: CIRB, Hisar</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22236/savitribai-phule-pune-university-recruitment-for-04-jrf-post-in-april-2015</guid>
  <pubDate>Mon, 27 Apr 2015 20:28:59 -0500</pubDate>
  <link></link>
  <title><![CDATA[Savitribai Phule Pune University Recruitment for 04 JRF Post in April 2015]]></title>
  <description><![CDATA[
<p>Savitribai Phule Pune University announced application for recruitment to the post of Junior Research Fellow. The candidates for the post can apply through prescribed format before 10 May 2015.<br />Description:</p>

<p>Important Date &amp; Details</p>

<p>Closing Date for Registration: 10 May 2015</p>

<p>Details of Post</p>

<p>Name of Post: Junior Research Fellow- 04 Posts</p>

<p>Pay Scale: Rs. 12,000 or 16,00+ HRA Post Graduate degree with NET (16,000+HRA) Post Graduate Degree (12,000+HRA)</p>

<p>Eligibility Criteria: M.Sc. in Microbiology/Marine Microbiology/ Marine Biotechnology/Biotechnology/Bioinformatics/Zoology or equivalent degree with minimum 60% marks or equivalent grade</p>

<p>Age Limit- Not more than 28 years</p>

<p>Organisation Name: Savitribai Phule Pune University<br />Eligibility for the post:</p>

<p>Selection Procedure: The selection procedure is through personal interview. No TA/DA will be paid for appearing in the interview.</p>

<p>How to Apply: The candidates may send their application along with CV to the Head Department of Zoology, Savitribai Phule University on or before 10 May 2015.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22297/appointment-of-two-traineeships-and-two-studentships-in-bioinformatics</guid>
  <pubDate>Fri, 08 May 2015 00:24:20 -0500</pubDate>
  <link></link>
  <title><![CDATA[Appointment of two traineeships and two studentships in Bioinformatics]]></title>
  <description><![CDATA[
<p>Applications are invited for the appointment of two traineeships and two studentships in Bioinformatics for a period of six months sponsored by Department of Biotechnology, Government of India in the Bioinformatics Sub-DIC, Saraswathy Thangavelu Centre, JNTBGRI, Puthenthope, Thiruvananthapuram 695 586. The required qualifications and other details are given below.</p>

<p>Position 1: Traineeship<br />Monthly fellowship (in rupee): 5,000/-<br />No. of vacancies: Two<br />Required Qualification: First Class M.Sc Bioinformatics/ Biotechnology/ Botany</p>

<p>Position 2: Studentship<br />Monthly fellowship (in rupee): 5,000/-<br />No. of vacancies: Two<br />Required Qualification: M.Phil/M.Tech Bioinformatics/ Biotechnology/ any branch of Life Science students for doing their thesis work in the area of Bioinformatics.</p>

<p>Age limit as on 1.1.2015, 28 years. Age relaxation will be provided for SC, ST, OBC candidates as per Govt. norms.</p>

<p>Interested candidates may appear for walk-in-interview on 15th May 2015 at 10.30 am at JNTBGRI, Palode, Thiruvananthapuram. The candidate should report to the Office at Palode before 10.00 am.</p>

<p>More at http://jntbgri.res.in/news/appointment-of-two-traineeships-and-two-studentships-in-bioinformatics/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/22393/narcis-fernandez-fuentes-lab</guid>
  <pubDate>Mon, 25 May 2015 07:30:00 -0500</pubDate>
  <link></link>
  <title><![CDATA[Narcis Fernandez-Fuentes Lab]]></title>
  <description><![CDATA[
<p>Welcome to our web-site compiling all the research-related activities of the group. Our research interests relate to a number of areas within Bioinformatics. We have a long-standing interest in protein structure prediction and structure-to-function relationships. We work in the study of biomolecular interactions, modeling of protein complexes, the study and characterization of protein-protein interactions, peptide design, modeling of genetic variation, structure-based protein design and different aspects of Plant Bioinformatics. Take a look at the our databases and servers and the list of publications for more information.</p>

<p>More at http://www.bioinsilico.org/</p>
]]></description>
</item>

</channel>
</rss>