<?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/44633?offset=10</link>
	<atom:link href="https://bioinformaticsonline.com/related/44633?offset=10" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/42815/bioinformatics-in-africa-part7-tunisia</guid>
	<pubDate>Sat, 06 Feb 2021 21:25:09 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/42815/bioinformatics-in-africa-part7-tunisia</link>
	<title><![CDATA[Bioinformatics in Africa: Part7 - Tunisia]]></title>
	<description><![CDATA[<p>Institut Pasteur de Tunis (IPT):<br />The IPT is a research institution founded in 1883. IPT is under the supervision of the Ministry of &nbsp;Health and is part of the Universit&eacute; El Manar of Tunis (Ministry of high Education). The missions &nbsp;of the institute are: Public Health Laboratory activities (PHL), Research on infectious diseases, and &nbsp;R/D on vaccines. Research programs are mainly oriented towards local health problems such as &nbsp;leishmaniais, viral hepatitis, and scorpion venoms. The &nbsp; group &nbsp; of &nbsp; Bioinformatics &nbsp; and &nbsp; Modelling &nbsp; of &nbsp; the &nbsp; IPT &nbsp; is &nbsp; hosted &nbsp; by &nbsp; the &nbsp;Laboratoire &nbsp;d&rsquo;Immunopathologie Vaccinologie et G&eacute;n&eacute;tique Mol&eacute;culaire &nbsp;(LIVGM), and exists since the &nbsp;beginning of 2005. Its present research activities include: genome annotation, EST clustering and &nbsp;modelling of the host/parasite response to Leishmania infection. It consists of two senior scientists, &nbsp;two PhD students and one MSc student</p><p>Centre&nbsp;de&nbsp;Biotechnology&nbsp;de&nbsp;Sfax&nbsp;(CBS):<br />Bioinformatics&nbsp;activity&nbsp;started&nbsp;at&nbsp;CBS&nbsp;in&nbsp;2001&nbsp;with&nbsp;the&nbsp;setting&shy;up&nbsp;of&nbsp;a&nbsp;research&nbsp;and&nbsp;service&nbsp;unit&nbsp;of&nbsp; bioinformatics.&nbsp;This&nbsp;unit&nbsp;currently&nbsp;includes&nbsp;one&nbsp;senior&nbsp;researcher,&nbsp;one&nbsp;engineer&nbsp;and&nbsp;four&nbsp;Phd&nbsp; students.&nbsp;Activities&nbsp;include&nbsp;sequence&nbsp;annotation&nbsp;(service)&nbsp;and&nbsp;three&nbsp;research&nbsp;programs:&nbsp;ab&nbsp;initio&nbsp; prediction&nbsp;of&nbsp;short&nbsp;eukaryote&nbsp;genes,&nbsp;statistical&nbsp;modelling&nbsp;by&nbsp;Bayesian&nbsp;networks&nbsp;approach&nbsp;of&nbsp;signal&nbsp; transduction&nbsp;pathways&nbsp;and&nbsp;statistical&nbsp;analysis&nbsp;of&nbsp;human&nbsp;sequence&nbsp;variation&nbsp;data&nbsp;(haplotype&nbsp; reconstruction&nbsp;and&nbsp;linkage&nbsp;disequilibrium).&nbsp;Activities&nbsp;of&nbsp;the&nbsp;Bioinformatics&nbsp;unit&nbsp;could&nbsp;be&nbsp;found&nbsp;at&nbsp; the&nbsp;website:&nbsp;http://www.cbs.rnrt.tn/&nbsp;and&nbsp;the&nbsp;research&nbsp;activity&nbsp;report&nbsp;is&nbsp;available&nbsp;under&nbsp;request&nbsp;to&nbsp; Bioinformatics@cbs.rnrt.tn.&nbsp;Although&nbsp;the&nbsp;computing&nbsp;facilities&nbsp;are&nbsp;good,&nbsp;there&nbsp;is&nbsp;still&nbsp;a&nbsp;need&nbsp;for&nbsp; trained&nbsp;human&nbsp;resources&nbsp;to&nbsp;strengthen&nbsp;bioinformatics&nbsp;capacities&nbsp;at&nbsp;CBS,&nbsp;particularly&nbsp;in&nbsp;structural&nbsp; bioinformatics.</p><p>Web site and links: http://www.cbs.rnrt.tn</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43550/basic-structure-of-snakemake-pipeline-run</guid>
	<pubDate>Thu, 14 Oct 2021 07:01:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43550/basic-structure-of-snakemake-pipeline-run</link>
	<title><![CDATA[Basic Structure of Snakemake Pipeline Run !]]></title>
	<description><![CDATA[<div>/user/snakemake-demo$ ls</div><div>config.json data envs scripts slurm-240702.out Snakefile</div><ul>
<li>data = mock data for the snakefile to use</li>
<li>Snakefile = name of the snakemake &ldquo;formula&rdquo; file
<ul>
<li>Note: The default file that snakemake looks for in the current working directory is the&nbsp;<code>Snakefile</code>. If you would like to override that you can specify it following the&nbsp;<code>-s</code>
<ul>
<li><code>snakemake -s snakefile.py</code></li>
</ul>
</li>
</ul>
</li>
<li>envs = directory for storing the conda environments that the workflow will use.</li>
<li>scripts = directory for storing python scripts called by the snakemake formula.</li>
<li>config.json = json format file with extra parameters for our snakemake file to use.</li>
<li>cluster.json = json format file with specification for running on the HPC</li>
<li>samples.txt = file we will use later relating to the config.json file.</li>
</ul><p><span>Run the snakemake file as a dry run (the example workflow shown above).</span></p><ul>
<li>This will build a DAG of the jobs to be run without actually executing them.</li>
<li><code>snakemake --dry-run</code></li>
</ul><p>User can e<span>xecute rules of interest.</span></p><ul>
<li><code>snakemake --dry-run all</code>&nbsp;VS.&nbsp;<code>snakemake --dry-run call</code>&nbsp;VS.&nbsp;<code>snakemake --dry-run bwa</code></li>
</ul><p><span>Run the snakemake file in order to produce an image of the DAG of jobs to be run.</span></p><ul>
<li><code>snakemake --dag | dot -Tsvg &gt; dag.svg</code>&nbsp;OR&nbsp;<code>snakemake --dag | dot -Tsvg &gt; dag.svg</code></li>
</ul><p>Run the snakemake (this time not as a dry run)</p><ol>
<li><code>snakemake --use-conda</code></li>
</ol>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/43701/prepare-for-coding-interview</guid>
	<pubDate>Tue, 11 Jan 2022 06:14:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/file/view/43701/prepare-for-coding-interview</link>
	<title><![CDATA[Prepare for Coding Interview !]]></title>
	<description><![CDATA[<p><span>This is a comprehensive guide to prepare for your next coding interview. It's great for recent graduates and has questions and practice materials structured from traditional big tech interview formats.</span><br /><br /><span>While it does not include the latest developments in programming since 2019, it nails the core fundamentals in a very comprehensive and accessible way!</span><br /><br /><span>Credits to Kaiyu Zhang, with additional material in the appendix sourced from Reddit.</span></p><p>People say that interviews at Google will cover as much ground as possible. As a new college graduate, the ground that I must capture are the following. Part of the list is borrowed from a reddit post: https://www. reddit.com/r/cscareerquestions/comments/206ajq/my_onsite_interview_experience_at_google/ #bottom-comments.</p><p>1. Data structures</p><p>2. Trees and Graph algorithms</p><p>3. Dynamic Programming</p><p>4. Recursive algorithms</p><p>5. Scheduling algorithms (Greedy)</p><p>6. Caching 1</p><p>7. Sorting</p><p>8. Files</p><p>9. Computability</p><p>10. Bitwise operators</p><p>11. System design</p>]]></description>
	<dc:creator>Abhi</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/43701" length="745121" type="application/pdf" />
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44620/diy-transcriptomics</guid>
	<pubDate>Wed, 31 Jul 2024 01:19:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44620/diy-transcriptomics</link>
	<title><![CDATA[DIY Transcriptomics]]></title>
	<description><![CDATA[<p><span>A semester-long course covering best practices for the analysis of high-throughput sequencing data from gene expression (RNA-seq) studies, with a primary focus on empowering students to be independent in the use of lightweight and open-source software using the R programming language and the Bioconductor suite of packages. This course follows a hybrid format in which online lectures are paired with in-person labs where students participate in hands-on, live coding exercises using real &lsquo;omic datasets. The course is focused on datasets and topics central to infectious disease research, immunology, and One-Health, but the concepts and approaches covered are applicable to any genomic study.</span></p>
<p>https://diytranscriptomics.com</p><p>Address of the bookmark: <a href="https://diytranscriptomics.com" rel="nofollow">https://diytranscriptomics.com</a></p>]]></description>
	<dc:creator>Abhi</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/43552/understanding-pango-networks</guid>
	<pubDate>Sat, 16 Oct 2021 14:02:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43552/understanding-pango-networks</link>
	<title><![CDATA[Understanding pango networks !]]></title>
	<description><![CDATA[<p><span>In the vast majority of instances it is expected that Pango lineage names and designations will conform to the following rules. These rules also act as guidelines for the decisions made by the Lineage Designation Committee.</span></p>
<p>https://www.pango.network/the-pango-nomenclature-system/statement-of-nomenclature-rules/</p>
<p>https://www.pango.network/how-does-the-system-work/what-are-pango-lineages/</p>
<p>Reference paper</p>
<p>https://www.nature.com/articles/s41564-020-0770-5</p><p>Address of the bookmark: <a href="https://www.pango.network/the-pango-nomenclature-system/statement-of-nomenclature-rules/" rel="nofollow">https://www.pango.network/the-pango-nomenclature-system/statement-of-nomenclature-rules/</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44279/bioinformatics-training-material</guid>
	<pubDate>Sat, 18 Mar 2023 11:26:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44279/bioinformatics-training-material</link>
	<title><![CDATA[Bioinformatics Training Material !]]></title>
	<description><![CDATA[<p><span>Glittr</span>&nbsp;is a curated list of bioinformatics training material.<br>All material is:</p>
<ul>
<li>In a GitHub or GitLab repository</li>
<li>Free to use</li>
<li>Written in markdown or similar</li>
</ul>
<p><span>NOTE:</span>&nbsp;This list of courses is selected only based on the above criteria.<br>There are no checks on quality.</p>
<p>https://glittr.org/?per_page=25&amp;sort_by=stargazers&amp;sort_direction=desc</p><p>Address of the bookmark: <a href="https://glittr.org/?per_page=25&amp;sort_by=stargazers&amp;sort_direction=desc" rel="nofollow">https://glittr.org/?per_page=25&amp;sort_by=stargazers&amp;sort_direction=desc</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/140/python-education-material</guid>
	<pubDate>Wed, 10 Jul 2013 16:38:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/140/python-education-material</link>
	<title><![CDATA[Python Education Material]]></title>
	<description><![CDATA[<p><span>Google provide free class for people with a little bit of programming experience who want to learn Python. The google python class includes written materials, lecture videos, and lots of code exercises to practice Python coding. These materials are used within Google to introduce Python to people who have just a little programming experience.</span></p><p><span>Find more @&nbsp;<a href="https://developers.google.com/edu/python/">https://developers.google.com/edu/python/</a></span></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/12963/cosmos-our-workflow-management-system-for-ngs-data</guid>
	<pubDate>Wed, 23 Jul 2014 07:29:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/12963/cosmos-our-workflow-management-system-for-ngs-data</link>
	<title><![CDATA[COSMOS, our workflow management system for NGS data]]></title>
	<description><![CDATA[<p><strong>COSMOS</strong>, our Python-based management system for implementing large-scale parallel workflows focusing on, but not restricted to, large-scale short-read "NGS" sequencing data is open-access published via <a href="http://bioinformatics.oxfordjournals.org/content/early/2014/06/29/bioinformatics.btu385.abstract">Advance Access</a> in <em>Bioinformatics</em> (<a href="http://scholar.harvard.edu/lancaster/publications/cosmos-python-library-massively-parallel-workflows">Gafni et al. 2014</a>).&nbsp; It is also available for download for non-commercial academic and research purposes at:</p>
<p><strong>&nbsp;<a href="http://cosmos.hms.harvard.edu/">http://cosmos.hms.harvard.edu/</a></strong>.</p><p>Address of the bookmark: <a href="https://cosmos.hms.harvard.edu/" rel="nofollow">https://cosmos.hms.harvard.edu/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/20471/bioinformatics-scripts</guid>
	<pubDate>Thu, 22 Jan 2015 22:29:39 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/20471/bioinformatics-scripts</link>
	<title><![CDATA[Bioinformatics Scripts]]></title>
	<description><![CDATA[<p>Some of the useful bioinformatics scripts.</p>
<p>For example ... contig-stats.pl is a Perl script that will automatically describe features of a sequence assembly.</p>
<p>http://milkweedgenome.org/?q=scripts</p><p>Address of the bookmark: <a href="http://milkweedgenome.org/?q=scripts" rel="nofollow">http://milkweedgenome.org/?q=scripts</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>