<?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=510</link>
	<atom:link href="https://bioinformaticsonline.com/related/27316?offset=510" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21443/a-guide-for-complete-r-beginners-getting-data-into-r</guid>
	<pubDate>Tue, 24 Feb 2015 20:15:08 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21443/a-guide-for-complete-r-beginners-getting-data-into-r</link>
	<title><![CDATA[A guide for complete R beginners :- Getting data into R]]></title>
	<description><![CDATA[<p>For a beginner this can be is the hardest part, it is also the most important to get right.</p><p>It is possible to create a vector by typing data directly into R using the combine function &lsquo;c&rsquo;</p><blockquote><p><strong>x </strong></p></blockquote><p>same as</p><blockquote><p><strong>x </strong></p></blockquote><p>creates the vector x with the numbers between 1 and 5.</p><p>You can see what is in an object at any time by typing its name;</p><blockquote><p><strong>x</strong></p></blockquote><p>will produce the output<strong> &lsquo;[1] 1 2 3 4 5&prime;</strong></p><p>Note that names need to be quoted</p><blockquote><p><strong>daysofweek </strong><strong>&larr; c(&lsquo;Monday&rsquo;, &lsquo;Tuesday&rsquo;, &lsquo;Wednesday&rsquo;, &lsquo;Thursday&rsquo;, &lsquo;Friday&rsquo;);</strong></p></blockquote><p>Usually however you want to input from a file. We have touched on the &lsquo;read.table&rsquo; function already.</p><blockquote><p><strong>mydata </strong></p></blockquote><p>Now <strong>mydata</strong> is a data frame with multiple vectors</p><p>each vector can be identified by the default syntax</p><p>#if any of these are typed it will print to screen</p><blockquote><p><strong>mydata$V1 mydata$V2 mydata$V3 </strong></p></blockquote><p>By default the function assumes certain things from the file</p><ul>
<li>The file is a plain text file (there are function to read excel files: <em>not covered here</em>)</li>
<li>columns are separated by any number of tabs or spaces</li>
<li>there is the same number of data points in each column</li>
<li>there is no header row (labels for the columns)</li>
<li>there is no column with names for the rows** [I&rsquo;ll explain].</li>
</ul><p><span style="text-decoration: underline;">If any of these are false, we need to tell that to the function</span></p><p>If it has a header column</p><blockquote><p><strong>mydata <em>header=T also works</em></strong></p></blockquote><p>Note that there is a comma between different parts of the functions arguments</p><p>If there is one less column in the header row, then R assumes that the 1<sup>st</sup> column of data after the header are the row names</p><p>Now the vectors (columns) are identified by their name</p><p>#if any of these are typed it will print to screen</p><blockquote><p><strong>mydata$A mydata$B mydata$C </strong></p></blockquote><p># Summary about the whole data frame</p><blockquote><p><strong>summary(mydata)</strong></p></blockquote><p># Summary information of column A</p><blockquote><p><strong>summary(mydata$A) </strong></p></blockquote><p>We can shortcut having to type the data frame each time by attaching it</p><blockquote><p><strong>attach(mydata)</strong></p></blockquote><p># summary of column B as &lsquo;mydata&rsquo; is attached</p><blockquote><p><strong>summary(B)</strong></p></blockquote><p><span style="text-decoration: underline;">Two other important options for </span><em><span style="text-decoration: underline;">read.table</span></em></p><p>If is is separated only by tabs and has a header</p><blockquote><p><strong>mydata </strong></p></blockquote><p>Really useful if you have spaces in the contents of some columns, so R does not mess up reading the columns . However if the columns or of an uneven length it will tell you.</p><p>If you know that the file has uneven columns</p><blockquote><p><strong>mydata </strong></p></blockquote><p>This causes R to fill empty spaces in a columns with &lsquo;NA&rsquo; .</p><p>The last two examples will still work with our file and give the same result as with only headers=T</p><p><span style="text-decoration: underline;">Graphs</span></p><p>to get an idea of what R is capable of type</p><blockquote><p><strong>demo(graphics)</strong></p></blockquote><p>steps through the examples, and the code is printed to the screen</p><p>We will work with simpler examples that have immediate use to biologists.</p><p>Remember to get more information about the options to a function type &lsquo;?function&rsquo;</p><p><span style="text-decoration: underline;">Histogram of A</span><span style="text-decoration: underline;"></span></p><blockquote><p><strong>hist(mydata$A)</strong></p></blockquote><p>If there was more data we could increase the number of vertical columns with the option, breaks=50 (or another relevant number).</p><blockquote><p><strong>boxplot(mydata)</strong></p></blockquote><p>We can get rid of the need to type the data frame each time by using the <strong>attach</strong> function</p><p># if not already done so</p><blockquote><p><strong>attach(mydata) </strong></p><p><strong>boxplot(mydata$A, mydata$B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p>same as</p><blockquote><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p><span style="text-decoration: underline;">Scatter plot</span></p><p># if not already done so</p><blockquote><p><strong>attach(mydata) </strong></p><p><strong>plot(A,B) # or plot(mydata$A, mydata$B)</strong></p></blockquote><p><strong><span style="text-decoration: underline;">SAVING an image</span></strong></p><p>Windows users (Rgui) RIGHT click on image and select which you want.</p><p><span style="text-decoration: underline;">These instructions work for everyone.</span></p><p>You need to create a new device of the type of file you need, then send the data to that device</p><p>to save as a png file (easy to load into the likes of powerpoint, also great for web applications.</p><blockquote><p><strong>png(&lsquo;filename&rsquo;) </strong></p><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p>or to save as a pdf</p><blockquote><p><strong>pdf(&lsquo;filename&rsquo;) </strong></p><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p><span style="text-decoration: underline;">Note</span></p><ul>
<li>Nothing will appear on screen, the output is going to the file</li>
<li>Also it may not be saved immediately but will once the device (or R) is turned quit.</li>
</ul><p>To quit R type</p><p><strong>q() # </strong>If you save your session, next time you start R, you will have your data preloaded.</p><p>Or if you want to remain in R</p><blockquote><pre><strong>dev.off() #</strong>turns of the png (or pdf etc) device, thus forces the data to save</pre></blockquote>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21625/agricul-agricultural-scientists-recruitment-board-tural-scientists-recruitment-board-new-delhi-110-012</guid>
  <pubDate>Wed, 11 Mar 2015 09:18:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[AGRICUL AGRICULTURAL SCIENTISTS RECRUITMENT BOARD TURAL SCIENTISTS RECRUITMENT BOARD NEW DELHI-110 012]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT NO. 01/2015</p>

<p>PRINCIPAL SCIENTIST Pay Band: Minimum pay of `43,000 in the PB-4 of `37400-67000/- + RGP of `10,000/-.</p>

<p>Age: The candidates must not have attained the age of 52 years as on 24.03.2015. There shall be no age limit for the Council’s employees.</p>

<p>ICAR-NATIONAL INSTITUTE OF BIOTIC STRESS MANAGEMENT, RAIPUR (CHHATTISGARH)</p>

<p>57. Principal Scientist (Agricultural Entomology) (Two post)</p>

<p>Qualifications Essential:</p>

<p>(i) Doctoral degree in Agricultural Entomology including relevant basic sciences.</p>

<p>(ii) 10 years experience in the relevant subject out of which at least 8 years should be as Scientist/ Lecturer/Extension Specialist or in an equivalent position in the Pay Band- 3 of `15600-39100 with Grade Pay of `5400/`6000/`7000/`8000 and 2 years as a Senior Scientist or in an equivalent position in the Pay Band- 4 of ` 37400-67000 with Grade Pay of ` 8700/ ` 9000.</p>

<p>(iii) The candidate should have made contribution to research/teaching/extension education as evidenced by published work/innovations and impact.</p>

<p>Desirable:</p>

<p>(i) Experience of using frontiers research tools in management of insect pests of crop plants.</p>

<p>(ii) Evidence of contributions to relevant field through publications/ patents/citation index to suggest a vision/perspective in biotic stress research.</p>

<p>61. Principal Scientist (Bioinformatics) (One post)</p>

<p>Qualifications Essential:</p>

<p>(i) Doctoral degree in Bioinformatics including relevant basic sciences. (ii) &amp; (iii) As in item no. 57 above.</p>

<p>Desirable:</p>

<p>(i) Experience of using bioinformatics for advancement of knowledge and for research on biotic stress management.</p>

<p>(ii) Evidence of contributions to relevant field through publications/patents/citation index to suggest a vision/perspective in biotic stress research.</p>

<p>http://asrb.org.in/administrator/uploads_dir/1424859407english.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21680/research-associate-at-national-research-centre-on-plant-biotechnology-new-delhi</guid>
  <pubDate>Mon, 16 Mar 2015 03:22:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate at National Research Centre on Plant Biotechnology New Delhi]]></title>
  <description><![CDATA[
<p>Walk-in interview will be held on 24-03-2015 at 10:00 AM at NRCPB, New Delhi for filling Research Associate and Senior Research Fellow positions as mentioned below. The positions are temporary and are initially offered for a period of one year. Details such as emoluments, qualifications, application format etc., are given below. Desirous candidates should report for interview latest by 10:30 AM with the application in the prescribed format, copies and originals of certificates, thesis and documents. No TA/DA will be provided for attending the interview.</p>

<p>ICAR-NPTC: Fibre development in flax/linseed.</p>

<p>(Job # 1) Research Associate (one) (Bioinformatics)</p>

<p>Rs.24000+ 30% HRA) for Ph.D. and for M. Sc Rs.23000/‐ (+ 30% HRA)</p>

<p>Ph.D. Degree in Bioinformatics/Molecular Biology/Biotechnology/ Genetics/allied sciences; or M. Sc in Bioinformatics/ Biotechnology/Life Sciences/ allied sciences with 1st division or 60% marks or equivalent overall grade point average with at least two years of research experience as evidenced from Fellowship/ Associate ship. 2 years research experience in bioinformatic data analysis/molecular biology techniques, and high throughput DNA/RNA sequencing, and transcriptome data analysis. Research paper with IF&gt;1 will be desirable</p>

<p>ICAR-NPTC: Shade avoidance/low-light tolerance in rice.</p>

<p>General Terms &amp; Conditions applicable to all the positions: <br />Age Limit: 35 years max. (5 years relaxation for SC/ST/OBC and woman candidates as per ICAR rules). <br />The positions are purely temporary, on a contractual basis and are initially offered for one year. <br />Originals must be shown for verification. 7. Research experience (Experience certificate from previous employer to be attached): I hereby declare that the information provided above is true to the best of my knowledge. Date: Signature</p>

<p>Advertisement:</p>

<p>www.nrcpb.org/sites/default/files/ICAR-NPTC%20DBT%20RA%20SRF%20interview%2024th%20March.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21893/postdoctoral-fellowship-in-bioinformatics-and-evolutionary-genomics</guid>
  <pubDate>Wed, 01 Apr 2015 21:36:42 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Fellowship in Bioinformatics and Evolutionary Genomics]]></title>
  <description><![CDATA[
<p>Postdoctoral Fellowship in Bioinformatics and Evolutionary Genomics<br />Organization<br />National Human Genome Research Institute, National Institutes of Health<br />http://genome.gov/Staff/Baxevanis<br />Job Location<br />Bethesda, MD<br />Job Description</p>

<p>A postdoctoral training position is currently available in the Computational and Statistical Genomics Branch (CSGB) of the National Human Genome Research Institute (NHGRI). The position is located in the laboratory of Andy Baxevanis, Ph.D., whose research group uses comparative genomics approaches to better-understand the molecular innovations that drove the surge of diversity in early animal evolution. The overarching theme of Dr. Baxevanis’ research program is focused on how non-traditional animal models convey critical insights into human disease research.</p>

<p>Candidates should have or be close to obtaining a Ph.D. or equivalent degree in bioinformatics, computational biology, computer science, molecular biology, or a closely related field. Candidates with a background in evolutionary biology are particularly encouraged to apply. Programming skills and experience in the application of computational methods to genomic data are highly desirable. Applicants must possess good communication skills and be fluent in both spoken and written English. The ability to learn how to use new software and quickly become expert in its use, critical thinking, problem-solving abilities, and the ability to work semi-independently are required.<br />How to Apply</p>

<p>Interested applicants should submit a curriculum vitae, a detailed letter of interest, and the names of three potential referees to Dr. Baxevanis at andy@mail.nih.gov.<br />About Our Organization</p>

<p>The NIH Intramural Research Program is on the Bethesda, Maryland campus and offers a wide array of training opportunities for scientists early in their careers. The funding for this position is stable and offers the trainee wide latitude in the design and pursuit of their research project. The successful candidate will have access to NHGRI’s established and robust bioinformatics infrastructure, as well as resources made available through NIH’s Center for Information Technology (CIT) and the National Center for Biotechnology Information (NCBI).</p>

<p>For more information on CSGB and NHGRI’s Intramural Research Program, please see http://genome.gov/DIR/.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/poll/view/21982/which-bioinformatics-journals-do-you-follow</guid>
	<pubDate>Fri, 10 Apr 2015 12:10:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/poll/view/21982/which-bioinformatics-journals-do-you-follow</link>
	<title><![CDATA[Which Bioinformatics Journals Do You Follow?]]></title>
	<description><![CDATA[<p><span><span>Which are your favorite bioinformatics journals? The ones that you check every month or so, or that you are subscribed to?</span></span></p>]]></description>
	<dc:creator>Tenzin Paul</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22352/affy-has-acquired-eureka-genomics-for-15m</guid>
	<pubDate>Wed, 20 May 2015 15:11:20 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22352/affy-has-acquired-eureka-genomics-for-15m</link>
	<title><![CDATA[Affy has acquired Eureka Genomics for 15M $]]></title>
	<description><![CDATA[<p>Affymetrix Acquires Assets Of Eureka Genomics Corporation To Provide High Throughput And Economical Crop And Animal Genotyping</p><p>http://www.thestreet.com/story/13151062/1/affymetrix-acquires-assets-of-eureka-genomics-corporation-to-provide-high-throughput-and-economical-crop-and-animal-genotyping.html</p>]]></description>
	<dc:creator>Martin Jones</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/22402/alessandra-carbone-lab</guid>
  <pubDate>Tue, 26 May 2015 08:54:34 -0500</pubDate>
  <link></link>
  <title><![CDATA[Alessandra Carbone Lab]]></title>
  <description><![CDATA[
<p>Our group works on various problems connected with the functioning and evolution of biological systems. We use mathematical tools, coming from statistics and combinatorics, algorithmic tools and molecular physics tools to study basic principles of cellular functioning starting from genomic data. We run several projects in parallel, all aiming at understanding the basic principles of evolution and co-evolution of molecular structures in the cell. They are intimately linked to each other.</p>

<p>Our main research themes are:</p>

<p>Domain annotation and metagenomics <br />Transcriptomics and sequence analysis<br />Protein evolution and interactions<br />Protein conformational dynamics</p>

<p>More at http://www.lcqb.upmc.fr/AnalGenom/home.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/22414/x-shirley-liu-lab</guid>
  <pubDate>Tue, 26 May 2015 17:28:23 -0500</pubDate>
  <link></link>
  <title><![CDATA[X. Shirley Liu Lab]]></title>
  <description><![CDATA[
<p>The research in our laboratories are focused on the following three areas: </p>

<p>Bioinformatics<br />Cancer<br />Epigenetics</p>

<p>More at http://liulab.dfci.harvard.edu/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22571/pattern-matching-problem-solution-with-perl</guid>
	<pubDate>Tue, 09 Jun 2015 23:58:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22571/pattern-matching-problem-solution-with-perl</link>
	<title><![CDATA[Pattern Matching Problem Solution with Perl]]></title>
	<description><![CDATA[<p>Problem at http://rosalind.info/problems/1c/</p><p>#Find all occurrences of a pattern in a string.<br />#Given: Strings Pattern and Genome.<br />#Return: All starting positions in Genome where Pattern appears as a substring. Use 0-based indexing.<br /><br />use strict;<br />use warnings;<br /><br />my $string="GATATATGCATATACTT";<br />my $subStr="ATAT";<br />my $kmer=length($subStr);<br /><br />kmerMatch ($string, $subStr, $kmer);<br /><br />sub kmerMatch { #Check the exact matching kmers with sliding window<br />my ($string, $myStr, $kmer)=@_;<br />for (my $aa=0; $aa&lt;=(length($string)-$kmer); $aa++) {<br />&nbsp;&nbsp;&nbsp; my $myWin=substr&nbsp; $string, $aa,$kmer;<br />&nbsp;&nbsp;&nbsp; if ($myWin eq $myStr) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #print "$myWin eq $myStr\n";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print $aa;<br />&nbsp;&nbsp;&nbsp; }<br />}<br />}</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22769/ensembl-27</guid>
	<pubDate>Tue, 16 Jun 2015 16:10:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22769/ensembl-27</link>
	<title><![CDATA[Ensembl 27]]></title>
	<description><![CDATA[<h3>What is new?</h3><ul>
<li>Expansion of Protists and Fungi with hundreds of annotated genomes</li>
<li>Variation data for bread wheat, rice, <em>Aedes aegypti</em>, and <em>Ixodes scapularis</em></li>
<li>Whole genome alignments for <em>O. longistaminata</em> and <em>T. cacao</em></li>
<li>Non-coding RNA gene models in <a href="http://bacteria.ensembl.org">Bacteria</a></li>
<li>New assembly of tomato (version 2.50)</li>
<li>Full support for UCSC Track Hub format for hosting your own data in Ensembl</li>
</ul><p>More at http://www.ensembl.info/blog/2015/06/16/ensembl-genomes-release-27-is-out/</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>