<?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/27038?offset=30</link>
	<atom:link href="https://bioinformaticsonline.com/related/27038?offset=30" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/8857/junior-research-fellow-at-iari</guid>
  <pubDate>Mon, 10 Mar 2014 13:10:56 -0500</pubDate>
  <link></link>
  <title><![CDATA[Junior Research Fellow at IARI]]></title>
  <description><![CDATA[
<p>DIVISION OF NEMATOLOGY<br />INDIAN AGRICULTURAL RESEARCH INSTITUTE<br />NEW DELHI 110012</p>

<p>Applications are invited for the posts of one Junior Research Fellow in the DBT funded project entitled “Plant parasitic nematode genome informatics - insilico resource development”. The project is for a period of three years.</p>

<p>Essential qualifications for JRF: First class M. Sc. / M. Tech in Bioinformatics. Knowledge of programming language, pearl, Statistics and database – HTML, CSS, Java script.</p>

<p>Desirable qualifications: Experience in handling next generation sequencing data</p>

<p>Age limit: 35 years maximum (5 year relaxation for SC/ST and women candidates) Emoluments: 16,000 + 30% HRA.</p>

<p>The post is purely temporary in nature and is co-terminus with the project. The appointment would be initially for one year and may be extended further upon satisfactory performance.</p>

<p>Those who are interested in pursuing Ph.D with strong research aptitude are preferred.</p>

<p>Interested candidates may attend the Walk in interview on 25th March 2014 along with the duly filled application forms (format in the following page) with all the relevant documents.</p>

<p>Venue: Division of Nematology, Indian Agricultural Research Institute, New Delhi 110012 (Room No. 306, 3rd floor, LBS building)</p>

<p>Reporting Time: Interested candidates should report strictly between 10.00 to 10.30 AM.</p>

<p>Interview time: 10.30 AM</p>

<p>Short-listed candidates will be called for interview at New Delhi. However, no TA and DA will be paid for attending the interview.</p>

<p>Advertisement:</p>

<p>https://www.iari.res.in/files/JRF_Nema-07032014-20140307-170017.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/8972/bioinformaticcomputational-postdoc-at-south-dakota-state-university</guid>
  <pubDate>Wed, 12 Mar 2014 10:02:30 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatic/computational postdoc at South Dakota State University]]></title>
  <description><![CDATA[
<p>We seek an enthusiastic postdoctoral researcher to work with the Plant Science team within the Biochemical Spatio-temporal NeTwork Resource (BioSNTR). Bio-SNTR</p>

<p>is a state-funded virtual research center aimed at promoting imaging and informatics research infrastructure in South Dakota. BioSNTR research foci include analysis of large-scale genomics and imaging data, application of novel microscopy technologies to study signaling pathways, and identification of new compounds to manipulate signaling pathways.<br />Responsibilities: This person will be part of Plant Science team with research focus in bioinformatic and molecular network analyses of high throughput data (transcriptomic, proteomic, metabolomics, miRNA). The individual will be integrated into functional genomic projects encompassing grapevine dormancy and freezing tolerance (Fennell) and regulation of soybean nodulation (Subramanian). The successful candidate will perform computational analysis of high throughput, next-generation sequence data and possess the ability to use bioinformatics analytical tools on HPC clusters.</p>

<p> <br />Required Qualifications:<br />• Ph.D. in plant computational biology or bioinformatics.<br />• Experience in a high performance computing environment.<br />• Perl, Python and Java programming experience<br />• Data management and database development experience</p>

<p>Desired Qualifications:<br />• Parallel computing experience<br />• Experience working in a multidisciplinary environment</p>

<p>Contact Information<br />South Dakota State University<br />Plant Science<br />Anne Fennell<br />anne.fennell@sdstate.edu<br />Tel. Number: 605-688-6373<br />http://www.biosntr.org</p>
]]></description>
</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/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/opportunity/view/41394/ngsymposium-in-computational-biology</guid>
  <pubDate>Mon, 09 Mar 2020 06:00:30 -0500</pubDate>
  <link></link>
  <title><![CDATA[NGSymposium in Computational Biology]]></title>
  <description><![CDATA[
<p>We have a great pleasure to invite you to the NGSymposium in Computational Biology to celebrate the 5th anniversary of the NGSchool Summer Schools. This international conference will make way for exchanging knowledge and experiences between experienced and early-stage researchers as well as bioinformaticians. The meeting will be held on 31.07 - 1.08.2020 in Warsaw. It will be a satellite event to the #NGSchool2020: Statistical Learning in Genomics. It will cover a wide range of topics from basic and applied biomedical sciences: bioinformatics, genomics, transcriptomics, computational biology, Machine Learning.</p>

<p>Registration of active participants will be open from February, 27 12 PM CET to April 17, 23:59 CET. In registration forms you will be asked for providing us with some basic information about yourself. You will also be able to submit your abstract. You can save your registration form after filling it partially and come back later to supply more data e.g. upload an abstract. Your registration will be completed only with the payment of the registration fee reaching our accounts - please make sure to transfer the money in advance!</p>

<p>Registration of passive participants will be open after closing of registration of active participants.</p>

<p>Details an registration: https://ngschool.eu/conference/</p>
]]></description>
</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/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/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>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10392/research-associate-ra-at-institute-of-advanced-study-in-science-and-technology</guid>
  <pubDate>Mon, 05 May 2014 08:44:24 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate (RA) at INSTITUTE OF ADVANCED STUDY IN SCIENCE AND TECHNOLOGY]]></title>
  <description><![CDATA[
<p>INSTITUTE OF ADVANCED STUDY IN SCIENCE AND TECHNOLOGY<br />(An Autonomous Institute under Department of Science and Technology, Govt. of India)<br />Paschim Boragaon, Garchuk, Guwahati-781035</p>

<p>Appointment Adv.No.2</p>

<p>Applications in plain paper are invited from Indian citizens for one/two position each of Research Associate, Traineeship and Studentship for BIF facility, Division of Life Sciences, IASST.</p>

<p>Applications with complete Bio-data containing contact address, e-mail and phone number, two recent passport size photographs and attested copies of mark sheets, certificates etc., should be sent to the Registrar, IASST, Paschim Boragaon, Garchuk, Guwahati – 781035, Assam, so as to reach on or before 5/05/2014.</p>

<p>A. Research Associate:</p>

<p>Number of vacancies: 1 (One)</p>

<p>Qualifications:</p>

<p>PhD in Bioinformatics or allied disciplines with knowledge of Bioinformatics. The candidates who have submitted PhD thesis may also apply.</p>

<p>In case, candidates having PhD are not found, candidates having MSc in Bioinformatics or allied disciplines with sound knowledge of Bioinformatics will be preferred.</p>

<p>Remuneration: Candidate having PhD will get a consolidated remuneration of Rs. 22,000/- +HRA per month. MSc having NET/GATE/SLET qualified candidate will get a remuneration of Rs. 16,000/= and HRA and candidate with only MSc will get a remuneration of Rs.14,000/- and HRA.</p>

<p>Tenure:</p>

<p>The post is initially for one year and may be extended depending on the performance till the tenure of the project.</p>

<p>B. Traineeship:</p>

<p>Number of vacancies: 2 (Two)</p>

<p>Qualifications:</p>

<p>Candidate with a postgraduate degree in Bioinformatics/Biotechnology/Life sciences from a recognised University</p>

<p>Remuneration: Rs. 5000/month for 6 months</p>

<p>C. Studentship:</p>

<p>Number of vacancies: 2 (Two)</p>

<p>Qualifications:</p>

<p>Candidate pursuing M.Sc in bioinformatics in a recognised University.</p>

<p>Remuneration: Rs. 5000/month for 6 months</p>

<p>Advertisement:</p>

<p>http://iasst.gov.in/pdf/recruitment/advt%20no_2_24042014.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/10260/%E2%80%9Con%E2%80%9D-and-%E2%80%9Coff%E2%80%9D-the-neuron</guid>
	<pubDate>Fri, 25 Apr 2014 19:31:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/10260/%E2%80%9Con%E2%80%9D-and-%E2%80%9Coff%E2%80%9D-the-neuron</link>
	<title><![CDATA[“On” and “Off” the neuron !!!]]></title>
	<description><![CDATA[<p><span>Optogenetics is a recent innovation in neuroscience that gives researchers the ability to control the activity of neurons with light. With this powerful tool, researchers are teasing apart the biological basis of memory, behavior, and disease (see &ldquo;<a href="http://www.technologyreview.com/news/517226/scientists-make-mice-remember-things-that-didnt-happen/"><span>Scientists Make Mice &lsquo;Remember&rsquo; Things That Didn&rsquo;t Happen</span></a>&rdquo; and &ldquo;<a href="http://www.technologyreview.com/news/423254/an-on-off-switch-for-anxiety/"><span>An On-Off Switch for Anxiety</span></a>,&rdquo;). But for the first several years of this technology&rsquo;s existence, the proteins that scientists added to neurons to make them react to light were only good at activating neurons. That limited researchers&rsquo; ability to understand neuronal circuits, sets of interconnected neurons that are thought to control behavior and, when misfiring, to underlie many brain conditions. Problems can arise from any imbalance in circuit activity, whether too much or too little.&nbsp;</span></p><p><span>Now, two research groups have engineered new optogenetic proteins that can be used to efficiently silence neurons.&nbsp;<span><span>One of the two new proteins comes from the lab of<span>&nbsp;</span><a href="http://www.stanford.edu/group/dlab/about_pi.html" target="_blank">Karl Deisseroth</a>, a psychiatrist and neuroscientist at Stanford University who helped develop optogenetics as a research tool.&nbsp;His group&rsquo;s new &ldquo;off&rdquo; switch for neurons was created by changing 10 of the 333 amino acids in an existing optogenetic protein, which itself had been engineered by combining natural proteins from<span>&nbsp;</span></span></span><a href="http://genome.jgi-psf.org/Chlre3/Chlre3.home.html" target="_blank"><span>green algae</span></a><span><span>. That advance&nbsp;</span><span>&ldquo;creates a powerful tool that allows neuroscientists to apply a brake in any specific circuit with millisecond precision,&rdquo; said Thomas&nbsp;Insel, director of the National Institute of Mental Health, in a released statement.&nbsp;</span><a href="http://www.sciencemag.org/content/344/6182/409" target="_blank"><span>The other new silencing protein</span></a>, developed by scientists at the H</span><span>umboldt University of Berlin and collaborators, was created by changing amino acids in the same existing optogenetic protein.&nbsp;</span></span></p><p><span><span>Some researchers are also looking to optogenetics as a potential treatment for patients with a variety of conditions (see &ldquo;</span></span><span><a href="http://www.technologyreview.com/news/524771/for-mice-and-maybe-men-pain-is-gone-in-a-flash/"><span>For Mice, and Maybe Men, Pain Is Gone in a Flash</span></a><span><span>,&rdquo; and &ldquo;</span></span><a href="http://www.technologyreview.com/news/506981/flipping-on-the-lights-to-halt-seizures/"><span>Flipping on the Lights to Halt Seizures</span></a><span><span>&rdquo;) but there are huge challenges to overcome. The method requires genetic modification of cells to make them light-sensitive. It also requires implanted light sources for all but the shallowest of nerve endings. <br /></span></span></span></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

</channel>
</rss>