<?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/14800?offset=100</link>
	<atom:link href="https://bioinformaticsonline.com/related/14800?offset=100" 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/21539/research-associate-at-central-potato-research-institute-cpri-shimla-himachal-pradesh</guid>
  <pubDate>Wed, 11 Mar 2015 03:07:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[RESEARCH ASSOCIATE at Central Potato Research Institute (CPRI) - Shimla, Himachal Pradesh]]></title>
  <description><![CDATA[
<p>One post of Research Associate for Project Implementation Unit in the time bound project “XII Plan -–Centre of Agricultural Bio-informatics(CABIN)” are to be filled on purely contractual basis which will be co-terminus with the project as per the details given as under : </p>

<p>No of post : 01 <br />Essential qualifications: i) Ph. D degree in Bioinformatics/computers/Bio-technology. OR ii) Master’s Degree in Bioinformatics/computers/Bio-technology with 1st division or 60% marks or equivalent overall grade point average with at least two years of research experience as evidenced from fellowship/Associateship/training/other engagements. <br />Desirable qualifications: i) Working Knowledge and Published Research papers in Bio-informatics. <br />Monthly emoluments : Rs. 23,000/- + HRA . for M.Sc degree holder Rs. 24,000/- + HRA for Ph.D degree holder <br />Maximum Age limit : Research Associate – Males- 40 years &amp; Women 45 years. <br />SELECTION PROCEDURE FOR CENTRAL POTATO RESEARCH INSTITUTE (CPRI) – RESEARCH ASSOCIATE POST: </p>

<p>Written Test on 20/03/2015. <br />Shortlisted candidates will undertake face to face interview. <br />Dates are yet to be announced for the final selection <br />WALK-IN PROCEDURE FOR RESEARCH ASSOCIATE VACANCY IN CENTRAL POTATO RESEARCH INSTITUTE (CPRI): </p>

<p>Interested/eligible candidates should submit their application along with the attested copies of educational qualification (provisional degree of Masters and Ph.D is mandatory )/experience certificates and one passport size photograph to the Asstt. Admn. Officer(E-I), CPRI, Shimla-171001 at 9.30 AM on the date of interview. The candidates appearing for interview must bring original certificate with them and only those candidates possessing essential qualification as per advertisement will be interviewed. The Director, CPRI, Shimla reserves the right either to fill up the post or cancel the interview without assigning any reasons thereof. Application form is available in the website ( website: http//cpri.ernet.in). No TA/DA will be given by the Institute to the candidates. The Institute is located at Bemloe which is about 2 Kms from Main Bus Stand(Old)/3 Kms. from the Railway Station and about 5 Kms. from ISBT (Tutikandi).</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/opportunity/view/21934/ra-bioinformatics-at-bose-institute</guid>
  <pubDate>Tue, 07 Apr 2015 03:30:25 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at Bose Institute]]></title>
  <description><![CDATA[
<p>Bose Institute, Kolkata, invites online applications from Indian Citizens for recruitment of Research Associate (05 posts) under Institute Plan Programmes : Improvement of Plants : Biotechnological, Genomic and Proteomic Approaches (programme No. – I), Bioinformatics and Computational Biology (programme No. – III), Microbial Genomics and Infection Biology (programme No. – V) and Basic &amp; Applied Problems in Physical and Environmental Sciences (programme No. – VII). All the posts are tenable for one (01) year.</p>

<p>ESSENTIAL QUALIFICATION: PH.D. DEGREE IN LIFE SCIENCES / PHYSICAL SCIENCE.</p>

<p>Research Associate for Programme No. –I Specialization in the area of plant molecular biology or plant proteomic study or plant pathogen interaction.<br />Research Associate for Programme No. –I Specialization in the area of plant / fungal Biotechnology, tissue culture and molecular biology<br />Research Associate for Programme No. –III Specialization in the area of structural biology and protein crystallography.<br />Research Associate for Programme No. – V Specialization in the area of microbial physiology (metabolism) or environmental microbiology, with experience in microbial genomics and proteomics.<br />Research Associate for Programme No. – VII Specialization in the area of Theoretical High Energy Astrophysics or Astroparticle Physics. Proven record of independent research experience in Astrophysical<br />Radiation Magnetohydrodynamics or Cosmic Ray Astrophysics. Experience in numerical techniques and /or date analysis would be additional advantage.<br />Associateship : 22,000/- p.m., plus admissible H.R.A. and Medical benefit.<br />Age: Below 3 Age : Below 35 years (Relaxable in case of SC/ST/OBC/Women candidates only as per rule).<br />SELECTION PROCEDURE FOR BOSE INSTITUTE- RESEARCH ASSOCIATE POST:</p>

<p>Candidates can apply on or before 13/4/2015.<br />No detailed information about the selection procedure is mentioned in the recruitment notification.<br />HOW TO APPLY FOR RESEARCH ASSOCIATE VACANCY IN BOSE INSTITUTE:</p>

<p>Interested and eligible candidates may read the application procedures and instructions carefully before applying through online as well as submitting the hard copy of the same. Candidates those who has submitted their Ph.D. Thesis and can produce Provisional Ph.D. Certificate at the time of Interview may also apply </p>

<p>Ref<br />Bose Institute Recruitment 2015 –  ADVT. NO. : BI/IF/35/2014-15.</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/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>

</channel>
</rss>