<?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/29638?offset=580</link>
	<atom:link href="https://bioinformaticsonline.com/related/29638?offset=580" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/33869/import-r-data</guid>
	<pubDate>Wed, 12 Jul 2017 08:30:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/33869/import-r-data</link>
	<title><![CDATA[Import R Data]]></title>
	<description><![CDATA[<p>It is often necessary to import sample textbook data into R before you start working on your homework.</p><div id="node-69"><div><p><strong>Excel File</strong></p><p>Quite frequently, the sample data is in&nbsp;<span>Excel&nbsp;</span>format, and needs to be imported into R prior to use. For this, we can use the function&nbsp;<span>read.xls&nbsp;</span>from the&nbsp;<span>gdata&nbsp;</span>package. It reads from an Excel spreadsheet and returns a&nbsp;<a href="http://www.r-tutor.com/r-introduction/data-frame">data frame</a>. The following shows how to load an Excel spreadsheet named&nbsp;<span>"mydata.xls"</span>. This method requires Perl runtime to be present in the system.</p><blockquote><div id="listing-68"><span><a></a></span>&gt;&nbsp;library(gdata)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;load&nbsp;gdata&nbsp;package&nbsp;<br /><span><a></a></span>&gt;&nbsp;help(read.xls)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;documentation&nbsp;<br /><span><a></a></span>&gt;&nbsp;mydata&nbsp;=&nbsp;read.xls("mydata.xls")&nbsp;&nbsp;#&nbsp;read&nbsp;from&nbsp;first&nbsp;sheet</div></blockquote><p>Alternatively, we can use the function&nbsp;<span>loadWorkbook&nbsp;</span>from the&nbsp;<span>XLConnect&nbsp;</span>package to read the entire workbook, and then load the worksheets with&nbsp;<span>readWorksheet</span>. The&nbsp;<span>XLConnect&nbsp;</span>package requires Java to be pre-installed.</p><blockquote><div id="listing-69"><span><a></a></span>&gt;&nbsp;library(XLConnect)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;load&nbsp;XLConnect&nbsp;package&nbsp;<br /><span><a></a></span>&gt;&nbsp;wk&nbsp;=&nbsp;loadWorkbook("mydata.xls")&nbsp;<br /><span><a></a></span>&gt;&nbsp;df&nbsp;=&nbsp;readWorksheet(wk,&nbsp;sheet="Sheet1")</div></blockquote><p>&nbsp;</p><h4><a></a>Minitab File</h4><p>If the data file is in&nbsp;<span>Minitab Portable Worksheet&nbsp;</span>format, it can be opened with the function&nbsp;<span>read.mtp&nbsp;</span>from the&nbsp;<span>foreign&nbsp;</span>package. It returns a&nbsp;<a href="http://www.r-tutor.com/r-introduction/list">list</a>&nbsp;of components in the Minitab worksheet.</p><blockquote><div id="listing-70"><span><a></a></span>&gt;&nbsp;library(foreign)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;load&nbsp;the&nbsp;foreign&nbsp;package&nbsp;<br /><span><a></a></span>&gt;&nbsp;help(read.mtp)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;documentation&nbsp;<br /><span><a></a></span>&gt;&nbsp;mydata&nbsp;=&nbsp;read.mtp("mydata.mtp")&nbsp;&nbsp;#&nbsp;read&nbsp;from&nbsp;.mtp&nbsp;file</div></blockquote><p>&nbsp;</p><h4><a></a>SPSS File</h4><p>For the data files in&nbsp;<span>SPSS&nbsp;</span>format, it can be opened with the function&nbsp;<span>read.spss&nbsp;</span>also from the&nbsp;<span>foreign&nbsp;</span>package. There is a&nbsp;<span>"to.data.frame"&nbsp;</span>option for choosing whether a data frame is to be returned. By default, it returns a list of components instead.</p><blockquote><div id="listing-71"><span><a></a></span>&gt;&nbsp;library(foreign)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;load&nbsp;the&nbsp;foreign&nbsp;package&nbsp;<br /><span><a></a></span>&gt;&nbsp;help(read.spss)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;documentation&nbsp;<br /><span><a></a></span>&gt;&nbsp;mydata&nbsp;=&nbsp;read.spss("myfile",&nbsp;to.data.frame=TRUE)</div></blockquote><p>&nbsp;</p><h4><a></a>Table File</h4><p>A data table can resides in a text file. The cells inside the table are separated by blank characters. Here is an example of a table with 4 rows and 3 columns.</p><blockquote><div id="listing-72"><span><a></a></span>100&nbsp;&nbsp;&nbsp;a1&nbsp;&nbsp;&nbsp;b1&nbsp;<br /><span><a></a></span>200&nbsp;&nbsp;&nbsp;a2&nbsp;&nbsp;&nbsp;b2&nbsp;<br /><span><a></a></span>300&nbsp;&nbsp;&nbsp;a3&nbsp;&nbsp;&nbsp;b3&nbsp;<br /><span><a></a></span>400&nbsp;&nbsp;&nbsp;a4&nbsp;&nbsp;&nbsp;b4</div></blockquote><p>Now copy and paste the table above in a file named&nbsp;<span>"mydata.txt"&nbsp;</span>with a text editor. Then load the data into the workspace with the function&nbsp;<span>read.table</span>.</p><blockquote><div id="listing-73"><span><a></a></span>&gt;&nbsp;mydata&nbsp;=&nbsp;read.table("mydata.txt")&nbsp;&nbsp;#&nbsp;read&nbsp;text&nbsp;file&nbsp;<br /><span><a></a></span>&gt;&nbsp;mydata&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;print&nbsp;data&nbsp;frame&nbsp;<br /><span><a></a></span>&nbsp;&nbsp;&nbsp;V1&nbsp;V2&nbsp;V3&nbsp;<br /><span><a></a></span>1&nbsp;100&nbsp;a1&nbsp;b1&nbsp;<br /><span><a></a></span>2&nbsp;200&nbsp;a2&nbsp;b2&nbsp;<br /><span><a></a></span>3&nbsp;300&nbsp;a3&nbsp;b3&nbsp;<br /><span><a></a></span>4&nbsp;400&nbsp;a4&nbsp;b4</div></blockquote><p>For further detail of the function&nbsp;<span>read.table</span>, please consult the R documentation.</p><blockquote><div id="listing-74"><span><a></a></span>&gt;&nbsp;help(read.table)</div></blockquote><p>&nbsp;</p><h4><a></a>CSV File</h4><p>The sample data can also be in&nbsp;<span>comma separated values&nbsp;</span>(CSV) format. Each cell inside such data file is separated by a special character, which usually is a comma, although other characters can be used as well.</p><p>The first row of the data file should contain the column names instead of the actual data. Here is a sample of the expected format.</p><blockquote><div id="listing-75"><span><a></a></span>Col1,Col2,Col3&nbsp;<br /><span><a></a></span>100,a1,b1&nbsp;<br /><span><a></a></span>200,a2,b2&nbsp;<br /><span><a></a></span>300,a3,b3</div></blockquote><p>After we copy and paste the data above in a file named&nbsp;<span>"mydata.csv"&nbsp;</span>with a text editor, we can read the data with the function&nbsp;<span>read.csv</span>.</p><blockquote><div id="listing-76"><span><a></a></span>&gt;&nbsp;mydata&nbsp;=&nbsp;read.csv("mydata.csv")&nbsp;&nbsp;#&nbsp;read&nbsp;csv&nbsp;file&nbsp;<br /><span><a></a></span>&gt;&nbsp;mydata&nbsp;<br /><span><a></a></span>&nbsp;&nbsp;Col1&nbsp;Col2&nbsp;Col3&nbsp;<br /><span><a></a></span>1&nbsp;&nbsp;100&nbsp;&nbsp;&nbsp;a1&nbsp;&nbsp;&nbsp;b1&nbsp;<br /><span><a></a></span>2&nbsp;&nbsp;200&nbsp;&nbsp;&nbsp;a2&nbsp;&nbsp;&nbsp;b2&nbsp;<br /><span><a></a></span>3&nbsp;&nbsp;300&nbsp;&nbsp;&nbsp;a3&nbsp;&nbsp;&nbsp;b3</div></blockquote><p>In various European locales, as the comma character serves as the decimal point, the function&nbsp;<span>read.csv2&nbsp;</span>should be used instead. For further detail of the&nbsp;<span>read.csv&nbsp;</span>and&nbsp;<span>read.csv2&nbsp;</span>functions, please consult the R documentation.</p><blockquote><div id="listing-77"><span><a></a></span>&gt;&nbsp;help(read.csv)</div></blockquote><p>&nbsp;</p><h4><a></a>Working Directory</h4><p>Finally, the code samples above assume the data files are located in the R&nbsp;<span>working</span>&nbsp;<span>directory</span>, which can be found with the function&nbsp;<span>getwd</span>.</p><blockquote><div id="listing-78"><span><a></a></span>&gt;&nbsp;getwd()&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;get&nbsp;current&nbsp;working&nbsp;directory</div></blockquote><p>You can select a different working directory with the function&nbsp;<span>setwd()</span>, and thus avoid entering the full path of the data files.</p><blockquote><div id="listing-79"><span><a></a></span>&gt;&nbsp;setwd("")&nbsp;&nbsp;&nbsp;#&nbsp;set&nbsp;working&nbsp;directory</div></blockquote><p>Note that the forward slash should be used as the path separator even on Windows platform.</p><blockquote><div id="listing-80"><span><a></a></span>&gt;&nbsp;setwd("C:/MyDoc")</div></blockquote></div></div>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/9029/syntax-for-secure-copy-scp</guid>
	<pubDate>Thu, 13 Mar 2014 17:01:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/9029/syntax-for-secure-copy-scp</link>
	<title><![CDATA[Syntax for Secure Copy (scp)]]></title>
	<description><![CDATA[<div><p>In our day to day research activity, we need to securely copy our data from several to local computer and visa-versa. I am jotting down some of the commonly used SCP command for your future help. Hope you all will like it</p><p>What is Secure Copy?<br /><br />scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same authentication and same level of security as ssh.</p><p><br />Examples</p><p><br /><strong>Copy the file "gene.txt" from a remote host to the local host</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp your_username@remotehost.edu:gene.txt /some/local/directory<br /><br /><strong>Copy the file "foobar.txt" from the local host to a remote host</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp gene.txt your_username@remotehost.edu:/some/remote/directory<br /><br /><strong>Copy the directory "chromosome" from the local host to a remote host's directory "bar"</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp -r chromosome your_username@remotehost.edu:/some/remote/directory/bar<br /><br /><strong>Copy the file "gene.txt" from remote host "rh1.edu" to remote host "rh2.edu"</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp your_username@rh1.edu:/some/remote/directory/gene.txt \<br />&nbsp;&nbsp;&nbsp; your_username@rh2.edu:/some/remote/directory/<br /><br /><strong>Copying the files "gene.txt" and "cancer.txt" from the local host to your home directory on the remote host</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp gene.txt cancer.txt your_username@remotehost.edu:~<br /><br /><strong>Copy the file "gene.txt" from the local host to a remote host using port 2264</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp -P 2264 gene.txt your_username@remotehost.edu:/some/remote/directory<br /><br /><strong>Copy multiple files from the remote host to your current directory on the local host</strong><br /><br />&nbsp;&nbsp;&nbsp; $ scp your_username@remotehost.edu:/some/remote/directory/\{a,b,c\} .<br /><br />&nbsp;&nbsp;&nbsp; $ scp your_username@remotehost.edu:~/\{gene.txt,cancer.txt\} .<br /><br /><strong>scp Performance</strong><br /><br />By default scp uses the Triple-DES cipher to encrypt the data being sent. Using the Blowfish cipher has been shown to increase speed. This can be done by using option -c blowfish in the command line.<br /><br />&nbsp;&nbsp;&nbsp; $ scp -c blowfish some_file your_username@remotehost.edu:~<br /><br />It is often suggested that the -C option for compression should also be used to increase speed. The effect of compression, however, will only significantly increase speed if your connection is very slow. Otherwise it may just be adding extra burden to the CPU. An example of using blowfish and compression:<br /><br />&nbsp;&nbsp;&nbsp; $ scp -c blowfish -C local_file your_username@remotehost.edu:~</p></div>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/34585/r-googlevis-examples</guid>
	<pubDate>Sun, 10 Dec 2017 06:13:42 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/34585/r-googlevis-examples</link>
	<title><![CDATA[R googleVis examples]]></title>
	<description><![CDATA[<p>It may take a little while to load all charts. Please be patient. All charts require an Internet connection.</p>
<p>These examples are taken from the googleVis demo. You can execute the demo via</p>
<pre><code><span>library</span><span>(</span><span>googleVis</span><span>)</span>
<span>demo</span><span>(</span><span>googleVis</span><span>)</span>
</code></pre>
<p>For more details about the charts and further examples see the helpfiles of the individual googleVis function and review the&nbsp;<a href="https://developers.google.com/chart/interactive/docs/gallery">Google Charts API documentation</a>&nbsp;and&nbsp;<a href="https://developers.google.com/terms">Terms of Service</a>.</p><p>Address of the bookmark: <a href="https://cran.r-project.org/web/packages/googleVis/vignettes/googleVis_examples.html" rel="nofollow">https://cran.r-project.org/web/packages/googleVis/vignettes/googleVis_examples.html</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10391/research-associate-ra-at-iob</guid>
  <pubDate>Mon, 05 May 2014 08:38:54 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate (RA) at IOB]]></title>
  <description><![CDATA[
<p>Applications are invited for a post of Research Associate (RA) or Senior Research Fellow (SRF) in the ICMR project on "Integrated Analysis of Multi-omics Data in Human Gliomas".</p>

<p>We are looking for a motivated candidate for handling proteomic and/or transcriptomic and other data with a strong background in bioinformatics tools and database development. The project will include identification of novel peptides from mass spectrometry-based proteomic data.</p>

<p>Familiarity with statistical tools or wet lab experience will be an added advantage. The position is open for immediate appointment and available for two years. The applicant will be appointed as Research Associate or Senior Research Fellow based on qualifications as detailed below:</p>

<p>Research Associate: Ph.D. in Biological Science or Bioinformatics with relevant publications in peer reviewed journals. Familiarity with bioinformatics tools, database development, programming skills and proteomic and/or other omics data analysis. Salary will be as per ICMR rules and guidelines.</p>

<p>Senior Research Fellow: M.Sc./B.Tech. in any branch of biology/ biotechnology/bioinformatics, with minimum 2 years of research experience (essential). Familiarity with bioinformatics tools, database development, programming skills and proteomic data analysis. Salary will be as per ICMR rules and guidelines.</p>

<p>Application will be shortlisted based on CV, reference letters from mentors and telephonic interview. Candidates will be called for a personal interview at Bangalore before appointment. No travel expense will be provided for attending interview at Bangalore.</p>

<p>Interested candidates may send a Letter of Interest and CV by email to: ravi@ibioinformatics.org on or before May 15th, 2014.</p>

<p>Contact:<br />Dr. Ravi Sirdeshmukh<br />Distinguished Scientist &amp; Associate Director, IOB,<br />Principal Advisor MSMC/MSCTR</p>

<p>Advertisement: www.ibioinformatics.org/careers.php</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/36585/custom-r-charts-coming-to-excel</guid>
	<pubDate>Sat, 12 May 2018 07:30:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/36585/custom-r-charts-coming-to-excel</link>
	<title><![CDATA[Custom R charts coming to Excel !]]></title>
	<description><![CDATA[<p>This week at the BUILD conference, Microsoft&nbsp;<a href="https://dev.office.com/blogs/azure-machine-learning-javascript-custom-functions-and-power-bi-custom-visuals-further-expand-developers-capabilities-with-excel" target="_blank">announced</a>&nbsp;that Power BI custom visuals will soon be available as charts with Excel. You'll be able to choose a range of data within an Excel workbook, and pass those data to one of the built-in Power BI custom visuals, or one you've&nbsp;<a href="https://github.com/Microsoft/PowerBI-Visuals/" target="_blank">created yourself using the API</a>.</p><p><a href="http://a0.typepad.com/6a0105360ba1c6970c0224e038fa08200d-pi" target="_blank"><img src="https://www.r-bloggers.com/wp-content/plugins/lazy-load/images/1x1.trans.gif" alt="Excel custom visuals" title="Excel custom visuals" style="border: 0px; border: 0px;"></a></p><p>Since you can&nbsp;<a href="https://docs.microsoft.com/en-us/power-bi/desktop-r-visuals?WT.mc_id=Revolutions-blog-davidsmi" target="_blank">create Power BI custom visuals using R</a>, that means you'll be able to design a custom R-based chart, and make it available to people using Excel &mdash; even if they don't know how to use R themselves. There also many&nbsp;<a href="https://appsource.microsoft.com/en-us/marketplace/apps?product=power-bi-visuals&amp;page=1&amp;src=office" target="_blank">pre-defined custom visuals available</a>, including some familiar R charts like&nbsp;<a href="https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104380817?tab=Overview" target="_blank">decision trees</a>,&nbsp;<a href="https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104380905?tab=Overview" target="_blank">calendar heatmaps</a>, and&nbsp;<a href="https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104381492?tab=Overview" target="_blank">hexbin scatterplots</a>.</p><p>For more details on how you'll be able to use custom R visuals in Excel, check out the blog post linked below.</p><p>PowerBI Blog:&nbsp;<a href="https://powerbi.microsoft.com/en-us/blog/excel-announces-new-data-visualization-capabilities-with-power-bi-custom-visuals/" target="_blank">Excel announces new data visualization capabilities with Power BI custom visuals</a></p>]]></description>
	<dc:creator>Surabhi Chaudhary</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/9429/srf-vacancy-at-nipgr</guid>
  <pubDate>Tue, 25 Mar 2014 19:20:44 -0500</pubDate>
  <link></link>
  <title><![CDATA[SRF Vacancy at NIPGR]]></title>
  <description><![CDATA[
<p>Applications are invited from suitable candidates for filling up the purely temporary position of one Senior Research Fellow in DST’s Indo-Australian Joint project (with ICRISAT) entitled “Genomic Approach for Stress Tolerant Chickpea” under the guidance of Dr. Mukesh Jain, Scientist, NIPGR.</p>

<p>(A) Senior Research Fellow (One Post):    Emoluments as per DST/DBT norms.</p>

<p>Candidates having M.Sc. degree (with minimum of 55% marks) or equivalent in Life Sciences/Biotechnology/Bioinformatics/ Molecular Biology or any other related field with minimum of two years of post M.Sc. research experience are eligible to apply. The candidate having computer skill (Linux, Perl, Java, MySQL) and/or experience in advanced molecular biology, next generation sequencing data analysis and molecular markers analysis will be preferred.</p>

<p>The position is completely on temporary basis and co-terminus with the project. The initial appointment will be for one year, which can be curtailed/extended on the basis of assessment of the candidate’s performance and discretion of the Competent Authority. NIPGR reserves the right to select the candidate against the above posts depending upon the qualifications and experience of the candidates. Reservation of posts shall be as per Govt. of India norms.</p>

<p>Eligible candidates may apply by sending hard copy of completed application in the given format with a cover letter showing interest and attested copies of the certificates and proof of research experience. The applications should reach at the address given below within 15 days from the date of the advertisement. The subject line on envelope must be superscribed by “Application for the Post of SRF in DST - AISRF project”.</p>

<p>Note: ONLY hard copy of the application in the given format will be accepted.</p>

<p>Last date April 03, 2014</p>

<p>Dr. Mukesh Jain<br />Staff Scientist<br />National Institute of Plant Genome Research<br />Aruna Asaf Ali Marg, P.O. Box NO. 10531,<br />New Delhi - 110067</p>

<p>Advertisement: http://www.nipgr.res.in/careers/vacancies_latest.php#</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38067/metaplotr-a-perlr-pipeline-for-plotting-metagenes-of-nucleotide-modifications-and-other-transcriptomic-sites</guid>
	<pubDate>Mon, 05 Nov 2018 08:12:45 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38067/metaplotr-a-perlr-pipeline-for-plotting-metagenes-of-nucleotide-modifications-and-other-transcriptomic-sites</link>
	<title><![CDATA[MetaPlotR: a Perl/R pipeline for plotting metagenes of nucleotide modifications and other transcriptomic sites]]></title>
	<description><![CDATA[<p><span>An increasing number of studies are mapping protein binding and nucleotide modifications sites throughout the transcriptome. Often, these sites cluster in certain regions of the transcript, giving clues to their function. Hence, it is informative to summarize where in the transcript these sites occur. A metagene is a simple and effective tool for visualizing the distribution of sites along a simplified transcript model. In this work, we introduce MetaPlotR, a Perl/R pipeline for creating metagene plots.</span></p><p>Address of the bookmark: <a href="https://github.com/olarerin/metaPlotR" rel="nofollow">https://github.com/olarerin/metaPlotR</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/9579/junior-research-fellow-position-at-school-of-biotechnology-gautam-buddha-university-greater-noida</guid>
  <pubDate>Tue, 01 Apr 2014 14:46:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[JUNIOR RESEARCH FELLOW POSITION at School of Biotechnology, Gautam Buddha University Greater Noida]]></title>
  <description><![CDATA[
<p>Walk-In Interview for one position of Junior Research Fellow (JRF) in a SERB, Department of Science and Technology (DST) funded research project entitled “Design and evaluation of novel Beta-3 adrenoreceptor agonists for potential antidepressant activity” under the supervision of Dr. Shakti Sahi which was scheduled on 31st March, 2014 is now re-scheduled on account of public holiday.</p>

<p>The interview will now be held 01st April 2014. The monthly fellowship of JRF will be Rs 12,000/- plus HRA as per the University rules.</p>

<p>Essential Qualification: Master degree in any discipline of Life Science with NET qualified or valid GATE score.</p>

<p>Desirable Qualification: Preference will be given to candidates having research experience in Bioinformatics.</p>

<p>The interested candidates should report for the Interview on 01st April, 2014 at 10:00 am in the Conference Room of Dean, School of Biotechnology, First floor, Gautam Buddha University, Greater Noida. Interested candidates may also send their resume to undersigned by postmail/e-mail shaktis@gbu.ac.in or shaktisahi@gmail.com. No TA and DA will be paid for appearing for the interview.</p>

<p>Dr. Shakti Sahi<br />(Principle Investigator)<br />School of Biotechnology<br />Gautam Buddha University<br />Greater Noida<br />Ph:9971791897</p>

<p>Advertisement:</p>

<p>www.gbu.ac.in/Recruitment/JRF_advertisement_DSTProject_Shakti_26March14.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38443/genoplotr-plot-gene-and-genome-maps-project</guid>
	<pubDate>Wed, 12 Dec 2018 08:33:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38443/genoplotr-plot-gene-and-genome-maps-project</link>
	<title><![CDATA[genoPlotR - plot gene and genome maps project!]]></title>
	<description><![CDATA[<p>genoPlotR is a R package to produce reproducible, publication-grade graphics of gene and genome maps. It allows the user to read from usual format such as protein table files and blast results, as well as home-made tabular files.</p>
<h3>Features</h3>
<ul>
<li>Linear representation of several segments of DNA</li>
<li>Comparisons represented by areas between the segments (like Artemis, for example)</li>
<li>Reads from common formats: Genbank, EMBL, blast, Mauve, and from user-generated tab files</li>
<li>Plot several subsegments of the same segment on the same line, separated by a //</li>
<li>Automatic or manual placement of the segments on the plot</li>
<li>Add annotations to all the lines</li>
<li>Create smart, automatic annotations for genomes, based on gene names</li>
<li>Add a user-generated tree</li>
<li>Add a global scale or a scale to each line</li>
<li>Use user-defined graphical functions to represent genes</li>
<li></li>
</ul><p>Address of the bookmark: <a href="http://genoplotr.r-forge.r-project.org/" rel="nofollow">http://genoplotr.r-forge.r-project.org/</a></p>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/9701/postodoc-in-computationalsystems-biology-and-machine-learning</guid>
  <pubDate>Wed, 09 Apr 2014 20:47:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postodoc in Computational/Systems Biology and Machine Learning]]></title>
  <description><![CDATA[
<p>One profile of Computational/Systems Biology and Machine Learning at Postdoc level is needed at the Laboratory of Immunobiology of Neurological Disorders led by Cinthia Farina, Institute of Experimental Neurology, Ospedale San Raffaele, Milano. The projects of interest for this application involve research on translational bioinformatics in complex human disorders.<br /> <br />You have a  PhD in Computational Science, Bioinformatics,  or equivalent.<br /> <br />Especially relevant skills for the profile are:<br />1. In-depth understanding and implementation of methods and development of<br />algorithms for statistical and machine learning classification, clustering, predictive<br />modelling.<br />2. Experience on transcriptomics and clinical data analysis, in particular gene regulatory networks, protein interactomes, development of diagnostic tools.<br /> <br />3. Solid experience with data mining, bioinformatics programming and statistics for bioinformatics.<br />4. Flexibility and willing to work across multiple projects and technology in a rapidly evolving scientific context. <br /> <br />Candidates with programming/scripting experience are also welcome. In particular, proficiency in one or more mainstream programming languages (C, C++, Java, Python, Perl, etc.), together with the understanding of relational database design and SQL/DBMS systems (e.g. MySQL, PHP, Oracle).<br />Experience with the analysis of next-generation sequencing data is a plus.<br />Clear demonstration of experience in analysis and modelling of omics and clinical data must be provided.<br /> <br />Interested candidates should send to farina.cinthia@hsr.it:<br /> <br />1. CV (please show evidences of relevant titles, projects, courses, references, etc.)<br />2. One page with a list of research topics (i.e. ongoing projects)<br />3. earliest availability<br />4. 2-3 contact names</p>
]]></description>
</item>

</channel>
</rss>