<?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/10394?offset=80</link>
	<atom:link href="https://bioinformaticsonline.com/related/10394?offset=80" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/5402/key-bioinformatics-scientists</guid>
	<pubDate>Wed, 09 Oct 2013 13:37:07 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/5402/key-bioinformatics-scientists</link>
	<title><![CDATA[Key Bioinformatics Scientists]]></title>
	<description><![CDATA[<p>Address of the bookmark: <a href="http://www.iscb.org/iscb-leadership-a-staff-/officers-and-board-directors" rel="nofollow">http://www.iscb.org/iscb-leadership-a-staff-/officers-and-board-directors</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/8384/post-doc-in-genomics-of-fungi</guid>
  <pubDate>Tue, 18 Feb 2014 13:47:08 -0600</pubDate>
  <link></link>
  <title><![CDATA[Post-doc in Genomics of Fungi]]></title>
  <description><![CDATA[
<p>Post-doc in Genomics of Fungi</p>

<p>Fungi are of central importance for the global carbon cycle because of<br />their role in the degredation of complex organic matter such as plant<br />material. Fungi also represent one of the last frontiers of<br />biodiversity, as their taxonomic diversity and metabolic potential<br />remain poorly understood. This is particularly true for those fungi that<br />are abundant in freshwaters.</p>

<p>\"MycoLink\" (Linking aquatic mycodiversity to ecosystem function) is an interdisciplinary project integrating the expertise of 4 Leibniz Institutes: IGB, ZALF, DSMZ, the Leibniz-Institute of Freshwater Ecology and Inland Fisheries (IGB), the Leibniz Centre for Agricultural Landscape Research (ZALF), and the Leibniz-Institute of Zoo- and Wildlife Research in Berlin (IZW). We are seeking to recruit outstanding young scientists to establish an innovative research program, and currently invite applications for:</p>

<p>PostDoc will focus on global biodiversity and evolutionary genomics of freshwater fungi, using second- and third-generation sequencing and bioinformatics to analyse natural populations and experimental cultures. For further information, contact Michael T. Monaghan (monaghan@igb-berlin.de) (http://monaghanlab.org).</p>

<p>PostDoc will focus on the ecological and functional role of aquatic fungi by combining state-of-the-art biochemical analyses with modeling in experimental and natural ecosystems. For further information, contact Hans-Peter Grossart &amp; Katrin Premke (hgrossart@igb-berlin.de; premke@igb-berlin.de)</p>

<p>Applicants must hold a PhD in a relevant field. Positions are available for up to three years. Salary is according to the German TvD. Positions will be based at IGB Berlin, IGB Neuglobsow, and at the Berlin Centre for Genomics in Biodiversity Research. The institutes of the Leibniz Association strive to increase the proportion of female scientists. Therefore, female candidates are specifically encouraged to apply. Disabled applicants with identical technical and personal qualification will be preferentially selected.</p>

<p>Please submit a curriculum vitae (including publication list), a brief statement of motivation and research interests, and the names and contact information of two referees. Please send all documents as a single pdf file to monaghan@igb-berlin.de. </p>

<p>Review of the applications will start on 21 February 2014 and continue until the positions are filled. Interviews for shortlisted applicants will take place in March.</p>

<p>Biodiversity, Ecology, and Genomics of Aquatic Fungi<br />Leibniz-Institute of Freshwater Ecology and Inland Fisheries (IGB), Berlin, Germany</p>

<p>Deadline for applications : unknown.</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/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/10881/special-project-scientist-%E2%80%93-sorghum-genomics</guid>
  <pubDate>Tue, 20 May 2014 00:34:39 -0500</pubDate>
  <link></link>
  <title><![CDATA[Special Project Scientist – Sorghum Genomics]]></title>
  <description><![CDATA[
<p>ICRISAT is seeking applications from Indian Nationals for a Special Project Scientist to work on a sorghum genomics activities related to sequencing/re-sequencing projects utilizing New Generation Sequencing platforms.</p>

<p>The Job detail</p>

<p>    Advancing the SNP-discovery and polymorphism assessment work across several germplasm panels representing global genetic diversity<br />    Population genetic and genomic analyses, testing the hypothesis related to adaptation in multiple geographic regions<br />    Develop SNP assays from large scale GBS and other re-sequencing data for several target traits utilizing available phenotyping data<br />    Combined analyses of genotypic and phenotypic data for discovery of marker-trait associations, and conducting GWAS<br />    Processing, analyzing, and archiving large-scale genomic data sets, assessing data quality, conducting analyses, interpreting findings, and communicating findings to others including preparation of reports, presentations, posters and journal articles<br />    Providing support to MSc and PhD students on topic related to its major core of research<br />    Any other work assigned by the supervisor</p>

<p>The Person:</p>

<p>    PhD in bioinformatics, genetics, computational biology preferably with 1 to 2 years of experience;<br />    familiar with standard bioinformatics tools and scripting languages and emerging and evolving software platforms relevant to bioinformatics and computational biology;<br />    ability to create new analytical pipelines; experience with handling large data sets;<br />    ability to program in at least two of the following: C++, PERL, Python, R, Java.<br />    will use next-generation sequencing technologies to generate marker data for genetic mapping and transcriptome data for expression QTL mapping, and will be responsible for data generation as well as data analysis.</p>

<p>Period and Remuneration: The assignment is for a period of two years, and can be extended for another year depending on performance. ICRISAT pays a very attractive all inclusive lump sum assignment fee payable in Indian Rupees.</p>

<p>How to Apply: Please send your application by email to icrisatjobs@cgiar.org, stating the job title (Special project Scientist-Sorghum Genomics) clearly in the subject column, addressed to the Director, Human Resources and Operations, ICRISAT, Patancheru, Andhra Pradesh 502 324, India, latest by 10 June 2014. The application should include an up-to-date Curriculum Vitae, a short statement of competencies and experience for the position, and the names and addresses (including phone/e-mail) of three referees. Only short-listed candidates will be contacted.</p>

<p>More at: http://www.icrisat.org/careers/Special-Project-Scientist-Sorghum-Genomics.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10841/ra-at-iisr-kozhikode</guid>
  <pubDate>Thu, 15 May 2014 10:08:09 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA at IISR Kozhikode]]></title>
  <description><![CDATA[
<p>INDIAN INSTITUTE OF SPICES RESEARCH<br />(Indian Council of Agricultural Research)<br />Marikunnu P.O., Kozhikode – 673 012, Kerala</p>

<p>Walk- in- Test cum Interview (based on test) for the selection of Research Associate</p>

<p>under the scheme “Distributed Information Sub Centre –DISC” &amp; Research Assistant under scheme “Phytophthora, Fusarium and Ralstonia diseases of Horticultural and Field Crops” will be held at this Institute as per details indicated below.</p>

<p>WALK -IN- TEST CUM INTERVIEW</p>

<p>Name of the post : Research Associate</p>

<p>Date of Interview : 21-05-2014 at 10.00 AM</p>

<p>No. of posts : One</p>

<p>Qualifications : a)Essential</p>

<p>Ph.D Degree in Bioinformatics OR :  Masters degree in Bioinformatics with a minimum of<br />60% marks or equivalent OGPA with at least two years research experience as evidenced from fellowship/ associateship/training/published papers etc.</p>

<p>b)Desirable: Experience in NGS data analysis.</p>

<p>Emoluments : Rs. 23,000/- per month + HRA (Masters Degree Holders)</p>

<p>Rs. 24,000/- per month + HRA (Ph.D Degree Holders)</p>

<p>Upper age limit : 40 years for Men &amp; 45 years for Women as on date of Interview (Upper Age limits are relaxable for SC, ST and OBC candidates as per Govt. of India norms (at present 5 years for SC/ST and 3 years for OBC)</p>

<p>Duration of Project : Till 31-03-2017.</p>

<p>Title of Assigment : Research Assistant (on contract basis)</p>

<p>No. of vacancy : One</p>

<p>Qualification : Essential : Post Graduation in Bioinformatics and  Minimum one year experience in NGS data analysis</p>

<p>Desirable : Experience in Perl/Python/R</p>

<p>Remuneration : Rs. 20,000/- per month (consolidated)</p>

<p>Scope of work :</p>

<p>1. Analysis of different file formats and their conversions.</p>

<p>2. Assessing the quality of data and filtering of raw reads.<br />3. Assembling the raw reads-de novo as well as reference  mapping.<br />4. Compression of aligned reads using Jam tools<br />5. RNA-seq. Analysis<br />6. Differential expression testing involving Normalization,  Statistical testing, heat map generation &amp; hierarchical  clustering<br />7. Annotating the assembled genome and geneet testing  and their validation<br />8. Metabolic pathway analysis<br />9. Comparative genomics<br />10. Setting up of genome browsers.</p>

<p>Period of Assigment : Initially for six months.</p>

<p>Date &amp; Venue of Interview : 21-05-2014 at IISR, Kozhikode at 10.00 AM</p>

<p>More at http://www.spices.res.in/pdf/disc-advtmnt.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/11000/professorassociate-professor-assistant-professor-at-chettinad-academy-of-research-and-education</guid>
  <pubDate>Sat, 24 May 2014 00:00:15 -0500</pubDate>
  <link></link>
  <title><![CDATA[Professor/Associate Professor/ Assistant Professor at Chettinad Academy of Research and Education]]></title>
  <description><![CDATA[
<p>OPEN FACULTY POSITION</p>

<p>Chettinad Academy of Research and Education (CARE) invites applications from eligible and translational research-oriented candidates to the posts of Professor/Associate Professor/ Assistant Professor  Computational Biology, Bioinformatics, and Pharmaceutical Chemistry.</p>

<p>Emoluments: As per UGC norms (Adequate Compensation for Postdoctoral/Teaching experience)</p>

<p>Candidates fulfilling the eligibility criteria as per the UGC norms can send their full CV with copies of certificates and reference letters to the following address by post or by e-mail on or before 31st May 2014</p>

<p>The Registrar,<br />Chettinad Academy of Research and Education,<br />Chettinad Health City<br />Kelambakkam, Chennai 603 103<br />Tamil Nadu<br />T +91 (0)44 4741 1000<br />F +91 (0)44 4741 1011<br />Email: jobs @chettinadhealthcity.com</p>

<p>Advertisement: http://182.73.176.163/chc/ads2014.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/videolist/watch/11355/genomics-and-personalized-medicine-breakthroughs</guid>
	<pubDate>Sun, 01 Jun 2014 23:40:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/videolist/watch/11355/genomics-and-personalized-medicine-breakthroughs</link>
	<title><![CDATA[Genomics and Personalized Medicine Breakthroughs]]></title>
	<description><![CDATA[<iframe width="" height="" src="https://www.youtube-nocookie.com/embed/VAR-1vNc0TE" frameborder="0" allowfullscreen></iframe>http://bit.ly/e8QGzY Human genome mapping is now enabling a breakthrough in medical innovation -- personalized medicine. What does this mean for patients? We can now identify predispositions to disease, predict how we metabolize drugs, and figure out what kinds of treatments we may respond to, and even determine when a drug may give us an adverse reaction. All medical specialties benefit from human genome intelligence -- oncology saw the first impacts -- but advances are now being seen in cardiology, obstetrics and gynecology, pediatric diseases, gastroenterology, rheumatology, immunology and other areas. This video covers the areas that genetic medicine is impacting and where the future of genomic medicine is heading.]]></description>
	
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/11441/assistant-professor-in-bioinformatics-at-dr-d-y-patil-biotechnology-bioinformatics-institute</guid>
  <pubDate>Tue, 03 Jun 2014 19:54:15 -0500</pubDate>
  <link></link>
  <title><![CDATA[Assistant Professor 	in Bioinformatics at Dr. D. Y. Patil Biotechnology &amp; Bioinformatics Institute]]></title>
  <description><![CDATA[
<p>Dr. D. Y. Patil Biotechnology &amp; Bioinformatics Institute <br />Tathawade, Pune 411033.</p>

<p>Assistant Professor 	in Bioinformatics </p>

<p>Essential :<br />First Class Master’s Degree in the appropriate branch of Life Sciences / Technology (Tech.)<br />OR<br />Ph.D in Life Sciences or in the respective subject area of specialization<br />OR<br />Good Academic record with at least 55% marks (or an equivalent grade) at the Master’s Degree level, in the relevant subject or an equivalent degree from an Indian / Foreign University.<br />Besides fulfilling the above qualifications, candidates should have cleared the eligibility test (NET) for lecturers conducted by the UGC, CSIR or similar test accredited by the UGC and as per the requirements of UGC guidelines.</p>

<p>Desirable :<br />Teaching, research industrial and/or professional experience in a reputed organization. <br />Papers presented at Conferences and/or in refereed journals</p>

<p>Note : Application are invited in prescribed form Click here for Application Form<br />Kindly send your applications to “Registrar, Dr. D. Y. Patil Vidyapeeth, Pune, Sant Tukaram Nagar, Pimpri, Pune – 411018., Maharashtra, India.” should reach in the University office within 15 days from the publication.</p>

<p>More Info: http://www.dpu.edu.in/BiotechResearchPositions.aspx</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/12787/integrative-genomics-viewer-igv-tutorial</guid>
	<pubDate>Sat, 12 Jul 2014 15:16:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/12787/integrative-genomics-viewer-igv-tutorial</link>
	<title><![CDATA[Integrative Genomics Viewer (IGV) tutorial]]></title>
	<description><![CDATA[<p>The <a href="http://www.broadinstitute.org/igv/">Integrative Genomics Viewer (IGV)</a> from the Broad Center allows you to view several types of data files involved in any NGS analysis that employs a reference genome, including how reads from a dataset are mapped, gene annotations, and predicted genetic variants.</p>
<p>http://www.broadinstitute.org/igv/</p><p>Address of the bookmark: <a href="https://wikis.utexas.edu/display/bioiteam/Integrative+Genomics+Viewer+%28IGV%29+tutorial" rel="nofollow">https://wikis.utexas.edu/display/bioiteam/Integrative+Genomics+Viewer+%28IGV%29+tutorial</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

</channel>
</rss>