<?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/44703?offset=350</link>
	<atom:link href="https://bioinformaticsonline.com/related/44703?offset=350" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39626/geval-genome-evaluation-browser</guid>
	<pubDate>Tue, 18 Jun 2019 05:39:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39626/geval-genome-evaluation-browser</link>
	<title><![CDATA[gEVAL: Genome Evaluation Browser]]></title>
	<description><![CDATA[<p>The&nbsp;<strong>gEVAL Browser</strong>&nbsp;allows the evaluation of genome assemblies through its tools and pre-computed analyses.</p>
<p>The strength of this browser is the ability to navigate an up to date assembly and identify problematic regions and assist in strategizing potential solutions for these issues.</p>
<p>This facilitates the improvement of overall assemblies to a &ldquo;gold&rdquo; standard for release as reference genomes</p><p>Address of the bookmark: <a href="https://geval.sanger.ac.uk/index.html" rel="nofollow">https://geval.sanger.ac.uk/index.html</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21436/jrf-bioinformatics-iisr-kozhikode</guid>
  <pubDate>Tue, 24 Feb 2015 08:44:17 -0600</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics @ IISR, Kozhikode]]></title>
  <description><![CDATA[
<p>JRF Bioinformatics Jobs recruitment in Indian Institute of Spices Research on temporary basis</p>

<p>Name of the Scheme : Distributed Information Sub Centre – DISC</p>

<p>Qualifications :  M.Sc/ B Tech in Bioinformatics with NET/GATE or M Tech in Bioinformatics</p>

<p>Number of posts : One</p>

<p>Emoluments : Rs. 25,000/-</p>

<p>Upper age limit : 35 years for Men &amp; 40 years for Women as on date of Interview<br />How to apply</p>

<p>Date of Interview : 12-03-2015 at 10.00 AM. All relevant certificates (in original) and bio data, No objection certificate in case he/she is employed elsewhere and experience certificate in original (if any) need to be produced at the time of interview.</p>

<p>More at http://spices.res.in/index.php?option=com_content&amp;view=article&amp;id=263</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40573/de-novo-genome-assembly-for-illumina-data</guid>
	<pubDate>Mon, 20 Jan 2020 05:13:29 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40573/de-novo-genome-assembly-for-illumina-data</link>
	<title><![CDATA[De novo Genome Assembly for Illumina Data]]></title>
	<description><![CDATA[<p>Written and maintained by <a href="mailto:simon.gladman@unimelb.edu.au">Simon Gladman</a> - Melbourne Bioinformatics (formerly VLSCI)</p>
<p>Protocol Overview / Introduction</p>
<p>In this protocol we discuss and outline the process of de novo assembly for small to medium sized genomes.</p>
<p>https://www.melbournebioinformatics.org.au/tutorials/tutorials/assembly/assembly-protocol/</p><p>Address of the bookmark: <a href="https://www.melbournebioinformatics.org.au/tutorials/tutorials/assembly/assembly-protocol/" rel="nofollow">https://www.melbournebioinformatics.org.au/tutorials/tutorials/assembly/assembly-protocol/</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</guid>
	<pubDate>Tue, 24 Feb 2015 20:23:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</link>
	<title><![CDATA[A guide for complete R beginners :- Installing R packages]]></title>
	<description><![CDATA[<p>Part of the reason R has become so popular is the vast array of packages available at the <a href="http://cran.r-project.org/" target="_blank">cran</a> and <a href="http://www.bioconductor.org/" target="_blank">bioconductor</a> repositories. In the last few years, the number of packages has grown <a href="http://blog.revolutionanalytics.com/2010/09/what-can-other-languages-learn-from-r.html" target="_blank">exponentially</a>!</p><p>This is a short post giving steps on how to actually install R packages. Let&rsquo;s suppose you want to install the <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> package. Well nothing could be easier. We just fire up an R shell and type:<br /><code><br />&gt; install.packages("ggplot2")</code></p><p>In theory the package should just install, however:</p><ul>
<li>if you are using Linux and don&rsquo;t have root access, this command won&rsquo;t work.</li>
<li>you will be asked to select your local mirror, i.e. which server should you use to download the package.</li>
</ul><h4>Installing packages without root access</h4><p>First, you need to designate a directory where you will store the downloaded packages. On my machine, I use the directory <code>/data/Rpackages/</code> After creating a package directory, to install a package we use the command:<br /><code><br />&gt; install.packages("ggplot2"</code><code>, lib="/data/Rpackages/")<br />&gt; library(ggplot2, lib.loc="/data/Rpackages/")<br /></code></p><p>It&rsquo;s a bit of a pain having to type <code>/data/Rpackages/</code> all the time. To avoid this burden,&nbsp; we create a file <code>.Renviron</code> in our home area, and add the line <code>R_LIBS=/data/Rpackages/</code> to it. This means that whenever you start R, the directory <code>/data/Rpackages/</code> is added to the list of places to look for R packages and so:</p><p><code>&gt; install.packages("ggplot2"</code><code>)<br />&gt; library(ggplot2)</code></p><p>just works!</p><h4>Setting the repository</h4><p>Every time you install a R package, you are asked which repository R should use. To set the repository and avoid having to specify this at every package install, simply:</p><ul>
<li>create a file <code>.Rprofile</code> in your home area.</li>
<li>Add the following piece of code to it:</li>
</ul><p><code><br />cat(".Rprofile: Setting UK repositoryn")<br />r = getOption("repos") # hard code the UK repo for CRAN<br />r["CRAN"] = "http://cran.uk.r-project.org"<br />options(repos = r)<br />rm(r)<br /></code></p><p>I found this tip in a stackoverflow <a href="http://stackoverflow.com/questions/1189759/expert-r-users-whats-in-your-rprofile/1189826#1189826" target="_blank">answer </a>.</p>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41604/synteny-and-rearrangement-identifier-syri</guid>
	<pubDate>Tue, 05 May 2020 10:37:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41604/synteny-and-rearrangement-identifier-syri</link>
	<title><![CDATA[Synteny and Rearrangement Identifier (SyRI)]]></title>
	<description><![CDATA[<p>SyRI is a comprehensive tool for predicting genomic differences between related genomes using whole-genome assemblies (WGA). The assemblies are aligned using whole-genome alignment tools, and these alignments are then used as input to SyRI. SyRI identifies syntenic path (longest set of co-linear regions), structural rearrangements (inversions, translocations, and duplications), local variations (SNPs, indels, CNVs etc) within syntenic and structural rearrangements, and un-aligned regions.</p><p>Address of the bookmark: <a href="https://schneebergerlab.github.io/syri/" rel="nofollow">https://schneebergerlab.github.io/syri/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21830/research-associate-bioinformatics-job-position-in-indian-agricultural-statistics-research-institute-iasri</guid>
  <pubDate>Tue, 31 Mar 2015 20:45:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics job position in Indian Agricultural Statistics Research Institute (IASRI)]]></title>
  <description><![CDATA[
<p>Research Associate Bioinformatics job position in Indian Agricultural Statistics Research Institute (IASRI)</p>

<p>Qualification : Ph.D. in Bioinformatics/ Agricultural Statistics/ Statistics/ Computer Science/ Computer Application/ Life Science/ Biotechnology/ Agricultural Science or equivalent. Desirable: Knowledge of Statistical and Computational Genomics/ Proteomics/ Bioinformatics OR Post-Graduation in Bioinformatics/ Agricultural Statistics/ Statistics/ Computer Science/ Computer Application/ Life Science/ Biotechnology/ Agricultural Science or equivalent with 1st Division or 60% marks or equivalent with at least two years of research experience. Desirable:Expertise on use of various software/ tool.</p>

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

<p>Emoluments for RA: Consolidated Rs. 24000/- per month + 30% HRA for Ph.D holders and consolidated Rs. 23000/- per month + 30% HRA for Master Degree.</p>

<p>Age Limit : Age should not be more than 40 years for the post of Research associate (5 years relaxation for SC/ST/ women candidates) and 3 years for OBC candidates as on date of interview.<br />How to apply</p>

<p>Interested candidates are invited to appear for Walk-In interview at Indian Agricultural Statistics Research Institute, Library Avenue, Pusa, New Delhi -110012, along with filled in application form , all the original certificates from matriculation onwards, Ph.D. or M.Sc. certificate (as the case may be) must be produced at the time of interview in either original or provisional, Bio-Data, attested copies of all experience certificates, testimonials etc., one passport size photograph and one set of the self-attested photocopies of all the required certificates from matriculation onwards and an attested copy of recent passport size photograph pasted onto the application form. Walk-in interview will be held on 16th April, 2015 at 10:30 a.m.</p>

<p>Click Here for Job Details &amp; Application Form http://www.iasri.res.in/employment/employment.htm</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42633/protocol-for-de-novo-genome-assembly-using-illumina-reads</guid>
	<pubDate>Sat, 16 Jan 2021 21:42:11 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42633/protocol-for-de-novo-genome-assembly-using-illumina-reads</link>
	<title><![CDATA[Protocol for De novo Genome Assembly using Illumina Reads]]></title>
	<description><![CDATA[<p>In this protocol, we address and describe the de novo assembly method for small to medium-sized genomes.</p><p><strong>What is de novo genome assembly?<br /></strong>The method of taking a large number of short DNA sequences and placing them back together to create a reflection of the original chromosomes from which the DNA originated relates to genome assembly. No previous knowledge of the source DNA sequence length, structure or composition is inferred by De novo genome assemblies. The DNA of the target organism is split up into millions of tiny parts and read on a sequencing computer in a genome sequencing experiment. Depending on the sequencing system used, these "reads" range from 20 to 1000 nucleotide base pairs (bp) in length. Usually, length reads of 36 - 150 bp are produced for Illumina style short read sequencing. These reads can be either &ldquo;single ended&rdquo; as described above or &ldquo;paired end.&rdquo;</p><p><strong>Why genome assembly?</strong><br />In basic research into why and how they live, as well as in applied topics, identifying the DNA sequence of an organism is useful. Awareness of a DNA sequence may be useful in virtually any biological research because of the relevance of DNA to living things. For example, it may be used in medicine to classify, diagnose and eventually improve genetic disorder therapies. Similarly, pathogens study can lead to treatments for infectious diseases.</p><p><strong>Raw NGS data</strong><br />Reads can be saved as a Fasta file as text or in a FastQ file with their attributes.&nbsp;FastQ is the most common read file format since this is what the Illumina sequencing pipeline creates. This will henceforth be the subject of our conversation.</p><p><strong>In a nutshell the protocol:</strong> <br />Get the sequence file(s) read from the sequencing machine (s). <br />Look at the readings - have an idea of what you have and what the standard is like. <br />If required, raw data cleanup/quality trimming. <br />Choose an adequate parameter set for assembly. <br />Assemble the data into scaffolds/contigs. <br />Examine the assembly performance and determine the efficiency of the assembly.</p><p><strong>Read Quality Control:</strong><br />Check the qualiy with fastQC.<br />Script<br />https://bioinformaticsonline.com/snippets/view/42540/install-fastqc-using-conda</p><p>Quality trimming/cleanup of read files.<br />This function trims adapters, barcodes and other contaminants from the reads.<br />Script<br />https://bioinformaticsonline.com/snippets/view/42542/trimmomatic-command</p><p><strong>Genome Assembly:</strong><br />The object of this portion of the protocol is to explain the method of assembling the reads trimmed by quality into draft contigs.</p><blockquote><p>spades.py -1 illumina_R1.fastq.gz -2 illumina_R2.fastq.gz --careful --cov-cutoff auto -o result_of_spades_assembly_all_illumina</p></blockquote><p>A significant range of short-read assemblers are available. Everyone with strengths and disadvantages of their own. <br /><em>Some of the assemblers available include:</em><br />Velvet<br />SOAP-denovo<br />MIRA<br />ALLPATHS</p><p>Next step is to assess the suitability and what to do with a draft package of contiguous details for the remainder of the study now.&nbsp;Few stuff you can note about the contigs you just created:&nbsp;They're the draft Contigs. Any mis-assemblies can occur.</p><p><strong>Mis-assembly checking and assembly metric tools:</strong><br />QUAST - Quality assessment tool for genome assembly http://bioinf.spbau.ru/quast<br />Mauve assembly metrics - http://code.google.com/p/ngopt/wiki/How_To_Score_Genome_Assemblies_with_Mauve<br />InGAP-SV - https://sites.google.com/site/nextgengenomics/ingap and http://ingap.sourceforge.net/<br />inGAP is also useful for finding structural variants between genomes from read mappings.</p><p><strong>Genome finishing tools:</strong><br />Semi-automated gap fillers:<br />Gap filler - http://www.baseclear.com/landingpages/basetools-a-wide-range-of-bioinformatics-solutions/gapfiller/</p><p>IMAGE (V2) - http://sourceforge.net/apps/mediawiki/image2/index.php?title=Main_Page</p><p><strong>Genome visualisers and editors:</strong><br />Artemis - http://www.sanger.ac.uk/resources/software/artemis/<br />IGV - http://www.broadinstitute.org/igv/</p><p><strong>Automated and semi automated annotation tools:</strong><br />Prokka - https://github.com/tseemann/prokka<br />RAST - http://www.nmpdr.org/FIG/wiki/view.cgi/FIG/RapidAnnotationServer<br />JCVI Annotation Service - http://www.jcvi.org/cms/research/projects/annotation-service/</p><p><strong>Frequent command use for the analysis are at:</strong></p><p>https://bioinformaticsonline.com/blog/view/38765/list-of-tools-frequently-used-while-genome-assembly<br />https://bioinformaticsonline.com/pages/view/42275/frequent-parameters-for-bioinformatics-tools</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/33629/list-of-universities-offering-bachelor-master-or-phd-bioinformatics-degree-in-malaysia</guid>
	<pubDate>Thu, 22 Jun 2017 01:34:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/33629/list-of-universities-offering-bachelor-master-or-phd-bioinformatics-degree-in-malaysia</link>
	<title><![CDATA[List of universities offering Bachelor,  Master or PhD bioinformatics degree in Malaysia]]></title>
	<description><![CDATA[<p>Bioinformatics is a newly emerging interdisciplinary research area, which may be defined as the ―interface between biological and computational sciences. Most of the Bioinformatics work that is done can be described as analyzing biological data, although a growing number of projects deal with the organization of biological information. The global Bioinformatics industry has grown at a double-digit growth rate in the past and is expected to follow the same pattern in the next four years. US remains the largest market in the world, but Asia-Pacific countries, particularly India and China, are witnessing the fastest growth and are anticipated to emerge as the dominating forces in future. The Comparison of Bioinformatics Industry between Malaysia, India and other countries&nbsp;are discussed in this&nbsp;<span>http://ijbssnet.com/journals/Vol.%202_No._10;_June_2011/11.pdf paper.</span></p><p>Bioinformatics is full of opportunities. The sector is poised to open new avenues for the other related sectors also. But the biggest opportunity area in the Bioinformatics market will be in the drug discovery sector. Reduction of both the cost and time taken to discover a new drug due to fast development in the Bioinformatics tools and software zone is also making drug discovery an attractive field to venture in. Malaysian bioinformatics growth and future are discuss in this https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2723929/ paper.&nbsp;Keeping all such inportance in mind, following universities in Malaysia offering bioinformatics cources:</p><p><strong>3 program(s) at AIMST University<strong>, Malaysia</strong></strong></p><p>Master of Science in Biotechnology (MSc) - Bioinformatics by Research</p><p>Master of Science (M.Sc) in Medical Microbiology (Bioinformatics) by Research</p><p>Doctor of Philosophy in Biotechnology (PhD) - Bioinformatics by Research</p><p>&nbsp;</p><p><strong>1 program(s) at INTI International University and Colleges<strong>, Malaysia</strong></strong></p><p>American Degree Transfer Program (Biosciences) in Bioinformatics</p><p>&nbsp;</p><p><strong>3 program(s) at Management and Science University (MSU)<strong>, Malaysia</strong></strong></p><p>Master in Bioinformatics (By Research)</p><p>PhD in Bioinformatics</p><p>Bachelor in Bioinformatics (Hons)</p><p>&nbsp;</p><p><strong>1 program(s) at Multimedia University (MMU)<strong>, Malaysia</strong></strong></p><p>Bachelor of Science (Honours) Bioinformatics</p><p>&nbsp;</p><p><strong>1 program(s) at Universiti Industri Selangor (UNISEL) Bestari Jaya Campus<strong>, Malaysia</strong></strong></p><p>Bachelor of Bioinformatics (Hons)</p><p>&nbsp;</p><p><strong>2 program(s) at Universiti Malaysia Sabah (UMS)<strong>, Malaysia</strong></strong></p><p>PhD - Doctor of Philosophy in Bioinformatics (By Research)</p><p>MSc - Master of Science in Bioinformatics (By Research)</p><p>&nbsp;</p><p><strong>6 program(s) at Universiti Putra Malaysia (UPM)<strong>, Malaysia</strong></strong></p><p>MSc - Master of Science in Bioinformatics by Research</p><p>Master of Science in Bioinformatics and System Biology by Research</p><p>Master of Science (M.Sc) in Bioinformatics and Systems Biology (With Thesis)</p><p>PhD - Doctor of Philosophy in Bioinformatics by Research</p><p>PhD - Doctor of Philosophy in Bioinformatics and Systems Biology (With Thesis)</p><p>PhD - Doctor of Philosophy in Bioinformatics and System Biology by Research</p><p>&nbsp;</p><p><strong>1 program(s) at Universiti Selangor (UNISEL)<strong>, Malaysia</strong></strong></p><p>Bachelor of Bioinformatics (Hons)</p><p>&nbsp;</p><p><strong>3 program(s) at Universiti Teknologi Malaysia (UTM)<strong>, Malaysia</strong></strong></p><p>M.Sc - Master of Science (Bioscience) in Bioinformatics Research Group (BIRG) By Research</p><p>PhD - Doctor of Philosophy (Bioscience) in Bioinformatics Research Group (BIRG) By Research</p><p>Bachelor of Computer Science (BioInformatics)</p><p>&nbsp;</p><p><strong>4 program(s) at University of Malaya (UM)<strong>, Malaysia</strong></strong></p><p>MSc - Master of Science in Bioinformatics by Research</p><p>Master in Bioinformatics by Coursework</p><p>PhD - Doctor of Philosophy in Bioinformatics by Research</p><p>Bachelor of Science (BSc) in Bioinformatics</p><p>&nbsp;</p><p><strong>3 program(s) at Perdana University<strong>, Malaysia</strong></strong></p><p>Master in Bioinformatics (By Research)</p><p>PhD in Bioinformatics</p><p>Bachelor in Bioinformatics (Hons)</p><p>&nbsp;</p><p><strong>3 program(s) at&nbsp;Monash University, Malaysia</strong></p><p>Master in Bioinformatics (By Research)</p><p>PhD in Bioinformatics</p><p>Bachelor in Bioinformatics (Hons)</p><p>&nbsp;</p><p><span>The real bioinformatics scope lies if there are research labs which work in this field. One has to take account of that. If so then try to get information of those labs and visit them to get a hang of the work they pursue. For detail Bioinformatics in Malaysia: Hope, Initiative, Effort, Reality, and Challenges are discussed in&nbsp;<span>https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2723929/ paper.</span></span></p>]]></description>
	<dc:creator>sahabuddin</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43315/genome-assembly-workshop-2020</guid>
	<pubDate>Wed, 25 Aug 2021 04:30:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43315/genome-assembly-workshop-2020</link>
	<title><![CDATA[Genome Assembly Workshop 2020]]></title>
	<description><![CDATA[<p><span>Our team offers custom bioinformatics services to academic and private organizations. We have a strong academic background with a focus on cutting edge, open source software. We replicate standard analysis pipelines (best practices) when appropriate, and/or develop novel applications and pipelines when needed, however we always emphasize biological interpretation of the data.</span></p>
<p><span>More at&nbsp;https://ucdavis-bioinformatics-training.github.io/</span></p><p>Address of the bookmark: <a href="https://ucdavis-bioinformatics-training.github.io/2020-Genome_Assembly_Workshop/snakemake/snakemake_intro" rel="nofollow">https://ucdavis-bioinformatics-training.github.io/2020-Genome_Assembly_Workshop/snakemake/snakemake_intro</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21685/uiar-short-term-trainingfinal-year-dissertation-project-in-life-sciencesbioinformaticsbiotech</guid>
  <pubDate>Mon, 16 Mar 2015 23:56:25 -0500</pubDate>
  <link></link>
  <title><![CDATA[UIAR Short-Term Training/Final Year Dissertation Project in Life Sciences/Bioinformatics/Biotech]]></title>
  <description><![CDATA[
<p>Short-term training/Final year dissertation project</p>

<p>Candidates desirous of doing a short-term training / final year dissertation project for MSc (Life Sciences/Bioinformatics/Biotechnology or any science discipline) at UIAR Biophysics and Bioinformatics department may please drop an email atanju@iiar.res.in along with their resume.</p>

<p>Selected candidates will be further intimated. There will be a fees charged for doing the project at UIAR. The projects will be experimental or computational or involve both.</p>

<p>The training scope will be in the following areas but not limited to:</p>

<p>Bioinformatics analysis, Docking and Virtual screening, Molecular Dynamics simulation, Cloning, expression and purification of proteins, Biophysical and Biochemical characterisation of proteins, Crystallization and Structural Studies.</p>

<p>Advertisement: www.iiar.res.in/?q=node/450</p>
]]></description>
</item>

</channel>
</rss>