<?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/26309?offset=940</link>
	<atom:link href="https://bioinformaticsonline.com/related/26309?offset=940" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/27473/project-assistantjunior-research-fellow-position-at-centre-of-biomedical-research-sanjay-gandhi-postgraduate-institute-of-medical-sciences-campus-lucknow</guid>
  <pubDate>Mon, 23 May 2016 01:31:29 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Assistant/Junior Research Fellow Position at  Centre of Biomedical Research, Sanjay Gandhi Postgraduate Institute of Medical Sciences Campus, Lucknow.]]></title>
  <description><![CDATA[
<p>Applications are invited from eligible candidates willing to join in a Department of Science and Technology (DST) project entitled “"Mapping neural regions involved in reading process in skilled adult Deaf reader: From neuroimaging perspective (functional Magnetic Resonance Imaging (fMRI) and Diffuse Tensor Imaging (DTI.)" as a Project Assistant/Junior Research Fellow (JRF) at Centre of Biomedical Research, Sanjay Gandhi Postgraduate Institute of Medical Sciences Campus, Lucknow.</p>

<p>Essential Qualification:</p>

<p>1. Master's degree in Bioinformatics / Computer Applications / Cognitive Science /Neuroscience/ Neuropsychology or equivalent. (Advantage will be given to NET JRF qualified candidate) Additional</p>

<p>Desirable Skills:</p>

<p>1) Programming skills (e.g., C++, Matlab, Python) 2) Experience/competent in working Window and Linux based programme.</p>

<p>Please mail your CV and covering letter to dr.uttam.kumar@gmail.com.</p>

<p>To know more about lab works please visit http://uttambrainlab.co.in/lab/.</p>

<p>Last date: 15/06/16</p>

