<?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/22567?offset=50</link>
	<atom:link href="https://bioinformaticsonline.com/related/22567?offset=50" 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/22285/project-associate-bioinformatics-iit-mandi</guid>
  <pubDate>Wed, 06 May 2015 06:18:47 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Associate Bioinformatics @ IIT Mandi]]></title>
  <description><![CDATA[
<p>Eligibility : MSc(Bio-Informatics, Bio-Tech), BSc, BE/B.Tech(Bio-Medical /Bio-Technology Engg, CSE)</p>

<p>Location : Kulu</p>

<p>Job Category : Govt Jobs, Research</p>

<p>Last Date : 20 May 2015</p>

<p>Job Type : Full Time</p>

<p>Hiring Process : Walk - In<br />IIT Mandi - Job Details<br />IIT Mandi</p>

<p>Project Associate Bioinformatics Job vacancies in IIT Mandi on purely temporary</p>

<p>Project: “Exploring the Human Microbiome: A hunt for the candidates for Pre- and Pro-biotics.”</p>

<p>Minimum Qualification and Experience: M.Sc. in Bioinformatics OR B.Tech / BE in Bioinformatics OR M. Sc. in Biotechnology / Life sciences or related areas with Diploma or relevant experience in Bioinformatics OR B.Tech in Biotechnology / Computer Science or MCA or B. Sc. in Life Sciences or related areas with PG diploma in Bioinformatics. Candidates with experience in NGS data handling and analysis will be preferred. Tenure: Initially for one year, extendable based upon performance.</p>

<p>No of Posts: 01</p>

<p>Salary: Rs. 12000- 18000/- per month.</p>

<p>How to apply</p>

<p>Interested candidates can come for a Walk-in-Interview on 20th May 2015 starting at 8:30 AM at the Academic Block, Indian Institute of Technology (IIT), Mandi, Vallabh College Campus, Near Bus Stand, Mandi, HP. The candidates should bring along their curriculum vitae (CV) and copies of educational and experience certificates. In case of any queries please contact: Dr. Tulika Prakash Srivastava (Principal Investigator), Indian Institute of Technology Mandi, Near Bus Stand Mandi - 175 001, Himachal Pradesh.</p>

<p>More at</p>

<p>http://www.iitmandi.ac.in/administration/advrt/Walk-in-interview_Ad.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22317/project-associate-bioinformatics-central-food-technological-research-institute-cftri</guid>
  <pubDate>Tue, 19 May 2015 07:01:12 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Associate Bioinformatics @ Central Food Technological Research Institute (CFTRI)]]></title>
  <description><![CDATA[
<p>Central Food Technological Research Institute (CFTRI)</p>

<p>Project Assistant (Level-II) job position in Central Food Technological Research Institute (CFTRI) on a temporary contractual basis in the research project (GAP 0469) funded by Science &amp; Engineering Research Board (SERB), Government of India, New Delhi tenable at the Lipidomics Centre, CSIR-CFTRI, Mysore, Karnataka</p>

<p>Name of the Position : </p>

<p>Qualification : First class M. Sc. in Biochemistry/Microbiology/Genetics/ Bioinformatics with good academic record and preferably with experience in molecular biology techniques and basic knowledge of molecular biology and biological chemistry</p>

<p>Emoluments : Rs. 12,000/- per month (Consolidated)</p>

<p>Age Limit : The upper age limit for applying shall be 28 years (as on 22-5-2015), which is relaxed for candidates belonging to Scheduled Castes/Schedule Tribes, Women, Persons with Disabilities (PWD) and OBCs as per GoI norms. <br /> <br />How to apply</p>

<p>Eligible candidates may send their complete Bio-data with e-mail address/contact phone number along with attested copies of the necessary certificates through post to Prof. Ram Rajasekharan, Lipidomics Centre, Department of Lipid Science, CSIR-CFTRI, Mysore-570 020, Karnataka (email: ram@cftri.res.in) on or before 22.05.2015</p>

<p>More at http://www.cftri.com/pa_gap0469.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22430/nrco-vacancies-for-junior-research-fellow-%E2%80%93-pakyong-sikkim</guid>
  <pubDate>Thu, 28 May 2015 19:10:07 -0500</pubDate>
  <link></link>
  <title><![CDATA[NRCO Vacancies For Junior Research Fellow – Pakyong, Sikkim]]></title>
  <description><![CDATA[
<p>Junior Research Fellow<br />Pay Scale:Rs 25,000/-<br />Educational Requirements:MSc (with NET qualification) / M.Tech degree (with or without NET) with minimum 55% marks in Biotechnology/ Bioinformatics/ Molecular Biology or any other related field.<br />Other Qualification:Computer Skills (Linux, Perl, Java, MySQL) with experience in advanced molecular Biology techniques.<br />No of Post: 01<br />How To Apply: Walk-in-Interviews will be held at ICAR-National Research Centre for Orchids,Pakyong 737106, Sikkim for the post of 01 (One) Junior Research Fellow and 01 (One) Project Attendant under Project ‘DBT’s Twinning programme for the NE’ titled “Assessment of chemical and genetic divergence of some fragrant orchids of north-east India for sustainable improvement of community livelihood” as indicated below. The appointment will be on contractual basis and the incumbents shall not have any claim for regular appointment in ICAR.</p>

<p>Details will be available at: http://nrcorchids.nic.in/Employments/Vacancy%20-%20JRF.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/22410/nicolas-corradi-lab</guid>
  <pubDate>Tue, 26 May 2015 16:19:02 -0500</pubDate>
  <link></link>
  <title><![CDATA[Nicolas Corradi Lab]]></title>
  <description><![CDATA[
<p>The goal of our research is to better understand the biology of microbial organisms of significant ecological, veterinary and medical importance.<br />To achieve this goal, our team combines the power of next generation DNA sequencing and  bioinformatics with molecular biology and experimental procedures.</p>

<p>Main research topics:<br />- Comparative and Population Genomics of Plant Symbionts<br />- Parasite Genome Evolution<br />- Experimental Evolution of Microbial Symbionts and Parasites<br />- Phylogenomics of Early Branching Fungi</p>

<p>More at http://corradilab.weebly.com/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22435/assistant-professor-central-university-of-himachal-pradesh-india</guid>
  <pubDate>Thu, 28 May 2015 19:22:49 -0500</pubDate>
  <link></link>
  <title><![CDATA[Assistant Professor, Central University of Himachal Pradesh, India]]></title>
  <description><![CDATA[
<p>Central University of Himachal Pradesh</p>

<p>PO Box: 21</p>

<p>DHARAMSHALA, DISTRICT KANGRA, HIMACHAL PRADESH – 176215</p>

<p>EMPLOYMENT NOTICE NO.: 02 / 2015</p>

<p>APPOINTMENT TO VARIOUS TEACHING, NON-TEACHING AND OTHER ACADEMIC STAFF POSITIONS</p>

<p>Applications in the prescribed form are invited from the eligible candidates for the following Teaching, Non-Teaching and other Academic Staff positions to be filled up on regular basis: Details of teaching positions:</p>

<p>15. School of Life Sciences</p>

<p>Computational Biology &amp; Bioinformatics</p>

<p>1 (ST - 1) 2 (UR - 2)</p>

<p>Last Date of receipt of applications: 22ND JUNE, 2015</p>

<p>Advertisement:</p>

<p>http://www.cuhimachal.ac.in/download/2015/may-2015/emp-notice-eng/1.%20Employment%20Notice%20No.%2002-2015%20dated%2019.05.2015_for%20Website.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22520/recruitment-for-6-positions-of-jrf-junior-research-fellow</guid>
  <pubDate>Thu, 04 Jun 2015 15:22:54 -0500</pubDate>
  <link></link>
  <title><![CDATA[RECRUITMENT FOR 6 POSITIONS OF JRF (Junior Research Fellow)]]></title>
  <description><![CDATA[
<p>Institute of Bioresources and Sustainable Development (IBSD), a National Institute of the Department of Biotechnology, Government of India invites applications for 6 positions of JRF for 2015. The main mandate of IBSD is Conservation and Sustainable Utilization of Bioresources for the Socio-economic Development of the North East Region of India, which is a genetic treasure trove of plants, animals and microbial resources. This region falls among the World’s top 10 Biodiversity Hotspots. The broad areas of research are in Plant Bioresources, Microbial Resources, Natural Product Chemistry, Animal Bioresources and Bioinformatics and Database Management. </p>

<p>Minimum qualifications: M.Sc. with minimum 55% for general and OBD Category (55% for SC/St/PH) in the above-mentioned subject areas (viz. Biotechnology, Life Sciences, Microbiology, Botany, Plant Sciences, Chemistry, Zoology, Animal Sciences, Fishery Sciences and any other relevant branches). </p>

<p>Preference will be given to those holding valid CSIR-UGC NET JRF. DBT-JRF, ICAR-JRF, ICMR-JRF and DST-INSPIRE Fellowship while NET/SLET/SET qualified and GATE qualified candidates (90 or above percentile) are also encouraged to apply. Reservations of seats: 15% for SC, 7.5% for ST, 27% for OBC (noncreamy layer) and 3% for Physically Handicapped as per statutory norms. </p>

<p>Selection Procedure: If the number of JRF and INSPIRE qualified candidates is more, selection will be based on interview of the JRF and INSPIRE qualified candidates only. The selected candidates may be registered for Ph.D. in any of the recognized Universities in India. </p>

<p>Application Procedure: Application should be sent in the prescribed application form (available on the IBSD website). The candidate should send the completed and signed form along with self attested copies of all supporting certificates and marksheets along with an application fee of Rs.300/- (For GEN/OBC/PH) &amp; Rs.150/- for (SC/ST), for which a Demand Draft in favour of ‘Institute of Bioresources and Sustainable Development, payable at Imphal, Manipur, should be attached with the application form. Candidates are advised to provide their email ID and mobile number as they would be contacted electronically by the Institute. Duly filled applications (with ‘Application for IBSD PhD Programme’ super scribed on the envelope) should be sent to ‘The Director, Institute of Bioresources and Sustainable Development, Takyelpat, Imphal-795001, Manipur so as to reach on or before 6th of July, 2015. Applications send by email with scan copy of required enclosures will also be accepted and can be sent to director.ibsd@nic.in. However, in such instances, the application will be processed only after the receipt of the mailed hard copies. </p>

<p>Advertisement: http://ibsd.gov.in/jobs/phd_2015/IBSD_JRF_2015.pdf</p>

<p>Application Form : http://ibsd.gov.in/jobs/phd_2015/APPLICATION_FORM.pdf</p>
]]></description>
</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>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22780/ra-bioinformatics-at-institution-centre-for-human-genetics-bangalore</guid>
  <pubDate>Wed, 17 Jun 2015 19:14:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at Institution: Centre for Human Genetics,  Bangalore]]></title>
  <description><![CDATA[
<p>Institution: Centre for Human Genetics, <br />Bangalore <br />Discipline: Molecular Genetics of Human Disease Biology </p>

<p>Minimum qualification: MSc in any branch of life sciences</p>

<p>Applications are invited for the position of a Research Assistant in the Centre for Human Genetics, Bangalore. </p>

<p>The project involves identification of mutations in MPS (mucopolysaccharidosis) patients, and study of their predicted effects to understand how the mutations lead to disease. </p>

<p>Techniques used will be genomic DNA isolation, PCR, DNA sequencing and sequence analysis. Computational tools would also be used to analyse and interpret data. </p>

<p>Candidates may be assigned work in the ongoing project or in new ones. </p>

<p>The candidate who is selected and joins would acquire hands-on experience in research and the capability to conduct insightful research. </p>

<p>Candidates applying for the position should have an MSc in any branch of life sciences. Those with research experience in cell and molecular biology, and high NET/ GATE score would be preferred. </p>

<p>The successful applicant is expected to stay for at least one and a half years. </p>

<p>Please apply with CV to Sudha Srinivasan (sudha@ibab.ac.in), stating where you saw this ad.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/23209/bisr-jaipur</guid>
  <pubDate>Tue, 07 Jul 2015 23:12:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[BISR Jaipur]]></title>
  <description><![CDATA[
<p>The Bioinformatics Centre at BISR has created an infrastructure for providing facilities to the users working in the field of Biological Sciences. The users of Rajasthan, Jaipur in particular, are using facilities available at the Bioinformatics Centre extensively. The centre has leased line Internet connection as well latest Bioinformatics software for sequence and structure analysis. The centre provides the following services:</p>

<p>    Bioinformatics supports to researchers<br />    Customized training in Bioinformatics for researchers and faculty members<br />    Support in Installing, implementing and maintaining software on computer.<br />    Create awareness for taking preventive measure against data security<br />    Organize workshops on thrust ares of Bioinformatics<br />    Research Training to students of Biotechnology and Bioinformatics </p>

<p>More at http://bioinfo.bisr.res.in/index.php</p>
]]></description>
</item>

</channel>
</rss>