<?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/36827?offset=20</link>
	<atom:link href="https://bioinformaticsonline.com/related/36827?offset=20" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22073/bcil-bioinformatics-bitp-application</guid>
	<pubDate>Fri, 17 Apr 2015 04:34:56 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22073/bcil-bioinformatics-bitp-application</link>
	<title><![CDATA[BCIL Bioinformatics BITP Application !!]]></title>
	<description><![CDATA[<p>BCIL Bioinformatics BITP Application Form 2015 logoGrab latest Information! Biotech Consortium India Limited has announced a notification for offering admission in Biotech Industrial Training Program. The organization has invited online application from 7th April 2015 BCIL Admission 2015. BCIL has conducted an entrance exam which is scheduled on 20th June 2015. Candidates those who are looking for this program just go for it and don&rsquo;t miss this opportunity.<br /><br />To apply for Biotech Industrial Training Programme the candidates should have 50% marks in B.Tech/BE/M.Tech Degree in Bio technology, bio process technology and other related disciplines form any recognized institution. The organization has decided application fee of Rs.500/- for all candidates and that should be paid through demand draft. Applicants who satisfy the organization requirement, they can take their steps forward.<br /><br />Candidates should submit the online application before 10th May 2015. After registering the online application you need to take the hard copy of it and send through post. Print out of this application should be reached before 15th May 2015. All the latest updates like selection process, exam syllabus and other related information are updated soon at the main URL of the department and aspirants should keep in touch with this site. Further details of BCIL Bioinformatics BITP Application Form 2015 are explained below.<br /><br />Organization: Biotech Consortium India Limited<br /><br />Website URL: www.bcil.nic.in<br /><br />Location: New Delhi<br /><br />Course Name: Biotech Industrial Training Program<br /><br />Exam Name: BCIL Entrance Exam<br /><br />Educational Details: Applicants should complete their B.Tech/M.Tech/BE programs in Neuro- Science, Agricultural, Bio technology, bio process technology and other related disciplines having 50% aggregate from any authorized university.<br /><br />Application Fee: For all candidates application fee is Rs.500/- and it will be paid through Demand Draft drawn in favour of BCIL, New Delhi.<br /><br />How to Apply: Candidates who are willing to apply for this program they can apply through online mode. Then send the hard copy of registered application form to through post.<br /><br />Important Dates<br /><br />Opening Date of Submission Online Application Form: 7h April 2015<br /><br />Closing Date of Submission of Online Application Form: 10th May 2015<br /><br />Last Date of Receipt of Application Form: 15th May 2015<br /><br />Exam Date: 20th June 2015</p><p>More at http://bcil.nic.in/default.htm</p>]]></description>
	<dc:creator>Pranjali Yadav</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/22047/binc-sample-question-paper</guid>
	<pubDate>Thu, 16 Apr 2015 09:14:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/22047/binc-sample-question-paper</link>
	<title><![CDATA[BINC Sample Question Paper !!!]]></title>
	<description><![CDATA[<p>BINC sample question paper round TWO.</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/22047" length="1621" type="text/plain" />
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22388/perl-one-liner-basics</guid>
	<pubDate>Sun, 24 May 2015 09:28:33 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22388/perl-one-liner-basics</link>
	<title><![CDATA[Perl One liner basics !!]]></title>
	<description><![CDATA[<p>Perl has a ton of command line switches (see perldoc perlrun), but I'm just going to cover the ones you'll commonly need to debug code. The most important switch is -e, for execute (or maybe "engage" :) ). The -e switch takes a quoted string of Perl code and executes it. For example:<br /><br />$ perl -e 'print "Hello, World!\n"'<br />Hello, World!<br /><br />It's important that you use single-quotes to quote the code for -e. This usually means you can't use single-quotes within the one liner code. If you're using Windows cmd.exe or PowerShell, you must use double-quotes instead.<br /><br />I'm always forgetting what Perl's predefined special variables do, and often test them at the command line with a one liner to see what they contain. For instance do you remember what $^O is?<br /><br />$ perl -e 'print "$^O\n"'<br />linux<br /><br />It's the operating system name. With that cleared up, let's see what else we can do. If you're using a relatively new Perl (5.10.0 or higher) you can use the -E switch instead of -e. This turns on some of Perl's newer features, like say, which prints a string and appends a newline to it. This saves typing and makes the code cleaner:<br /><br />$ perl -E 'say "$^O"'<br />linux<br /><br />Pretty handy! say is a nifty feature that you'll use again and again.</p>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22567/rosalind-problem-solution-with-perl</guid>
	<pubDate>Tue, 09 Jun 2015 23:35:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22567/rosalind-problem-solution-with-perl</link>
	<title><![CDATA[Rosalind Problem Solution with Perl]]></title>
	<description><![CDATA[<p>Rosalind is a platform for learning bioinformatics and programming through problem solving. <a href="http://rosalind.info/problems/list-view/?location=bioinformatics-textbook-track">Take a tour</a> to get the hang of how Rosalind works.</p><p>Bioinformatics Textbook Track</p><p>Find more about Rosalind puzzle at http://rosalind.info/problems/list-view/?location=bioinformatics-textbook-track</p><p>I will provide solution of all the Rosalind problem with Perl for community.</p><p>Check out the right sidebar for more links ...</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/22961/bioscripts</guid>
	<pubDate>Sun, 28 Jun 2015 07:46:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/22961/bioscripts</link>
	<title><![CDATA[BioScripts]]></title>
	<description><![CDATA[<p>You are requested to please bookmark collection of bioinformatics tools, scripts, codes that can be pieced together in a very easy and flexible manner to perform both simple and complex bioinformatics tasks.</p>
<p>The next-generation sequencing included whole genome sequencing(WGS), transcriptome sequencing (whole cDNA sequencing, RNA-seq), digital gene expression sequencing (Tag-Seq), ChIP-Seq, and so on. And there are many sequencing platform to generate sequece, as well know Sanger/ABi(the frist generation), Solexa/illumina, SOLiD/ABi, 454/Roche. But thier sequence format is different, also they have different error type. High quality data is very important for further analysis or data mining. There are many pipeline for raw sequence quality analysis and control with few of process for reporting reads quality statistical details, trimming, filtering, and error correction. Please bookmarks them for the benefits of bioinformatics community.</p>
<p>https://code.google.com/p/biowiki/</p>
<p>https://code.google.com/p/ngs-pipeline/source/browse/#svn%2Ftrunk</p>
<p>NGSand Perl scripts https://code.google.com/hosting/search?q=NGS+perl&amp;projectsearch=Search+projects</p>
<p>NGS and Python scripts https://code.google.com/hosting/search?q=NGS+Python&amp;projectsearch=Search+projects</p><p>Address of the bookmark: <a href="https://code.google.com/hosting/search?q=bioinformatics&amp;sa=Search" rel="nofollow">https://code.google.com/hosting/search?q=bioinformatics&amp;sa=Search</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/42809/bioinformatics-in-africa-part2-kenya</guid>
	<pubDate>Sat, 06 Feb 2021 13:23:54 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/42809/bioinformatics-in-africa-part2-kenya</link>
	<title><![CDATA[Bioinformatics in Africa: Part2 - Kenya]]></title>
	<description><![CDATA[<p>International Livestock Research Institute (ILRI):</p><p>Under&nbsp; &nbsp;a&nbsp; &nbsp;NEPAD&nbsp; &nbsp;initiative,&nbsp; &nbsp;the&nbsp; &nbsp;Biosciences&nbsp; &nbsp;Eastern&nbsp; &nbsp;and&nbsp; &nbsp;Central&nbsp; &nbsp;Africa&nbsp; &nbsp;(BECA)&nbsp; (www.biosciencesafrica.org) was established at ILRI. BECA consists of a hub, regional nodes, and&nbsp; other affiliated laboratories and partner institutes. A state of the art joint Bioinformatics Platform&nbsp; (www.becabioinfo.org), whose overall goal is to provide a coherent and powerful bioinformatics&nbsp; infrastructure for use by all scientists in East and central Africa. The Platform goal requires both&nbsp; physical and intellectual developments that together provide researchers with access to diverse&nbsp; infrastructure in a wide&shy;area network, thereby addressing four important aspects of bioinformatics:&nbsp;</p><p>1) Science: bioinformatics tools for data integration and visualization, standardization of data&nbsp; formats and data analysis strategies, and distribution of analysis tasks over local&shy; and widearea networks are in development;&nbsp;</p><p>2)&nbsp; Bioinformatics Support Facility: provides assistance and custom programming to projects&nbsp; and those unable to establish a bioinformatics support function intrinsic to their project due&nbsp; to shortage of qualified personnel or lack of funding;&nbsp;</p><p>3) Hardware Platform: provide a powerful high performance computing platform capable of&nbsp; handling the largest analysis needs for projects;&nbsp;</p><p>4) Bioinformatics Training for East and central African scientists: While many Web&shy;based&nbsp; tools are available to the wet&shy;lab researcher, the Web is not well suited for tasks beyond&nbsp; single&shy;sequence annotation. Researchers need to become productive in a server&shy;based Unix&nbsp; environment with its wealth of scripting and automation tools. Even at an entry&shy;level, this&nbsp; can be an intimidating task if proper guidance is not available.</p><p>International&nbsp;Centre&nbsp;of&nbsp;Insect&nbsp;Physiology&nbsp;and&nbsp;Ecology&nbsp;(ICIPE): ICIPE&rsquo;s&nbsp;research&nbsp;focus&nbsp;is&nbsp;on&nbsp;insect&nbsp;biology,&nbsp;in&nbsp;order&nbsp;to&nbsp;improve&nbsp;the&nbsp;wellbeing&nbsp;of&nbsp;the&nbsp;peoples&nbsp;of&nbsp;the&nbsp; tropics&nbsp;through&nbsp;insect&nbsp;science.&nbsp;There&nbsp;is&nbsp;a&nbsp;commitment&nbsp;to&nbsp;utilise&nbsp;contemporary&nbsp;science&nbsp;in&nbsp;order&nbsp;to&nbsp; limit&nbsp;the&nbsp;impact&nbsp;of&nbsp;disease&nbsp;vectors,&nbsp;and&nbsp;agricultural&nbsp;pests.&nbsp;The&nbsp;understanding&nbsp;of&nbsp;the&nbsp;mechanisms&nbsp; associated&nbsp;with&nbsp;behaviour&nbsp;(e.g.&nbsp;attraction&nbsp;and&nbsp;repellency)&nbsp;is&nbsp;crucial.&nbsp;ICIPE&nbsp;seeks&nbsp;to&nbsp;enhance&nbsp;its&nbsp; bioinformatics&nbsp;capacity&nbsp;in&nbsp;order&nbsp;to&nbsp;support&nbsp;data&nbsp;from&nbsp;various&nbsp;EST&nbsp;projects&nbsp;designed&nbsp;to&nbsp;gain&nbsp;insights&nbsp; into&nbsp;the&nbsp;insect&nbsp;ecology&nbsp;and&nbsp;plant&nbsp;pathogen&nbsp;interactions&nbsp;though&nbsp;studies&nbsp;of&nbsp;metabolic&nbsp;pathways&nbsp; associated&nbsp;with&nbsp;production&nbsp;of&nbsp;all&nbsp;elochemicals.&nbsp;</p><p>Long&shy;term training activities:</p><p>Kenyatta University: An introductory course in Bioinformatics is offers to MSc Biotechnology&nbsp; students. This comprises of 35 hours of lectures and practicals.</p><p>University of Nairobi: A centre for Biotechnology and Bioinformatics (CEBIB), which will offer&nbsp; postgraduate training (diplomas, MSc and PhD) in areas of biotechnology and bioinformatics has&nbsp; recently been launched. Other universities in Kenya, including Egerton, Maseno and the Jomo Kenyatta University of&nbsp; Agriculture and Technology offer introductory courses to undergraduates in biomedical sciences. In addition, under the BECA platform MSc and PhD fellowships are being made available for&nbsp; Bioinformatics students. ILRI is forging links with Universities in South Africa and the United&nbsp; Kingdom to provide access to courses and training material.&nbsp;</p><p>Research Interest and Activities:</p><p>The following are the present areas of research interest: 1. EST clustering 2. Genome sequencing and annotation 3. Functional genomics and proteomics (including key tropical pathogens) 4. Structural bioinformatics 5. Development of Bioinformatics Data Management Systems 6. Gene Mining 7. High Throughput Genotyping 8. Microarray data management and analysis 9. Metagenomics 10. Immunoinformatics 11. Host&shy;pathogen interaction 12. High performance computing and grid development 13. Parasite transfection technologies 14. Cell cycle regulation 15. Population genetics 16. Vector genomics 17. Drug, vaccine and diagnostic target discovery</p><p>More at&nbsp;Web&nbsp;site&nbsp;and&nbsp;links:</p><p>http://www.ilri.cgiar.org/</p><p>http://www.icipe.org/ &nbsp; &nbsp;</p><p>http://www.uonbi.ac.ke/cebib</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36019/ewas-epigenome-wide-association-study-software-20</guid>
	<pubDate>Wed, 21 Mar 2018 18:14:00 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36019/ewas-epigenome-wide-association-study-software-20</link>
	<title><![CDATA[EWAS: epigenome-wide association study software 2.0]]></title>
	<description><![CDATA[<p><span>EWAS2.0 can analyze EWAS data and identify the association between epigenetic variations and disease/phenotype. On the basis of EWAS1.0, we have added more distinctive features. EWAS2.0 software was developed based on our &ldquo;population epigenetic framework&rdquo; and can perform: (1) epigenome-wide single marker association study; (2) epigenome-wide methylation haplotype (meplotype) association study; and (3) epigenome-wide association meta-analysis.</span></p><p>Address of the bookmark: <a href="http://www.bioapp.org/ewas/" rel="nofollow">http://www.bioapp.org/ewas/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43042/bioinformatics-in-thailand</guid>
	<pubDate>Wed, 28 Apr 2021 02:04:56 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43042/bioinformatics-in-thailand</link>
	<title><![CDATA[Bioinformatics in Thailand !]]></title>
	<description><![CDATA[<p>Our international PhD and master programs are designed for students who desire focused training in the elements of biology, computer science, and information technology needed for a successful career in the exciting new discipline of Bioinformatics &amp; Systems Biology. Students in our program will receive comprehensive training in omics analysis, database design and management, software engineering and programming (including web-based development), simulation techniques and modeling, and data integration. Each student will apply their skills to a practical project, where they will design and implement a solution to a real-world problem under the guidance of an experienced mentor in industry or academia.</p>
<p><strong>https://bioinformatics.kmutt.ac.th/about.html</strong></p>
<p>Duangrudee Tanramluk (Ajarn Wi) uses computational biology and machine learning to tackle the key to drug design problems via MANORAA webserver.</p>
<p><strong>https://mb.mahidol.ac.th/en/bioinformatics/</strong></p>
<p><strong>https://graduate.mahidol.ac.th/inter/</strong></p>
<p>This&nbsp;international&nbsp;Doctorate programme is designed to further broaden students&rsquo; knowledge in Bioinformatics and Molecular Biology to their maximum capability.&nbsp;</p>
<p><strong>http://www.mbb.psu.ac.th/programmes/phd</strong></p>
<p>Ph.D. program in Bioinformatics and Computational Biology is a joint effort of the Faculty of Science and Faculty of Medicine, Chulalongkorn University. The program has study plans for both applicants who hold a bachelor&rsquo;s degree and applicants who hold a master&rsquo;s degree in any related fields of study.</p>
<p><strong>http://www.bioinfo.sc.chula.ac.th/ph-d-program-specialization/</strong></p>
<p>Additional detail&nbsp;</p>
<p><strong>https://www.biotec.or.th/en/index.php/research/research-units/genome-technology-research-unit</strong></p>
<p><strong>https://tbrcnetwork.org/labtbrc/index.php/bioinformatics-and-chemoinformatics/</strong></p>
<p><strong>https://genomicsthailand.com/Genomic/home</strong></p><p>Address of the bookmark: <a href="https://bioinformatics.kmutt.ac.th/" rel="nofollow">https://bioinformatics.kmutt.ac.th/</a></p>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/37550/mirem-an-expectation-maximization-approach-for-prioritizing-mirnas-associated-with-gene-set</guid>
	<pubDate>Thu, 16 Aug 2018 04:48:07 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/37550/mirem-an-expectation-maximization-approach-for-prioritizing-mirnas-associated-with-gene-set</link>
	<title><![CDATA[miREM: an expectation-maximization approach for prioritizing miRNAs associated with gene-set]]></title>
	<description><![CDATA[<p>From list of genes... ... to microRNAs</p>
<p>Using established miRNA-interaction databases, miREM combines hypergeometric and expectation-maximization algorithms to sieve through your genetic data for microRNA signatures</p>
<p>https://bioinfo-csi.nus.edu.sg/mirem2/</p><p>Address of the bookmark: <a href="https://bioinfo-csi.nus.edu.sg/mirem2/" rel="nofollow">https://bioinfo-csi.nus.edu.sg/mirem2/</a></p>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/42267/hapsolo-an-optimization-approach-for-removing-secondary-haplotigs-during-diploid-genome-assembly-and-scaffolding</guid>
	<pubDate>Mon, 26 Oct 2020 21:23:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/42267/hapsolo-an-optimization-approach-for-removing-secondary-haplotigs-during-diploid-genome-assembly-and-scaffolding</link>
	<title><![CDATA[HapSolo: An optimization approach for removing secondary haplotigs during diploid genome assembly and scaffolding.]]></title>
	<description><![CDATA[<p><span>Despite marked recent improvements in long-read sequencing technology, the assembly of diploid genomes remains a difficult task. A major obstacle is distinguishing between alternative contigs that represent highly heterozygous regions. If primary and secondary contigs are not properly identified, the primary assembly will overrepresent both the size and complexity of the genome, which complicates downstream analysis such as scaffolding.</span></p>
<p><span>More at&nbsp;https://github.com/esolares/HapSolo</span></p><p>Address of the bookmark: <a href="https://github.com/esolares/HapSolo" rel="nofollow">https://github.com/esolares/HapSolo</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>