<p>Advertisement: http://cbmr.res.in/wp-content/uploads/2016/05/Advertisement-19-5-2016.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/27799/bbmapbbtools-package-multipurpose-tool-designed-for-converting-reads-or-other-nucleotide-data-between-different-formats</guid>
	<pubDate>Mon, 13 Jun 2016 05:47:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/27799/bbmapbbtools-package-multipurpose-tool-designed-for-converting-reads-or-other-nucleotide-data-between-different-formats</link>
	<title><![CDATA[BBMap/BBTools package: Multipurpose tool designed for converting reads or other nucleotide data between different formats.]]></title>
	<description><![CDATA[<div id="post_message_148585"><a href="https://sourceforge.net/projects/bbmap/" target="_blank">Reformat</a>is a member of the <a href="https://sourceforge.net/projects/bbmap/" target="_blank">BBMap/BBTools package</a>. It is a multipurpose tool designed for converting reads or other nucleotide data between different formats. It supports, and can inter-convert:<br /> <br /> fastq<br /> fasta<br /> fasta+qual<br /> sam<br /> scarf (an old Illumina format)<br /> bam (if samtools is installed)<br /> gzip<br /> zip<br /> ascii-33 (sanger)<br /> ascii-64 (old Illumina)<br /> paired files<br /> interleaved files<br /> <br /> It is multithreaded and can process data at over 500 megabytes per second, and can accept streams from standard in and write to standard out, allowing it to be easily dropped into the middle of a pipeline for format conversion. Reformat autodetects formats based on file extensions and content, making it very easy to use; and the autodetection can be overridden, allowing flexibility for people who don't like to follow naming conventions, or out-of-spec fastq files with qualities values like -17 or 120.<br /> <br /> The program has been gradually expanded, and can now perform various other functions. None of these will break pairing, if the input is paired.<br /> <br /> Quality trimming (either or both ends)<br /> Quality filtering<br /> Fixed-length trimming<br /> Generation of histograms (base composition, quality, etc)<br /> Subsampling (to a fraction of input reads, or an exact number of reads or bases)<br /> Changing fasta line-wrapping length<br /> Reverse-complementing (all reads or only read 2)<br /> Adding /1 and /2 suffix to read names<br /> GC-content filtering<br /> Length-filtering<br /> Testing for corrupted interleaved files<br /> <br /> Reformat is compatible with any platform that supports Java 1.7 or higher. It also has a bash shellscript for simpler invocation. Typical usage examples:<br /> <br /> Reformat fastq into fasta:<br /> <strong>reformat.sh in=x.fq out=y.fa</strong><br /> <br /> Interleave paired reads:<br /> <strong>reformat.sh in1=x1.fq in2=x2.fq out=y.fq</strong><br /> <br /> Note - you can actually use a shortcut if paired read files have the same name with a 1 and a 2. This is equivalent to the above command:<br /> <strong>reformat.sh in=x#.fq out=y.fq</strong><br /> <br /> De-interleave reads:<br /> <strong>reformat.sh in=x.fq out1=y1.fq out2=y2.fq</strong><br /> <br /> Verify that interleaving appears correct, assuming Illumina namimg conventions:<br /> <strong>reformat.sh in=x.fq vint</strong><br /> <br /> Convert ASCII-33 to ASCII-64:<br /> <strong>reformat.sh in=x.fq out=y.fq qin=33 qout=64</strong><br /> <br /> Quality-trim paired reads to Q10 on the left and right ends and discard reads shorter than 50bp after trimming:<br /> <strong>reformat.sh in1=x1.fq in2=x2.fq out1=y1.fq out2=y2.fq outsingle=singletons.fq qtrim=rl trimq=10 minlength=50</strong><br /> <br /> Subsample 10% of the first 20000 pairs in an interleaved file:<br /> <strong>reformat.sh in=x.fq out=y.fq reads=20000 samplerate=0.1 int=t</strong><br /> (in this case "int=t" overrides interleaving autodetection, to ensure reads are treated as pairs)<br /> <br /> Pipe in a gzipped sam file and pipe out fasta:<br /> <strong>reformat.sh in=stdin.sam.gz out=stdout.fa</strong><br /> <br /> Reverse-complement reads:<br /> <strong>reformat.sh in=x.fq out=y.fq rcomp</strong><br /> <br /> For reformatting a file with very long sequences, Reformat will need more memory; just add the additional flag "-Xmx2g". For example, to change the line-wrapping length on the human genome (which has individual sequences over 200Mbp long) to 70 characters:<br /> <strong>reformat.sh -Xmx2g in=HG19.fa.gz out=HG19_wrapped.fa.gz fastawrap=70</strong><br /> <br /> For additional functions, please run the shellscript with no arguments, or just read it with a text editor. If you have any questions, please post them in this thread.<br /> <br /> For people using a non-bash terminal, you may need to type "bash reformat.sh" instead of just "reformat.sh".<br /> For users of Windows or other platforms that do not support bash shellscripts, replace "reformat.sh" with "java -ea -Xmx200m /path/to/bbmap/current/ jgi.ReformatReads"<br /> for example,<br /> <strong>java -ea -Xmx200m C:\bbmap\current\ jgi.ReformatReads in=x.fq out=y.fa</strong><br /> <br /> Reformat can be downloaded with BBTools here:<br /> <a href="https://sourceforge.net/projects/bbmap/" target="_blank">https://sourceforge.net/projects/bbmap/</a></div>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/2518/genome-browsers</guid>
	<pubDate>Fri, 16 Aug 2013 19:04:47 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/2518/genome-browsers</link>
	<title><![CDATA[Genome Browsers]]></title>
	<description><![CDATA[<p>Genome Browser is the platform/database used for searching and retreiving sequences and annotation of genomes belong to various eukaryotes, prokaryotes, etc.</p><p>Following are the weblink for different available browsers:</p><p><a href="http://www.ensembl.org/index.html">http://www.ensembl.org/index.html</a></p><p><a href="http://ensemblgenomes.org/">http://ensemblgenomes.org/</a></p><p><a href="http://genome.ucsc.edu/">http://genome.ucsc.edu/</a></p><p><a href="http://www.ncbi.nlm.nih.gov/genome">http://www.ncbi.nlm.nih.gov/genome</a></p><p><a href="http://www.ebi.ac.uk/genomes/">http://www.ebi.ac.uk/genomes/</a></p><p><a href="http://flybase.org/">http://flybase.org/</a></p><p><a href="http://cmr.jcvi.org/tigr-scripts/CMR/CmrHomePage.cgi">http://cmr.jcvi.org/tigr-scripts/CMR/CmrHomePage.cgi</a></p><p><a href="http://www.sanger.ac.uk/resources/databases/">http://www.sanger.ac.uk/resources/databases/</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28879/projects-opening-at-nbagr</guid>
  <pubDate>Wed, 24 Aug 2016 04:13:13 -0500</pubDate>
  <link></link>
  <title><![CDATA[Projects opening at NBAGR]]></title>
  <description><![CDATA[
<p>ICAR - NATIONAL BUREAU OF ANIMAL GENETIC RESOURCES</p>

<p>Karnal -132001 (Haryana)</p>

<p>A walk-in-Interview is proposed to be held at National Bureau of Animal Genetic Resources, Karnal (Haryana)-132001 at 10:30 AM on 05.09.2016 for the selection of Three Research Associate &amp; One Young Professional - II as per details given below:</p>

<p>Name of the Scheme / Project: Center for Agricultural Bioinformatics. The post duration is Upto 31.032017 or earlier &amp; Co-terminus with the project.</p>

<p>Research Associate (Three posts)</p>

<p>Date &amp; Time of Interview: 10.30 A.M. on 05.09.2016</p>

<p>Essential Qualifications: PhD degree in any one of discipline/Subject Biotechnology/ Animal Genetics and Breeding/ Biochemistry/ Bioinformatics/Molecular Genetics OR Master’s degree in any one of above mentioned discipline/Subject with 4 years/5 years of Bachelor’s degree having 1st division or 60% marks or equivalent overall grade point average, with at least two years of research experience as evidenced from Fellowship/Associateship</p>

<p>Desirable Qualifications: Experience in Database/Next Generation Sequencing Data analysis for 02 RA posts or working experience in molecular biology, gene expression data analysis, SNP genotyping and sequence data analysis, functional gene characterization for 01 RA post.</p>

<p>Young Professionals II One position</p>

<p>Date &amp; Time of Interview: 10.30 A.M. on 05.09.2016</p>

<p>Essential: B. Tech or M.Tech. in Bioinformatics / Computer Science / Computer Application.</p>

<p>Desirable: Experience in Linux, MySQL, Java, C++/ PHP/ PERL R based data analysis and application development in Bioinformatics.</p>

<p>More Info : http://14.139.252.116/ADvertisementforCabinScheme.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/27927/research-assistant-bioinformatics-at-andhra-university</guid>
  <pubDate>Sat, 18 Jun 2016 18:39:09 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Assistant Bioinformatics at Andhra University]]></title>
  <description><![CDATA[
<p>Advt. No. AUMLR/BIF/ RA /6-2016 <br />Research Assistant Job Position in Andhra University on temporary basis <br />No. of Post : 01<br />Eligibility : Applicants who have completed their Post Graduate degree in Bioinformatics.<br />Desirable : Undergone traineeship in BIF; at least one publication in Bioinformatics. <br />Stipend : A monthly stipend of Rs. 22,000/- + HRA (HRA is applicable only for NET qualified candidates)<br />How to apply<br />Applications on plain paper, stating the name, address, date of birth, educational qualifications and experiences, and Institute, along with attested photocopies of mark sheets and certificates, should be submitted to K. UMADEVI, Coordinator, BIF Programme, Department of Marine Living Resources, Andhra University, Visakhapatnam-530 003, Andhra Pradesh, on or before 15th July, 2016. </p>

<p>Candidates are required to appear for an interview, with all the necessary certificates in original along with a set of attested copies in the office of the Principal, AU College of Science &amp; Technology, Andhra University, Visakhapatnam. Applications may be sent by Email to andhrauniv.btisnet@nic.in / katruumadevi@gmail.com.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28272/bioinformatics-openings-at-icgeb-new-delhi-india</guid>
  <pubDate>Mon, 04 Jul 2016 01:04:05 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics openings at ICGEB NEW DELHI, INDIA]]></title>
  <description><![CDATA[
<p>Applications are invited for:</p>

<p>ICGEB NEW DELHI, INDIA</p>

<p>Biotechnology research positions</p>

<p>Projects include:</p>

<p>a) protein structure determination<br />b) malaria parasite biology<br />c) genomics and metagenomics<br />d) molecular and cellular biology<br />e) bioinformatics and computational biology</p>

<p>Minimum eligibility for students who have already obtained a MSc:</p>

<p>1) INSPIRE award for PhD<br />2) SPM award for PhD<br />3) CSIR/DBT/DST JRF for PhD</p>

