<?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/33629?offset=100</link>
	<atom:link href="https://bioinformaticsonline.com/related/33629?offset=100" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/27965/cheatsheet-for-linux</guid>
	<pubDate>Wed, 22 Jun 2016 07:55:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/27965/cheatsheet-for-linux</link>
	<title><![CDATA[Cheatsheet for Linux !!]]></title>
	<description><![CDATA[<p>Linux Commands Cheat Sheet<br /><br />&nbsp;&nbsp;&nbsp; File System<br /><br />&nbsp;&nbsp;&nbsp; ls &mdash; list items in current directory<br /><br />&nbsp;&nbsp;&nbsp; ls -l &mdash; list items in current directory and show in long format to see perimissions, size, an modification date<br /><br />&nbsp;&nbsp;&nbsp; ls -a &mdash; list all items in current directory, including hidden files<br /><br />&nbsp;&nbsp;&nbsp; ls -F &mdash; list all items in current directory and show directories with a slash and executables with a star<br /><br />&nbsp;&nbsp;&nbsp; ls dir &mdash; list all items in directory dir<br /><br />&nbsp;&nbsp;&nbsp; cd dir &mdash; change directory to dir<br /><br />&nbsp;&nbsp;&nbsp; cd .. &mdash; go up one directory<br /><br />&nbsp;&nbsp;&nbsp; cd / &mdash; go to the root directory<br /><br />&nbsp;&nbsp;&nbsp; cd ~ &mdash; go to to your home directory<br /><br />&nbsp;&nbsp;&nbsp; cd - &mdash; go to the last directory you were just in<br /><br />&nbsp;&nbsp;&nbsp; pwd &mdash; show present working directory<br /><br />&nbsp;&nbsp;&nbsp; mkdir dir &mdash; make directory dir<br /><br />&nbsp;&nbsp;&nbsp; rm file &mdash; remove file<br /><br />&nbsp;&nbsp;&nbsp; rm -r dir &mdash; remove directory dir recursively<br /><br />&nbsp;&nbsp;&nbsp; cp file1 file2 &mdash; copy file1 to file2<br /><br />&nbsp;&nbsp;&nbsp; cp -r dir1 dir2 &mdash; copy directory dir1 to dir2 recursively<br /><br />&nbsp;&nbsp;&nbsp; mv file1 file2 &mdash; move (rename) file1 to file2<br /><br />&nbsp;&nbsp;&nbsp; ln -s file link &mdash; create symbolic link to file<br /><br />&nbsp;&nbsp;&nbsp; touch file &mdash; create or update file<br /><br />&nbsp;&nbsp;&nbsp; cat file &mdash; output the contents of file<br /><br />&nbsp;&nbsp;&nbsp; less file &mdash; view file with page navigation<br /><br />&nbsp;&nbsp;&nbsp; head file &mdash; output the first 10 lines of file<br /><br />&nbsp;&nbsp;&nbsp; tail file &mdash; output the last 10 lines of file<br /><br />&nbsp;&nbsp;&nbsp; tail -f file &mdash; output the contents of file as it grows, starting with the last 10 lines<br /><br />&nbsp;&nbsp;&nbsp; vim file &mdash; edit file<br /><br />&nbsp;&nbsp;&nbsp; alias name 'command' &mdash; create an alias for a command<br />&nbsp;&nbsp;&nbsp; System<br /><br />&nbsp;&nbsp;&nbsp; shutdown &mdash; shut down machine<br /><br />&nbsp;&nbsp;&nbsp; reboot &mdash; restart machine<br /><br />&nbsp;&nbsp;&nbsp; date &mdash; show the current date and time<br /><br />&nbsp;&nbsp;&nbsp; whoami &mdash; who you are logged in as<br /><br />&nbsp;&nbsp;&nbsp; finger user &mdash; display information about user<br /><br />&nbsp;&nbsp;&nbsp; man command &mdash; show the manual for command<br /><br />&nbsp;&nbsp;&nbsp; df &mdash; show disk usage<br /><br />&nbsp;&nbsp;&nbsp; du &mdash; show directory space usage<br /><br />&nbsp;&nbsp;&nbsp; free &mdash; show memory and swap usage<br /><br />&nbsp;&nbsp;&nbsp; whereis app &mdash; show possible locations of app<br /><br />&nbsp;&nbsp;&nbsp; which app &mdash; show which app will be run by default<br />&nbsp;&nbsp;&nbsp; Process Management<br /><br />&nbsp;&nbsp;&nbsp; ps &mdash; display your currently active processes<br /><br />&nbsp;&nbsp;&nbsp; top &mdash; display all running processes<br /><br />&nbsp;&nbsp;&nbsp; kill pid &mdash; kill process id pid<br /><br />&nbsp;&nbsp;&nbsp; kill -9 pid &mdash; force kill process id pid<br />&nbsp;&nbsp;&nbsp; Permissions<br /><br />&nbsp;&nbsp;&nbsp; ls -l &mdash; list items in current directory and show permissions<br /><br />&nbsp;&nbsp;&nbsp; chmod ugo file &mdash; change permissions of file to ugo - u is the user's permissions, g is the group's permissions, and o is everyone else's permissions. The values of u, g, and o can be any number between 0 and 7.<br /><br />&nbsp;&nbsp;&nbsp; 7 &mdash; full permissions<br /><br />&nbsp;&nbsp;&nbsp; 6 &mdash; read and write only<br /><br />&nbsp;&nbsp;&nbsp; 5 &mdash; read and execute only<br /><br />&nbsp;&nbsp;&nbsp; 4 &mdash; read only<br /><br />&nbsp;&nbsp;&nbsp; 3 &mdash; write and execute only<br /><br />&nbsp;&nbsp;&nbsp; 2 &mdash; write only<br /><br />&nbsp;&nbsp;&nbsp; 1 &mdash; execute only<br /><br />&nbsp;&nbsp;&nbsp; 0 &mdash; no permissions<br /><br />&nbsp;&nbsp;&nbsp; chmod 600 file &mdash; you can read and write - good for files<br /><br />&nbsp;&nbsp;&nbsp; chmod 700 file &mdash; you can read, write, and execute - good for scripts<br /><br />&nbsp;&nbsp;&nbsp; chmod 644 file &mdash; you can read and write, and everyone else can only read - good for web pages<br /><br />&nbsp;&nbsp;&nbsp; chmod 755 file &mdash; you can read, write, and execute, and everyone else can read and execute - good for programs that you want to share<br />&nbsp;&nbsp;&nbsp; Networking<br /><br />&nbsp;&nbsp;&nbsp; wget file &mdash; download a file<br /><br />&nbsp;&nbsp;&nbsp; curl file &mdash; download a file<br /><br />&nbsp;&nbsp;&nbsp; scp user@host:file dir &mdash; secure copy a file from remote server to the dir directory on your machine<br /><br />&nbsp;&nbsp;&nbsp; scp file user@host:dir &mdash; secure copy a file from your machine to the dir directory on a remote server<br /><br />&nbsp;&nbsp;&nbsp; scp -r user@host:dir dir &mdash; secure copy the directory dir from remote server to the directory dir on your machine<br /><br />&nbsp;&nbsp;&nbsp; ssh user@host &mdash; connect to host as user<br /><br />&nbsp;&nbsp;&nbsp; ssh -p port user@host &mdash; connect to host on port as user<br /><br />&nbsp;&nbsp;&nbsp; ssh-copy-id user@host &mdash; add your key to host for user to enable a keyed or passwordless login<br /><br />&nbsp;&nbsp;&nbsp; ping host &mdash; ping host and output results<br /><br />&nbsp;&nbsp;&nbsp; whois domain &mdash; get information for domain<br /><br />&nbsp;&nbsp;&nbsp; dig domain &mdash; get DNS information for domain<br /><br />&nbsp;&nbsp;&nbsp; dig -x host &mdash; reverse lookup host<br /><br />&nbsp;&nbsp;&nbsp; lsof -i tcp:1337 &mdash; list all processes running on port 1337<br />&nbsp;&nbsp;&nbsp; Searching<br /><br />&nbsp;&nbsp;&nbsp; grep pattern files &mdash; search for pattern in files<br /><br />&nbsp;&nbsp;&nbsp; grep -r pattern dir &mdash; search recursively for pattern in dir<br /><br />&nbsp;&nbsp;&nbsp; grep -rn pattern dir &mdash; search recursively for pattern in dir and show the line number found<br /><br />&nbsp;&nbsp;&nbsp; grep -r pattern dir --include='*.ext &mdash; search recursively for pattern in dir and only search in files with .ext extension<br /><br />&nbsp;&nbsp;&nbsp; command | grep pattern &mdash; search for pattern in the output of command<br /><br />&nbsp;&nbsp;&nbsp; find file &mdash; find all instances of file in real system<br /><br />&nbsp;&nbsp;&nbsp; locate file &mdash; find all instances of file using indexed database built from the updatedb command. Much faster than find<br /><br />&nbsp;&nbsp;&nbsp; sed -i 's/day/night/g' file &mdash; find all occurrences of day in a file and replace them with night - s means substitude and g means global - sed also supports regular expressions<br />&nbsp;&nbsp;&nbsp; Compression<br /><br />&nbsp;&nbsp;&nbsp; tar cf file.tar files &mdash; create a tar named file.tar containing files<br /><br />&nbsp;&nbsp;&nbsp; tar xf file.tar &mdash; extract the files from file.tar<br /><br />&nbsp;&nbsp;&nbsp; tar czf file.tar.gz files &mdash; create a tar with Gzip compression<br /><br />&nbsp;&nbsp;&nbsp; tar xzf file.tar.gz &mdash; extract a tar using Gzip<br /><br />&nbsp;&nbsp;&nbsp; gzip file &mdash; compresses file and renames it to file.gz<br /><br />&nbsp;&nbsp;&nbsp; gzip -d file.gz &mdash; decompresses file.gz back to file<br />&nbsp;&nbsp;&nbsp; Shortcuts<br /><br />&nbsp;&nbsp;&nbsp; ctrl+a &mdash; move cursor to beginning of line<br /><br />&nbsp;&nbsp;&nbsp; ctrl+f &mdash; move cursor to end of line<br /><br />&nbsp;&nbsp;&nbsp; alt+f &mdash; move cursor forward 1 word<br /><br />&nbsp;&nbsp;&nbsp; alt+b &mdash; move cursor backward 1 word</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/28835/a5-miseq</guid>
	<pubDate>Thu, 18 Aug 2016 04:05:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/28835/a5-miseq</link>
	<title><![CDATA[A5-miseq]]></title>
	<description><![CDATA[<p><span><span>_A5-miseq_ is a pipeline for assembling DNA sequence data generated on the Illumina sequencing platform. This README will take you through the steps necessary for running _A5-miseq_. </span></span></p>
<p><span>Point to note:</span></p>
<p><span>There are many situations where A5-miseq is not the right tool for the job. In order to produce accurate results, A5-miseq requires Illumina data with certain characteristics. A5-miseq will likely not work well with Illumina reads shorter than around 80nt, or reads where the base qualities are low in all or most reads before 60nt. A5-miseq assumes it is assembling homozygous haploid genomes. Use a different assembler for metagenomes and heterozygous diploid or polyploid organisms. Use a different assembler if a tool like FastQC reports your data quality is dubious. You have been warned! Datasets consisting solely of unpaired reads are not currently supported.</span></p><p>Address of the bookmark: <a href="https://sourceforge.net/projects/ngopt/" rel="nofollow">https://sourceforge.net/projects/ngopt/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/28119/kraken-ultrafast-metagenomic-sequence-classification-using-exact-alignments</guid>
	<pubDate>Mon, 27 Jun 2016 11:01:44 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/28119/kraken-ultrafast-metagenomic-sequence-classification-using-exact-alignments</link>
	<title><![CDATA[Kraken: ultrafast metagenomic sequence classification using exact alignments]]></title>
	<description><![CDATA[<p>Kraken is an ultrafast and highly accurate program for assigning taxonomic labels to metagenomic DNA sequences. Previous programs designed for this task have been relatively slow and computationally expensive, forcing researchers to use faster abundance estimation programs, which only classify small subsets of metagenomic data. Using exact alignment of <em>k</em>-mers, Kraken achieves classification accuracy comparable to the fastest BLAST program. In its fastest mode, Kraken classifies 100 base pair reads at a rate of over 4.1 million reads per minute, 909 times faster than Megablast and 11 times faster than the abundance estimation program MetaPhlAn. Kraken is available at <a href="http://ccb.jhu.edu/software/kraken/" target="pmc_ext">http://ccb.jhu.edu/software/kraken/</a>.</p>
<p>Krona</p>
<p>https://sourceforge.net/p/krona/home/krona/</p><p>Address of the bookmark: <a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4053813/" rel="nofollow">http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4053813/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/28200/machine-learning</guid>
	<pubDate>Fri, 01 Jul 2016 12:57:12 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/28200/machine-learning</link>
	<title><![CDATA[Machine Learning !!!]]></title>
	<description><![CDATA[<p>In machine learning, computers apply&nbsp;<strong>statistical learning</strong>&nbsp;techniques to automatically identify patterns in data. These techniques can be used to make highly accurate predictions.</p>
<p><em>Keep scrolling.</em>&nbsp;Using a data set about homes, we will create a machine learning model to distinguish homes in New York from homes in San Francisco.</p><p>Address of the bookmark: <a href="http://www.r2d3.us/visual-intro-to-machine-learning-part-1/" rel="nofollow">http://www.r2d3.us/visual-intro-to-machine-learning-part-1/</a></p>]]></description>
	<dc:creator>Gudiya Pal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/28303/fancy-oneliner-for-bioinformatics</guid>
	<pubDate>Thu, 07 Jul 2016 12:05:50 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/28303/fancy-oneliner-for-bioinformatics</link>
	<title><![CDATA[Fancy Oneliner for Bioinformatics !!]]></title>
	<description><![CDATA[<p><span>This webpage lists some of the one-liners that we frequently use in metagenomic analyses. You can click on the following links to browse through different topics. You can copy/paste the commands as they are in your terminal screen, provided you follow the same naming conventions and folder structures as we have. We are sharing these codes with the intention that if they are useful and help you in your analyses, then we will be appropriately credited as considerable effort has been put into devising them.</span></p><p>Address of the bookmark: <a href="http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/oneliners.html" rel="nofollow">http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/oneliners.html</a></p>]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/28439/binc-exam-preparation-tips</guid>
	<pubDate>Fri, 15 Jul 2016 20:53:01 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/28439/binc-exam-preparation-tips</link>
	<title><![CDATA[BINC exam preparation tips !!]]></title>
	<description><![CDATA[<p>How to prepare for <span>BINC (BioInformatics National Certification)</span>&nbsp;exam? What are the expected questions?</p><p>These are just a scant few of the common questions asked by bioinformatics students as they ready themselves for the next exam sitting. If you read the entire <a href="http://bioinformaticsonline.com/bookmarks/view/2334/binc-bioinformatics-national-certification-website-address">Syllabus</a> (and I know that everyone does), you will see a section devoted to study and exam techniques. The section discusses such broad concepts as motivation, scheduling, and retention. Upon reading this section, however, I find the "hints" to be too general. Much of the advice boils down to read, study, understand, and memorize the material. The techniques mentioned apply to everyone and thus the overall advice ends up as a broad overview of the learning process.</p><p>The idea behind this article is to give students ideas on different approaches and techniques in the preparation for exams. By providing various ways to prepare for the exam process, fascinated readers may gain some additional insight to help complement their studying methodology. There are, of course, many common themes expressed in this small empirical sample of students' study habits. The idea of note cards, memorization, and problem solving are frequently mentioned by all students. No matter what technique a candidate uses, it always takes a significant amount of time and personal resources to successfully complete the examination process.</p><p>1 Explain it in your own word</p><p>Your teacher or lecturer can explain something to you, you can learn it from a text book, your friends can study with you, even your own notes can explain it to you but all these explanations are of little use if, by the end, you can&rsquo;t explain what you have learned to yourself. The BINC exam looking for ability to write and explain the concept in your own word. You, therefore, need to illustrate in an exam to get top exam results, then you won&rsquo;t be happy with your end exam result. So don&rsquo;t just memorise and tick off the list &ndash; make sure you understand your theory.</p><p>2 Be an examiner yourself</p><p>Of course, depending on what you&rsquo;re studying, it may be quite difficult to get into a position to understand a concept, theory or other information you need to learn. Ask &lsquo;stupid&rsquo; question to yourself and train yourself for the worst! Embrace your curiosity, for as William Arthur Ward said: &ldquo;Curiosity is the wick in the candle of learning.&rdquo; Doing so will allow you to fill in the blanks and better prepare you for exams.</p><p>3 Quiz yourself</p><p>Once you feel you understand topic, it is important to test yourself regularly. Try yourself to replicate exam conditions as much as possible: turn your phone off, don&rsquo;t talk, time yourself etc. You can set yourself a study quiz or practice exam questions and, so long as you approach it with the right mindset, you can get a very good idea of how much you know. You gain a greater insight into where you stand in relation to what you&rsquo;ve studied so far.</p><p>4 Online study</p><p>Keeping the fact that, bioinformatics is ever changing subject, you might need to update yourself on timely basis. Don&rsquo;t feel obliged to just sit in front of a book with a highlighter; there are many different ways to improve your bioinformatics knowledge. Login and check almost all web servers and keep yourself updated, like how many genomes sequenced, sizes, techniques used, software names etc.</p><p>5 Study plan</p><p>In order to achieve exam success, you need to know what you want to achieve and focus on. That&rsquo;s why it is extremely important to set your Study Goals now and outline to yourself what you need to do. With your study goals in mind, you properly need to attention all subjects. It should be broad enough to allow you to add and change aspects but concise enough so you know you&rsquo;re covering each subject/topic as best you can at this point.</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/28554/megan6</guid>
	<pubDate>Mon, 25 Jul 2016 05:45:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/28554/megan6</link>
	<title><![CDATA[MEGAN6]]></title>
	<description><![CDATA[<p>Microbiome analysis using a single application</p>
<p>MEGAN6 is a comprehensive toolbox for interactively analyzing microbiome data. All the interactive tools you need in one application.</p>
<ul>
<li>Taxonomic analysis using the NCBI taxonomy or a customized taxonomy such as SILVA</li>
<li>Functional analysis using InterPro2GO, SEED, eggNOG or KEGG</li>
<li>Bar charts, word clouds, Voronoi tree maps and many other charts</li>
<li>PCoA, clustering and networks</li>
<li>Supports metadata</li>
<li>MEGAN parses many different types of input</li>
</ul>
<p>Why use MEGAN6?</p>
<div>&nbsp;The software is:</div>
<div><ol>
<li>Easy to use. MEGAN6 is a single application and all features are available through menus, toolbars and graphics. No scripting skills required.</li>
<li>Powerful. MEGAN6 allows you to work with hundreds of samples containing&nbsp;hundreds of millions of sequencing reads. Blast-like analysis can be performed using DIAMOND.</li>
<li>Comprehensive. MEGAN6 offers a large range of analysis tools, and is under active development.</li>
</ol></div><p>Address of the bookmark: <a href="https://ab.inf.uni-tuebingen.de/software/megan6" rel="nofollow">https://ab.inf.uni-tuebingen.de/software/megan6</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28577/research-associate-computer-sciences-recruitment-in-national-bureau-of-plant-genetic-resources</guid>
  <pubDate>Thu, 28 Jul 2016 04:39:13 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate (Computer Sciences) recruitment in National Bureau of Plant Genetic Resources]]></title>
  <description><![CDATA[
<p>Research Associate (Computer Sciences) recruitment in National Bureau of Plant Genetic Resources</p>

<p>Project: Indo-UK Centre for improvement of Nitrogen use efficiency in wheat Dr. Soma S. Marla, Pr. Scientist (Bioinformatics), Division of Genomic Resources, ICAR, NBPGR, ND.</p>

<p>Qualification: Ph.D. Degree in Computer Sciences/Bioinformatics OR 1. First class Master’s degree in any discipline of Plant Sciences with specialization in Computer Sciences/ Bioinformatics having 1st division or 60% marks or equivalent overall grade point average with at least two years of research experience as evidenced from Fellowship/ Associate ship. 2. NET qualification is essential for the candidates with 3+2 years B.Sc.+ M.Sc. Desirable: Demonstrated experience &amp; skills in database design, management, UNIX OS, in NGS data analysis. Experience substantiated by publications of high quality will be preferred.</p>

<p>No.of Post: 1</p>

<p>Pay Scale: Rs. 40,000 (Ph.D)/ Rs + 30 % HRA; Rs.38,000 ( Masters Degree 0 + 30 % HRA).</p>

<p>Age Limit : below 40 years for RA position<br />How to apply<br />Applicants for RA post should send their complete CV (Advance copy of the application may be sent by email to :soma.marla@icar.gov.in or ssmarl@yahoo.com, should enclose the copy of the research publications; one page summary of their achievement relevant to the post applied for; and should enclose two reference letters (one must be from the person with whom worked latest). Shortlisted candidate will be intimated for interview by email.</p>

<p>The candidates who wish to attend the walk-in interview are requested to bring with them five copies of the CV (one copy with photograph) as per the format given below. Also, the candidates should bring the original documents such as degree certificates, marks sheets, publications, thesis, experience certificate etc. for verification. </p>

<p>Date of Interview: 17.8.2016.</p>

<p>More at http://www.nbpgr.ernet.in/Downloadfile.aspx?EntryId=7133</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28618/jrf-bioinformatics-at-dpu-india</guid>
  <pubDate>Fri, 05 Aug 2016 03:06:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics at DPU, India]]></title>
  <description><![CDATA[
<p>Advertisement for position of “JRF (Junior Research Fellow)” on DST research project “Molecular modeling and docking studies on Deguelin and its derivatives with cell cycle arrest, apoptosis and anti-angiogenesis pathway proteins in cancer cell signaling pathway”</p>

<p>Applications are invited on plain paper from eligible candidates along with biodata and copies of certificates in support of age, qualification and experience for the following position:</p>

<p>Particulars Description</p>

<p>1. Position &amp; No. JRF (Junior Research Fellow) 01</p>

<p>2. Title of the Project Molecular modeling and docking studies on Deguelin and its derivatives with cell cycle arrest, apoptosis and anti-angiogenesis pathway proteins in cancer cell signaling pathway</p>

<p>3. Tenure 3 years</p>

<p>4. Investigator Dr. K. V.Swamy</p>

<p>5. Institute Dr. D. Y. Patil Biotechnology and Bioinformatics Institute, Tathawade, Pune 411033.</p>

<p>5. Qualifications/Eligibility</p>

<p>Essential: NET (National Eligibility Test) qualified M. Sc Bioinformatics/ M. Tech Bioinformatics/M. Sc Biotechnology/M. Tech Biotechnology or Graduate degree in Professional course with NET qualification or Post graduation degree in professional course</p>

<p>The following examinations conducted by various Central Government Departments/Agencies are considered as National Eligibility Test (NET).</p>

<p>1. CSIR-UGC-LS <br />2. GATE (Graduate Aptitude Test in Engineering) <br />3. JAM (Joint Admission Test) <br />4. GPAT (Graduate Pharmacy Aptitude Test) <br />5. BET(Biotechnology Eligibility Test) <br />6. BINC(Bioinformatics National Consortium) <br />7. JEST( Joint Entrance Screening Test) <br />8. JGEEBILS(Joint Graduate Entrance Examination for Biology &amp; Interdisciplinary Life Sciences) <br />9. NBHM Ph.D scholarship Screening Test <br />10. ICMR- JRF Entrance Examination <br />11. AICE (ICAR-All India competitive Examination ) <br />(For all above examinations valid score considered at the time of interview)</p>

<p>Desirable: Knowledge and skills in Bioinformatics tools/ softwares</p>

<p>6. Monthly Emoluments Rs.25,000/ (As per DST-SERB rules)</p>

<p>7. Last date for submission of prescribed application 20/08/2016</p>

<p>Kindly send your applications to “Dr. K. V. Swamy, Asst.Professor, Dr. D. Y. Patil Biotechnology &amp; Bioinformatics Institute, Survey No. 87/88, Mumbai-Pune Express Way, Tathawade, Pune - 411033, Maharashtra, India”. Highlight the envelope with “Application for post of JRF (Junior Research Fellow)”.</p>

<p>Note: No TA/DA will be paid for attending the interview.</p>

<p>Advertisement: http://careers.dpu.edu.in/Biotech.aspx</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42490/bioinformatics-scientist-%E2%80%93-icmr-computational-genomics-centre</guid>
  <pubDate>Sat, 26 Dec 2020 10:18:29 -0600</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics Scientist – ICMR Computational Genomics Centre]]></title>
  <description><![CDATA[
<p>ICMR invites online applications, from Indian Citizens, up to 8th January 2020 till 5:30 PM to fill up the following post to be filled purely on a temporary basis under “ICMR Computational Genomics Centre” under Dr. Harpreet Singh, Head, Division of Biomedical Informatics (BMI), ICMR HQRS, New Delhi 110029.<br />The Terms &amp; Conditions for the post are as follows:</p>

<p>a) Scientist-B – UR (2 posts-Bioinformatics) on consolidated salary of Rs.48,000/- pm + HRA</p>

<p>b) Scientist C – UR (1 post -Bioinformatics) on consolidated salary of Rs. 51,000 pm+ HRA</p>

<p>c) Scientist B- UR (2 post-Statistics) on a consolidated salary of Rs.48,000/- pm +HRA</p>

<p>d) Computer Programmer 1 post UR &amp; 1 post SC on a consolidated salary of Rs. 32,500/- pm</p>

<p>e) Research Assistant -UR 1 post on a consolidated salary of Rs. 31,000/- pm</p>

<p>More at https://projectjobs.icmr.org.in/sccbioinformatics/uploads/recruitment/Adv_BMI_24122020.pdf</p>
]]></description>
</item>

</channel>
</rss>