<p>Applicants should submit their curriculum vitae by email to: sb.icgeb@gmail.com by 30 August 2016</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39244/chromomap-an-r-package-for-interactive-visualization-and-annotation-of-chromosomes</guid>
	<pubDate>Fri, 12 Apr 2019 05:30:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39244/chromomap-an-r-package-for-interactive-visualization-and-annotation-of-chromosomes</link>
	<title><![CDATA[chromoMap-An R package for Interactive Visualization and Annotation of Chromosomes]]></title>
	<description><![CDATA[<p>Provides interactive, configurable and elegant graphics visualization of the chromosomes or chromosome regions of any living organism allowing users to map chromosome elements (like genes, SNPs etc.) on the chromosome plot. It introduces a special plot viz. the "chromosome heatmap" that, in addition to mapping elements, can visualize the data associated with chromosome elements (like gene expression) in the form of heat colors which can be highly advantageous in the scientific interpretations and research work. The package provide multiple features like visualizing multiple sets, chromosome heat-maps, group annotations, adding hyperlinks, and labelling. The plots can be saved as HTML documents that can be customized and shared easily. In addition, you can include them in R Markdown or in R 'Shiny' applications.</p><p>Address of the bookmark: <a href="https://cran.r-project.org/web/packages/chromoMap/vignettes/chromoMap.html" rel="nofollow">https://cran.r-project.org/web/packages/chromoMap/vignettes/chromoMap.html</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44585/dram-distilled-and-refined-annotation-of-metabolism</guid>
	<pubDate>Sat, 06 Jul 2024 04:19:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44585/dram-distilled-and-refined-annotation-of-metabolism</link>
	<title><![CDATA[DRAM: Distilled and Refined Annotation of Metabolism]]></title>
	<description><![CDATA[<p><span>DRAM (Distilled and Refined Annotation of Metabolism) is a tool for annotating metagenomic assembled genomes and&nbsp;</span><a href="https://github.com/simroux/VirSorter">VirSorter</a><span>&nbsp;identified viral contigs. DRAM annotates MAGs and viral contigs using&nbsp;</span><a href="https://www.kegg.jp/">KEGG</a><span>&nbsp;(if provided by the user),&nbsp;</span><a href="https://www.uniprot.org/">UniRef90</a><span>,&nbsp;</span><a href="https://pfam.xfam.org/">PFAM</a><span>,&nbsp;</span><a href="http://bcb.unl.edu/dbCAN2/">dbCAN</a><span>,&nbsp;</span><a href="https://www.ncbi.nlm.nih.gov/genome/viruses/">RefSeq viral</a><span>,&nbsp;</span><a href="http://vogdb.org/">VOGDB</a><span>&nbsp;and the&nbsp;</span><a href="https://www.ebi.ac.uk/merops/">MEROPS</a><span>&nbsp;peptidase database as well as custom user databases. DRAM is run in two stages. First an annotation step to assign database identifiers to gene, and then a distill step to curate these annotations into useful functional categories. Additionally, viral contigs are further analyzed during to identify potential AMGs. This is done via assigning an auxiliary score and flags representing the confidence that a gene is both metabolic and viral.</span></p>
<p><img src="https://genomicsaotearoa.github.io/metagenomics_summer_school/figures/ex14_DRAM_annotation_rank.png" alt="image" style="border: 0px;"></p>
<p>Ref&nbsp;https://genomicsaotearoa.github.io/metagenomics_summer_school/day4/ex15_gene_annotation_part3/#overview-of-drampy-annotate-output&nbsp;</p><p>Address of the bookmark: <a href="https://github.com/WrightonLabCSU/DRAM" rel="nofollow">https://github.com/WrightonLabCSU/DRAM</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/28449/aravind-j-shankar-gets-all-india-rank-1-in-binc-2016</guid>
	<pubDate>Tue, 19 Jul 2016 05:19:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/28449/aravind-j-shankar-gets-all-india-rank-1-in-binc-2016</link>
	<title><![CDATA[Aravind J Shankar gets all India rank 1 in BINC, 2016]]></title>
	<description><![CDATA[<p>Aravind J Shankar, a bioinformatics graduate of SASTRA University, has secured the all India rank 1 in the Bioinformatics National Certification (BINC) 2016, organised by the Department of Biotechnology, Government of India.</p><p>The BINC is a nationwide examination aimed at certifying professionals in bioinformatics and tests their theoretical and practical knowledge across three phases of examination. He is entitled to receive a DBT research fellowship leading to a Ph.D. from any premier research institute in India.</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/28563/find-predicted-crispr-sites-using-ensembl</guid>
	<pubDate>Wed, 27 Jul 2016 03:15:59 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/28563/find-predicted-crispr-sites-using-ensembl</link>
	<title><![CDATA[Find predicted CRISPR sites using Ensembl]]></title>
	<description><![CDATA[<p>Did you know that you can now use Ensembl to help design your CRISPR experiments? Just turn on the brand new track that shows you the CRISPR sites that have been predicted by the WGE group (<a href="http://www.sanger.ac.uk/science/tools/wge" target="_blank">http://www.sanger.ac.uk/science/tools/wge</a>)</p><p><img src="http://www.ensembl.info/wp-content/uploads/2016/07/Screen-Shot-2016-07-22-at-13.04.33.png" width="1400" height="544" alt="image" style="border: 0px;"></p><p>Find out more on our blog:<br /><a href="http://www.ensembl.info/blog/2016/07/26/find-predicted-crispr-sites-using-ensembl/" target="_blank">http://www.ensembl.info/&hellip;/find-predicted-crispr-sites-usin&hellip;/</a></p><p>&nbsp;</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>